{
  "info": {
    "_postman_id": "c2065756-b268-46e9-a489-fd74784e211e",
    "name": "Public Api",
    "description": "# Descripción general\n\nLa API pública de {{environment}} 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.\n\nEsta 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.\n\nPara 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.\n\nCada 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.\n\n# Configuración inicial\n\nPara empezar a usar la API pública de {{environment}}, debes **solicitar**:\n\n1. Un **client_id de tipo open010_client**. Para incluir en todas las peticiones.\n    \n\n{{clientIdText}}\n\nEn 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.\n\nPor ejemplo:\n\n> Solicito un client_id para el uso de la api de {{environment}} \n  \n\nUna vez que tengas el client_id podrás empezar a hacer uso de la API pública de {{environment}}.\n\nTodas las peticiones deben adjuntar como cabecera (_header_) este client_id.\n\n``` bash\n-H \"X-CLIENT-ID: YOUR_CLIENT_ID\"\n\n ```\n\n## Entornos disponibles\n\n{{environment}} cuenta con diferentes entornos para garantizar la calidad del desarrollo y la estabilidad del sistema en producción. Puedes acceder a los siguientes entornos:\n\n{{publicEnvironmentPro}}\n\n{{publicEnvironmentPre}}\n\n{{publicEnvironmentCanary}}\n\n{{publicEnvironmentExtra}}\n\n## Autenticar usuario\n\n### Obtener token\n\nPara obtener un Token con OAuth 2.0 puedes consultar como hacer login en el `POST` [de Security/Login](#tag/Security-greater-Security/operation/login).\n\nUna vez obtenido el token deberás mandarlo en las siguientes peticiones de esta forma:\n\n```\nAuthorization: Bearer YOUR_ACCESS_TOKEN\n\n ```\n\n### Ejemplo de solicitud a la API pública usando el Token\n\n``` bash\ncurl -X GET \\\n  /recurso \\\n  -H \"Authorization: Bearer YOUR_ACCESS_TOKEN\" \\\n  -H \"X-CLIENT-ID: YOUR_CLIENT_ID\"\n\n ```\n\n## Renovar token con refresh_token\n\nCuando 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.\n\nPuedes consultar la peción en el `POST` [de Security/Refresh token](#tag/Security-greater-Security/operation/refreshToken).\n\n### Prueba de autenticación\n\nPuedes comprobar si la autenticación ha ido conrrectamente haciendo la siguiente petición después de haber hecho login:\n\n``` bash\ncurl -X GET \\\n  /check_auth\\\n  -H \"Authorization: Bearer YOUR_ACCESS_TOKEN\" \\\n  -H \"X-CLIENT-ID: YOUR_CLIENT_ID\"\n\n ```\n\nSi todo ha ido bien recibrás un `true` por respuesta.\n\nSi no estás autenticado correctamente la respuesta será:\n\n``` json\n{\n  \"message\": \"Authentication Required\"\n}\n\n ```\n\n{{c360PublicLogin}}\n\n# Casos de uso\n\n## Listar avisos\n\nPara listar avisos de {{environment}}, puedes utilizar el endpoint de [/requests](#tag/Request-greater-Request/operation/cgetRequests). Este endpoint es ideal para consultar y explorar los avisos gestionados en {{environment}}, 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.\n\n### Ejemplo de uso\n\nObtener 30 avisos ordenados por la fecha más reciente\n\n``` bash\ncurl '/requests' \\\n     -H \"Authorization: Bearer YOUR_ACCESS_TOKEN\" \\\n     -H \"X-CLIENT-ID: YOUR_CLIENT_ID\" \\\n     -H 'Content-Type: application/json' \\\n     --data-raw '{\n         \"order\": \"newest_date_desc\",\n         \"page\": 1,\n         \"limit\": 30,\n         \"timezone\": \"Europe/Madrid\"\n     }'\n\n ```\n\nObtener los 10 avisos creados más recientemente filtrando por 2 categorías\n\n``` bash\ncurl '/requests' \\\n     -H \"Authorization: Bearer YOUR_ACCESS_TOKEN\" \\\n     -H \"X-CLIENT-ID: YOUR_CLIENT_ID\" \\\n     -H 'Content-Type: application/json' \\\n     --data-raw '{\n         \"fields\": {\n            \"services\": \"591b33494e4ea840018b462c,591b33da4e4ea83a018b464f\"\n         }\n         \"order\": \"date_desc\",\n         \"page\": 1,\n         \"limit\": 10,\n         \"timezone\": \"Europe/Madrid\"\n     }'\n\n ```\n\n## Crear aviso\n\nLa funcionalidad principal de la plataforma de {{environment}} 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.\n\nEn 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:\n\n```\nadditionalData.configurable_questions[].required\n\n ```\n\nEjemplo de estructura:\n\n``` json\n\"additionalData\": {\n  \"requiredVariables\": [],\n  \"configurable_questions\": [\n    {\n      \"editable\": true,\n      \"hidden_in_detail\": false,\n      \"hidden_in_form\": false,\n      \"hidden_in_open010_detail\": false,\n      \"hidden_in_open010_form\": false,\n      \"question\": {},\n      \"required\": false\n    }\n  ]\n}\n\n ```\n\n### Ejemplo de uso\n\nCrear un aviso con datos de localización\n\n``` bash\ncurl '/requests?jurisdiction_id={{exampleJurisdictionId}}&return_data=false' \\\n          -H 'Content-Type: application/json' \\\n          -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \\\n          -H 'X-CLIENT-ID: YOUR_CLIENT_ID' \\\n          --data-raw '{\n               \"service_id\":\"591b33494e4ea840018b462c\",\n               \"description\":\"prueba\",\n               \"position\":{\n                  \"lat\":40.368926273981,\n                  \"lng\":-3.742779151412\n               },\n               \"address_string\":\"Calle Aguacate, 41\",\n               \"internal\":true,\n               \"jurisdiction_element\":\"5e5a3f17179796a7cbb93934\"\n            }'\n\n ```",
    "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": "{{publicBaseUrl}}/question/{{questionId}}/answers?limit={{limit}}&page={{page}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "question",
                    "{{questionId}}",
                    "answers"
                  ],
                  "query": [
                    {
                      "key": "limit",
                      "value": "{{limit}}",
                      "description": "Integer. [optional]. Permite limitar el número de resultados por página (por defecto 10)",
                      "type": "text"
                    },
                    {
                      "key": "page",
                      "value": "{{page}}",
                      "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",
                      "type": "text"
                    }
                  ],
                  "variable": [
                    {
                      "key": "questionId",
                      "value": "",
                      "description": "String. [required]. ID del recurso questionId."
                    }
                  ]
                },
                "description": "Este endpoint permite listar las respuestas de una pregunta especificada.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\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": "{{publicBaseUrl}}/question/{{questionId}}/answers?page={{page}}&limit={{limit}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "question",
                        "{{questionId}}",
                        "answers"
                      ],
                      "query": [
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "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": "{\n  \"type\": \"massiveSingleValueList\",\n  \"active\": true,\n  \"code\": \"10\",\n  \"help_text\": \"\",\n  \"id\": \"6939de4e85416775c007e5d9\",\n  \"question\": \"¿How mock?\",\n  \"tags\": [],\n  \"archived\": false,\n  \"possible_answers\": [\n    {\n      \"value\": 1,\n      \"archived\": false\n    },\n    {\n      \"value\": 2,\n      \"archived\": false\n    },\n    {\n      \"value\": 1,\n      \"archived\": false\n    }\n  ],\n  \"answers_count\": 3\n}"
                },
                {
                  "id": "df3b85e8-2503-49a5-b19f-1ee7985b7ba8",
                  "name": "List MassiveSingleListQuestion Question not found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/question/{{questionId}}/answers?page={{page}}&limit={{limit}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "question",
                        "{{questionId}}",
                        "answers"
                      ],
                      "query": [
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "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": "{{publicBaseUrl}}/question/{{questionId}}/answers/search?q={{searchQuery}}&limit={{limit}}&page={{page}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "question",
                    "{{questionId}}",
                    "answers",
                    "search"
                  ],
                  "query": [
                    {
                      "key": "q",
                      "value": "{{searchQuery}}",
                      "description": "String. [required]. Permite buscar preguntas de listas masivas a partir de sus respuestas.",
                      "type": "text"
                    },
                    {
                      "key": "limit",
                      "value": "{{limit}}",
                      "description": "Integer. [optional]. Permite limitar el número de resultados por página (por defecto 10)",
                      "type": "text"
                    },
                    {
                      "key": "page",
                      "value": "{{page}}",
                      "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",
                      "type": "text"
                    }
                  ],
                  "variable": [
                    {
                      "key": "questionId",
                      "value": "",
                      "description": "String. [required]. ID del recurso questionId."
                    }
                  ]
                },
                "description": "Este endpoint permite realizar búsqueda de listas masivas de preguntas a partir de las respuestas relacionadas.\n\n| Campo | **Tipo** | **Descripción** |\n| --- | --- | --- |\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": "{{publicBaseUrl}}/question/{{questionId}}/answers/search?page={{page}}&limit={{limit}}&q={{searchQuery}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "question",
                        "{{questionId}}",
                        "answers",
                        "search"
                      ],
                      "query": [
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "description": "Int [optional]. Permite limitar el número de resultados por página (por defecto 10)"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}",
                          "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": "[\n  {\n    \"value\": \"mock 1\",\n    \"value_translations\": {\n      \"es\": \"mock 1\"\n    },\n    \"archived\": false\n  },\n  {\n    \"value\": \"mock 1\",\n    \"value_translations\": {\n      \"es\": \"mock 2\"\n    },\n    \"archived\": false\n  },\n  {\n    \"value\": \"mock 1\",\n    \"value_translations\": {\n      \"es\": \"mock 3\"\n    },\n    \"archived\": false\n  }\n]"
                },
                {
                  "id": "763e9c86-0b86-4228-8fc9-1bf978e032bb",
                  "name": "Search MassiveSingleListQuestion without results",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/question/{{questionId}}/answers/search?page={{page}}&limit={{limit}}&q={{searchQuery}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "question",
                        "{{questionId}}",
                        "answers",
                        "search"
                      ],
                      "query": [
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "description": "Int [optional]. Permite limitar el número de resultados por página (por defecto 10)"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}",
                          "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": "{{publicBaseUrl}}/additional-data/external/question-list/{{id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "additional-data",
                    "external",
                    "question-list",
                    "{{id}}"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "String. [required]. ID del recurso questionListId."
                    }
                  ]
                },
                "description": "Este endpoint permite obtener respuestas externas para la lista de preguntas especificada.  \n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\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": "{{publicBaseUrl}}/additional-data/external/question-list/{{questionListId}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "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": "{\n  \"data\": [\n    {\n      \"question\": {\n        \"type\": \"datetime\",\n        \"active\": true,\n        \"code\": \"1\",\n        \"help_text\": \"Indicar una fecha aproximada\",\n        \"help_text_translations\": {\n          \"es\": \"Indicar una fecha aproximada\"\n        },\n        \"id\": \"6939e5ed8303d81a590dbf69\",\n        \"question\": \"¿Cuando ha sucedido?\",\n        \"question_translations\": {\n          \"es\": \"¿Cuando ha sucedido?\"\n        },\n        \"tags\": [],\n        \"archived\": false\n      },\n      \"value\": \"externalValue\",\n      \"editable\": true,\n      \"response_attribute\": \"responseAttribute\",\n      \"required\": false,\n      \"hidden_in_form\": false,\n      \"hidden_in_detail\": false,\n      \"visibility\": \"public\"\n    }\n  ]\n}"
                },
                {
                  "id": "7c8aed16-bf99-4091-b99c-7c52f3b86211",
                  "name": "Get External Data Error fill answers",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/additional-data/external/question-list/{{questionListId}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"code\": 400,\n    \"description\": \"Error setting a value for one or more questions \"\n  }\n]"
                },
                {
                  "id": "ff924a96-9f49-44af-a307-1a076e6044ec",
                  "name": "Get External Data Question List Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/additional-data/external/question-list/{{questionListId}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"code\": 404,\n    \"description\": \"Object not found\"\n  }\n]"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/additional-data/external-data-question/{{id}}/answers?limit={{limit}}&page={{page}}&q={{searchQuery}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "additional-data",
                    "external-data-question",
                    "{{id}}",
                    "answers"
                  ],
                  "query": [
                    {
                      "key": "limit",
                      "value": "{{limit}}",
                      "description": "Integer. [optional]. Permite limitar el número de resultados por página (por defecto 90)"
                    },
                    {
                      "key": "page",
                      "value": "{{page}}",
                      "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"
                    },
                    {
                      "key": "q",
                      "value": "{{searchQuery}}",
                      "description": "String. [optional]. Permite buscar posibles respuestas de listas masivas a partir del texto especificado."
                    }
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "String. [required]. ID del recurso questionId."
                    }
                  ]
                },
                "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": "{{publicBaseUrl}}/additional-data/external-data-question/{{questionId}}/answers?page={{page}}&limit={{limit}}&q={{searchQuery}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "additional-data-question",
                        "external-data-question",
                        "{{questionId}}",
                        "answers"
                      ],
                      "query": [
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "description": "Int [optional]. Permite limitar el número de resultados por página (por defecto 90)"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}",
                          "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": "[\n  {\n    \"value\": [\n      \"externalValue\"\n    ],\n    \"archived\": false\n  }\n]"
                },
                {
                  "id": "d155f3af-4ab2-45d6-9871-848960f1fda2",
                  "name": "Get External Data Question Answers without results",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/additional-data/external-data-question/{{questionId}}/answers?page={{page}}&limit={{limit}}&q={{searchQuery}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "additional-data-question",
                        "external-data-question",
                        "{{questionId}}",
                        "answers"
                      ],
                      "query": [
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "description": "Int [optional]. Permite limitar el número de resultados por página (por defecto 90)"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}",
                          "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": "{{publicBaseUrl}}/additional-data/external-data-question/{{questionId}}/answers?page={{page}}&limit={{limit}}&q={{searchQuery}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "additional-data-question",
                        "external-data-question",
                        "{{questionId}}",
                        "answers"
                      ],
                      "query": [
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "description": "Int [optional]. Permite limitar el número de resultados por página (por defecto 90)"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}",
                          "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": "[\n  {\n    \"code\": 404,\n    \"description\": \"Question must be either ExternalSingleListQuestion or ExternalMultiListQuestion\"\n  }\n]"
                },
                {
                  "id": "4fd4f699-8bbf-4c1b-809d-623144a745e8",
                  "name": "Get External Data Question Answers Not found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/additional-data/external-data-question/{{questionId}}/answers?page={{page}}&limit={{limit}}&q={{searchQuery}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "additional-data-question",
                        "external-data-question",
                        "{{questionId}}",
                        "answers"
                      ],
                      "query": [
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "description": "Int [optional]. Permite limitar el número de resultados por página (por defecto 90)"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}",
                          "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": "[\n  {\n    \"code\": 404,\n    \"description\": \"Object not found\"\n  }\n]"
                }
              ]
            },
            {
              "name": "Get Question List By Use Case",
              "id": "2259f94b-1db4-4e0e-a648-b4cafe27f654",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"jurisdiction\": \"{{jurisdictionId}}\",\n  \"use_case_type\": \"broadcast\",\n  \"config\": {}\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/additional-data/use-case/question-list",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "additional-data",
                    "use-case",
                    "question-list"
                  ]
                },
                "description": "Este endpoint permite obtener la lista de preguntas configurables para un caso de uso y jurisdicción específica.\n\n| Campo | Tipo | Descripción |\n| --- | --- | --- |\n| jurisdiction | String | [required]. Identificador de jurisdicción (`jurisdiction_id`), por ejemplo `{{jurisdictionId}}`. |\n| use_case_type | String | [required]. Tipo de caso de uso válido (validado por `AssertUseCaseTypeConstraint`). |\n| config | Object | [optional]. Configuración adicional dependiente de `use_case_type`. |\n\nHeaders recomendados: `X-CLIENT-ID` (requerido cuando `mandatory_client_header=true`) y `Authorization: Bearer {{token_public}}` (opcional).\n\nError funcional adicional posible: `510` cuando `X-CLIENT-ID` es inválido o ausente y `mandatory_client_header=true`."
              },
              "response": [
                {
                  "id": "4b670d74-d470-4899-950d-8f4be28972fd",
                  "name": "Get Question List By Use Case OK",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"jurisdiction\": \"{{jurisdictionId}}\",\n  \"use_case_type\": \"broadcast\",\n  \"config\": {}\n}"
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/additional-data/use-case/question-list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "additional-data",
                        "use-case",
                        "question-list"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"configurable_questions\": [\n    {\n      \"id\": \"694bf7662b8cf47f930a1234\",\n      \"type\": \"text\",\n      \"question\": \"Describe el incidente\",\n      \"required\": true\n    }\n  ],\n  \"configurable_questions_with_permissions\": [],\n  \"requiredVariables\": [],\n  \"tags\": [],\n  \"use_cases\": []\n}"
                },
                {
                  "id": "e0322d1c-c8d4-421f-8dde-3a649cc52022",
                  "name": "Get Question List By Use Case Invalid Form",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"jurisdiction\": \"\",\n  \"use_case_type\": \"invalid_type\",\n  \"config\": {}\n}"
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/additional-data/use-case/question-list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "additional-data",
                        "use-case",
                        "question-list"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"code\": 400,\n    \"description\": \"error.invalid_form\"\n  }\n]"
                },
                {
                  "id": "9acb27dc-ac2e-45a0-8899-c71d11b66e6f",
                  "name": "Get Question List By Use Case Empty Question List",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"jurisdiction\": \"{{jurisdictionId}}\",\n  \"use_case_type\": \"broadcast\",\n  \"config\": {}\n}"
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/additional-data/use-case/question-list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "additional-data",
                        "use-case",
                        "question-list"
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"code\": 404,\n    \"description\": \"error.use_case.empty_question_list\"\n  }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/app-element/{{id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "app-element",
                    "{{id}}"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "String. [required]. ID del recurso app element id."
                    }
                  ]
                },
                "description": "**Request Params**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| app_element_id | String | \\[requerido\\] ID del elemento de aplicación que se desea consultar. |\n\nEste 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": "{{publicBaseUrl}}/app-element/{{app_element_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"id\": \"693fdefe6feb6a72250a8a2a\",\n    \"filter_configuration\": {\n        \"service_filter_configuration\": {\n            \"included\": true,\n            \"services\": [\n                {\n                    \"visible_name\": \"Residuos Domésticos (Punto Limpio)\",\n                    \"id\": \"68ffbe5983696bee0f0ed091\",\n                    \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/692deab4b5063296451042.png\"\n                }\n            ]\n        }\n    },\n    \"view_types\": [\n        \"mine_poi\"\n    ],\n    \"required_strong_identification\": false,\n    \"required_registered_resident\": false,\n    \"map_layers\": [\n        {\n            \"id\": \"691eea93a879b737810c4147\",\n            \"jurisdiction_element\": \"5c9b55579650e67d42985e80\",\n            \"name\": \"Punto Limpio fijo\",\n            \"internal_name\": \"buildings:punto_limpio_fijo_poi\"\n        }\n    ]\n}"
                }
              ]
            },
            {
              "name": "App Configurations",
              "id": "dd294f77-7834-40a2-b8e8-6ae9576005c8",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/appconfiguration?jurisdiction_id={{jurisdiction_id}}&type=cityapp",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "appconfiguration"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "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**\n\nObtiene 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": "{{publicBaseUrl}}/appconfiguration?jurisdiction_id={{jurisdiction_id}}&type=cityapp",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "appconfiguration"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "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": "{\n    \"jurisdiction_id\": \"org.alcobendas\",\n    \"app_icon_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/670655313d52a7.55147536.png\",\n    \"app_elements\": [\n        {\n            \"type\": \"indoor_and_requests_card\",\n            \"channels\": [],\n            \"id\": \"68ca5872249a70d7a10b20c3\",\n            \"name\": \"Punto Limpio\",\n            \"position\": 0,\n            \"preset\": true,\n            \"required\": true,\n            \"filter_configuration\": {\n                \"service_filter_configuration\": {\n                    \"included\": true,\n                    \"services\": [\n                        {\n                            \"visible_name\": \"Armarios de alumbrado en vía pública (Aviso)\",\n                            \"id\": \"5620e94b6aa91814008b4567\",\n                            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png\"\n                        }\n                    ]\n                }\n            },\n            \"view_types\": [\n                \"mine_poi\"\n            ],\n            \"required_strong_identification\": false,\n            \"required_registered_resident\": false,\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11f151e0ac394a0057abd\",\n            \"name\": \"Reservas Deportivas\",\n            \"position\": 1,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"url\",\n            \"collection\": [\n                {\n                    \"value\": \"https://tramitesweb.alcobendas.org/gestiononline/axxxx20_asp_01/axxxx20_asp_01_03/opciones.aspx\"\n                }\n            ],\n            \"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=\",\n            \"tags\": []\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11f3514e8b6c26d091155\",\n            \"name\": \"Abono Deporte\",\n            \"position\": 2,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"url\",\n            \"collection\": [\n                {\n                    \"value\": \"https://www.alcobendas.org/es/temas/deportes/abono-deporte\"\n                }\n            ],\n            \"tags\": []\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11f4c13f805828404fb29\",\n            \"name\": \"Cita previa SAC\",\n            \"position\": 3,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"url\",\n            \"collection\": [\n                {\n                    \"value\": \"https://www.alcobendas.org/es/cita-previa\"\n                }\n            ],\n            \"tags\": []\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11f611fec160ca3059aa9\",\n            \"name\": \"Actividades de agenda\",\n            \"position\": 4,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"url\",\n            \"collection\": [\n                {\n                    \"value\": \"https://www.alcobendas.org/es/actividades\"\n                }\n            ],\n            \"tags\": []\n        },\n        {\n            \"type\": \"requests_card\",\n            \"channels\": [],\n            \"id\": \"67e11f7d734f7c4a4c07c15a\",\n            \"name\": \"Alcobendas Actúa\",\n            \"position\": 5,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {\n                \"service_filter_configuration\": {\n                    \"included\": false,\n                    \"services\": [\n                        {\n                            \"visible_name\": \"Armarios de alumbrado en vía pública (Aviso)\",\n                            \"id\": \"5620e94b6aa91814008b4567\",\n                            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png\"\n                        }\n                    ]\n                }\n            },\n            \"view_types\": [\n                \"mine\"\n            ],\n            \"required_strong_identification\": false,\n            \"required_registered_resident\": false,\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11fc21e0ac394a0057abe\",\n            \"name\": \"Trámites electrónicos\",\n            \"position\": 6,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"urlCollection\",\n            \"collection\": [\n                {\n                    \"name\": \"Todos los trámites\",\n                    \"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=\"\n                },\n                {\n                    \"name\": \"Certificado de Empadronamiento\",\n                    \"value\": \"https://tramitesweb.alcobendas.org/TramitesWeb/A150109_ASP_01/Tramite.ashx?CodTipoTramite=37&amp;AppAlcobendas=True\"\n                }\n            ],\n            \"tags\": []\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11fdf99380b79840d6a38\",\n            \"name\": \"Cursos\",\n            \"position\": 7,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"url\",\n            \"collection\": [\n                {\n                    \"value\": \"https://www.alcobendas.org/es/cursos\"\n                }\n            ],\n            \"tags\": []\n        },\n        {\n            \"type\": \"youtube_card\",\n            \"channels\": [],\n            \"id\": \"67e2c537e94ef21c250863c2\",\n            \"name\": \"Videos\",\n            \"position\": 8,\n            \"preset\": true,\n            \"required\": false,\n            \"view_types\": []\n        },\n        {\n            \"type\": \"twitter_card\",\n            \"channels\": [],\n            \"id\": \"67e2c568da74be700f0af6e2\",\n            \"name\": \"Twitter\",\n            \"position\": 9,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": []\n        },\n        {\n            \"type\": \"alerts_card\",\n            \"channels\": [],\n            \"id\": \"67e2c579f8a5e24548031722\",\n            \"name\": \"Comunicados\",\n            \"position\": 10,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [],\n            \"jurisdiction_elements\": [\n                {\n                    \"id\": \"5c9b55579650e67d42985e80\",\n                    \"visible_name\": \"Alcobendas\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png\"\n                }\n            ]\n        },\n        {\n            \"type\": \"news_card\",\n            \"channels\": [],\n            \"id\": \"67e2c5e5ba0266d459029ec6\",\n            \"name\": \"Noticias\",\n            \"position\": 11,\n            \"preset\": true,\n            \"required\": false,\n            \"view_types\": [],\n            \"sources\": [\n                {\n                    \"channels\": [],\n                    \"name\": \"Ayto Alcobendas\",\n                    \"predetermined\": true,\n                    \"required\": true,\n                    \"source_link\": \"https://www.alcobendas.org/es/noticias-rss.xml\",\n                    \"tags\": [\n                        {\n                            \"name\": \"Alcobendas\",\n                            \"color\": \"#0271b8\",\n                            \"id\": \"Alcobendas\"\n                        }\n                    ],\n                    \"time_source_id\": \"1742915045\"\n                }\n            ]\n        },\n        {\n            \"type\": \"my_requests_work_card\",\n            \"channels\": [],\n            \"id\": \"6834b4e723a58ba8ef04d1a2\",\n            \"name\": \"prueba\",\n            \"position\": 12,\n            \"preset\": true,\n            \"required\": false,\n            \"view_type\": \"\",\n            \"view_types\": [\n                \"mine\"\n            ],\n            \"typologies\": [\n                {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"name\": \"Aviso\",\n                    \"visible_name\": \"Aviso\"\n                }\n            ],\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"alerts_card\",\n            \"channels\": [],\n            \"id\": \"68c2e3a486f0e16e890741b2\",\n            \"name\": \"Comunicados pruebas S y G\",\n            \"position\": 13,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [],\n            \"jurisdiction_elements\": [\n                {\n                    \"id\": \"65c27852911e73e22d02f413\",\n                    \"visible_name\": \"prueba S y G\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png\"\n                }\n            ]\n        },\n        {\n            \"type\": \"alerts_card\",\n            \"channels\": [],\n            \"id\": \"68c2e4ffecc18b72c7065602\",\n            \"name\": \"comunicados sin subproyecto\",\n            \"position\": 14,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [],\n            \"jurisdiction_elements\": []\n        },\n        {\n            \"type\": \"charts_card\",\n            \"channels\": [],\n            \"id\": \"68c844c7d05aae487b07b903\",\n            \"name\": \"dsad\",\n            \"position\": 15,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {\n                \"service_filter_configuration\": {\n                    \"included\": false,\n                    \"services\": []\n                }\n            },\n            \"view_types\": [\n                \"image\"\n            ],\n            \"widget_url_relations\": [\n                {\n                    \"url\": \"www.prueba.com\",\n                    \"widget\": {}\n                },\n                {\n                    \"url\": \"www.prueba.com\",\n                    \"widget\": {}\n                }\n            ]\n        },\n        {\n            \"type\": \"charts_card\",\n            \"channels\": [],\n            \"id\": \"68c8452dd05aae487b07b904\",\n            \"name\": \"sadsa\",\n            \"position\": 16,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"image\"\n            ],\n            \"widget_url_relations\": [\n                {\n                    \"url\": \"www.prueba.com\",\n                    \"widget\": {}\n                }\n            ]\n        },\n        {\n            \"type\": \"twitter_card\",\n            \"channels\": [],\n            \"id\": \"68cc22b8cd026c8dc70ae857\",\n            \"name\": \"PRUEBA TWITTER\",\n            \"position\": 17,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": []\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"68d3a0a00d21637d990d3cf2\",\n            \"name\": \"pois\",\n            \"position\": 18,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"layers\"\n            ],\n            \"gis_features\": []\n        },\n        {\n            \"type\": \"requests_card\",\n            \"channels\": [],\n            \"id\": \"68da3c7002a78a6c060941ca\",\n            \"name\": \"Boton tods\",\n            \"position\": 20,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"button\"\n            ],\n            \"required_strong_identification\": false,\n            \"required_registered_resident\": false,\n            \"button_type\": \"all_map\"\n        },\n        {\n            \"type\": \"indoor_and_requests_card\",\n            \"channels\": [],\n            \"id\": \"68dab635684ec8a99308d4d2\",\n            \"name\": \"sdasdas\",\n            \"position\": 21,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {\n                \"service_filter_configuration\": {\n                    \"included\": true,\n                    \"services\": [\n                        {\n                            \"visible_name\": \"Armarios de alumbrado en vía pública (Aviso)\",\n                            \"id\": \"5620e94b6aa91814008b4567\",\n                            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png\"\n                        },\n                        {\n                            \"visible_name\": \"Arquetas de alumbrado (Aviso)\",\n                            \"id\": \"5620ec856aa918b1008b4567\",\n                            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png\"\n                        },\n                        {\n                            \"visible_name\": \"Cableado aéreo de alumbrado público (Aviso)\",\n                            \"id\": \"5620ed7e6aa918b1008b456e\",\n                            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\"\n                        }\n                    ]\n                }\n            },\n            \"view_types\": [\n                \"mine_poi\"\n            ],\n            \"required_strong_identification\": true,\n            \"required_registered_resident\": true,\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"alerts_card\",\n            \"channels\": [],\n            \"id\": \"68e52c4d0226f0138505d88d\",\n            \"name\": \"prueba\",\n            \"position\": 22,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [],\n            \"jurisdiction_elements\": [\n                {\n                    \"id\": \"5c9b55579650e67d42985e80\",\n                    \"visible_name\": \"Alcobendas\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png\"\n                }\n            ]\n        },\n        {\n            \"type\": \"requests_card\",\n            \"channels\": [],\n            \"id\": \"68e957dbd593d785fc0eda3a\",\n            \"name\": \"Mi Prueba\",\n            \"position\": 25,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"mine\"\n            ],\n            \"required_strong_identification\": false,\n            \"required_registered_resident\": false,\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"my_requests_work_card\",\n            \"channels\": [],\n            \"id\": \"68e95c3fd593d785fc0eda3b\",\n            \"name\": \"prueba\",\n            \"position\": 26,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_type\": \"\",\n            \"view_types\": [\n                \"mine\"\n            ],\n            \"typologies\": [\n                {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"name\": \"Aviso\",\n                    \"visible_name\": \"Aviso\"\n                }\n            ],\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"6925850b8174d7d7060ca3a4\",\n            \"name\": \"p\",\n            \"position\": 27,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"configuration\": {\n                \"content_image\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/692584fc14e5c3.80953306.png\"\n            },\n            \"view_types\": [\n                \"layers\"\n            ],\n            \"gis_features\": []\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"6926e08cced3313a34078494\",\n            \"name\": \"p\",\n            \"position\": 28,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"individual_poi\"\n            ],\n            \"gis_features\": [\n                {\n                    \"map_layer\": {},\n                    \"poi_id\": \"alcobendas_poi_aparcamientos_pmr.234\"\n                },\n                {\n                    \"map_layer\": {\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    \"poi_id\": \"alcobendas_poi_aparcabicicletas.1\"\n                }\n            ]\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"69271151b65902cca40f572d\",\n            \"name\": \"p\",\n            \"position\": 29,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"individual_poi\"\n            ],\n            \"gis_features\": [\n                {\n                    \"map_layer\": {\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    \"poi_id\": \"alcobendas_poi_aparcabicicletas.1\"\n                },\n                {\n                    \"map_layer\": {\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    \"poi_id\": \"alcobendas_poi_aparcabicicletas.4\"\n                },\n                {\n                    \"map_layer\": {\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    \"poi_id\": \"alcobendas_poi_aparcabicicletas.1\"\n                }\n            ]\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"692836bd3a1d9f7e01082b52\",\n            \"name\": \"p\",\n            \"position\": 30,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"individual_poi\"\n            ],\n            \"gis_features\": [\n                {\n                    \"map_layer\": {},\n                    \"poi_id\": \"alcobendas_poi_aparcamientos_pmr.234\"\n                }\n            ]\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"692836cbd355ca5aae071d22\",\n            \"name\": \"p\",\n            \"position\": 31,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"individual_poi\"\n            ],\n            \"gis_features\": [\n                {\n                    \"map_layer\": {\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    \"poi_id\": \"alcobendas_poi_aparcabicicletas.1\"\n                }\n            ]\n        }\n    ],\n    \"channels\": [\n        {\n            \"external\": true,\n            \"id\": \"5e2f5d97e8833f980e8b456a\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/570cae1c27eee.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/57d00b07b2dc9.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/569fbfcab7d8a.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/593e82201d727.png\"\n                }\n            ],\n            \"name\": \"Atención Ciudadana 02\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6707a3e935d16ea8ba023692\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Taxista\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a3e98842b164282160.png\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6707a490ff6dc1826d02d533\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Bombero\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a48fd858c053337675.png\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6707a4d16fb710a4340702e3\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Turista\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a4d187a0c993521356.png\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6707a53ce360bb733d012834\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Vida sana\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a53ca4399383615631.png\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6707a56935d16ea8ba023693\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Turismo\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a56939566420847797.png\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6707a59be360bb733d012835\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Ocio\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a59b3f6c2140711695.png\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6707a5be6fb710a4340702e4\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Danza\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a5bebb80d269611437.png\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6707a5e435d16ea8ba023694\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/56c1a52c13749.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/570cae1c27eee.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/56968dfe929a7.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/57d00b07b2dc9.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/569fbfcab7d8a.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/59f193abe5de8.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5be1bf65a4a58.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5f0f2d3adc0fb.png\"\n                },\n                {},\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/66c5d56569743605092528.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/683db6687f3fe479045025.png\"\n                }\n            ],\n            \"name\": \"Arte\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"670e83a2be3d8d43720fc222\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"externo prueba\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/670e83a2792b7028834372.png\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"670e90553ae05dcb6f088352\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"interno de prueba sin icono\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/670e9054b45c5661002792.png\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"671173ec2395a6b7df0bf935\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"prueba231213232\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/671173ebd396c793603818.png\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"671ffea1405a78e44f089123\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"buenas\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"672cbeb8b52e10d5900e6042\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Canal_obligatorio\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"672cc15beb6d0d86b20b80b2\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"canal_obligatorio\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"672cde444b419fd019011795\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Prueba Global Channels\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"672d084c1daef4e30c09b762\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"CANAL_OBLIGATORIO\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6738a3b069ce60555305a215\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"global channel\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6738ab9a69ce60555305a217\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"canal global 3\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6738ac474d2e5d4fa405a573\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"canal global 4\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"673b2f790800c3a3200781c2\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"asdasd\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"673db80cff77ca803d07e126\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Test 1\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"673db84068b70779b5011b8e\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"Test 2\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"673db8696b60131e9c0210a7\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                },\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/59f193abe5de8.png\"\n                }\n            ],\n            \"name\": \"Global Externo\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"682201462e7c5fccfd005939\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"prueba1\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"6822018233b2a2d5910ba782\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"prueba1 epg\"\n        },\n        {\n            \"external\": true,\n            \"id\": \"68c00ca5a50dbd22a304a205\",\n            \"jurisdictions\": [\n                {\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\"\n                }\n            ],\n            \"name\": \"empadronado\"\n        }\n    ],\n    \"default_language\": \"es\",\n    \"font_color\": \"#ffffff\",\n    \"headboard\": {\n        \"images\": [\n            {\n                \"image_metadata\": {\n                    \"type\": \"URL\",\n                    \"extra_data\": {\n                        \"url\": \"tel:+3434545645\"\n                    }\n                },\n                \"image_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/67862a00974c58.00278616.png\"\n            }\n        ],\n        \"type\": \"images\"\n    },\n    \"login_background_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/68e38acdc58910.05431754.jpg\",\n    \"login_logo_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706550cc629b4.21210239.png\",\n    \"main_color\": \"#006629\",\n    \"managers_icon_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706551b8a5748.76715535.jpg\",\n    \"name\": \"Alcobendas\",\n    \"type\": \"cityapp\",\n    \"onboarding\": {\n        \"steps\": [\n            {\n                \"image\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/onboarding/679103bbda3984.14458606.png\",\n                \"title\": \"1\",\n                \"description\": \"f\"\n            },\n            {\n                \"image\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/onboarding/675997ee0c3475.46372102.png\",\n                \"title\": \"2\",\n                \"description\": \"2\"\n            },\n            {\n                \"image\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/onboarding/67bc290de2a813.33911649.png\",\n                \"title\": \"3\",\n                \"description\": \"test\"\n            },\n            {\n                \"image\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/onboarding/67bda76e371489.86056488.png\",\n                \"title\": \"4\",\n                \"description\": \"4\"\n            }\n        ]\n    },\n    \"buttons\": [\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11f151e0ac394a0057abd\",\n            \"name\": \"Reservas Deportivas\",\n            \"position\": 1,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"url\",\n            \"collection\": [\n                {\n                    \"value\": \"https://tramitesweb.alcobendas.org/gestiononline/axxxx20_asp_01/axxxx20_asp_01_03/opciones.aspx\"\n                }\n            ],\n            \"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=\",\n            \"tags\": []\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11f3514e8b6c26d091155\",\n            \"name\": \"Abono Deporte\",\n            \"position\": 2,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"url\",\n            \"collection\": [\n                {\n                    \"value\": \"https://www.alcobendas.org/es/temas/deportes/abono-deporte\"\n                }\n            ],\n            \"tags\": []\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11f4c13f805828404fb29\",\n            \"name\": \"Cita previa SAC\",\n            \"position\": 3,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"url\",\n            \"collection\": [\n                {\n                    \"value\": \"https://www.alcobendas.org/es/cita-previa\"\n                }\n            ],\n            \"tags\": []\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11f611fec160ca3059aa9\",\n            \"name\": \"Actividades de agenda\",\n            \"position\": 4,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"url\",\n            \"collection\": [\n                {\n                    \"value\": \"https://www.alcobendas.org/es/actividades\"\n                }\n            ],\n            \"tags\": []\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11fc21e0ac394a0057abe\",\n            \"name\": \"Trámites electrónicos\",\n            \"position\": 6,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"urlCollection\",\n            \"collection\": [\n                {\n                    \"name\": \"Todos los trámites\",\n                    \"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=\"\n                },\n                {\n                    \"name\": \"Certificado de Empadronamiento\",\n                    \"value\": \"https://tramitesweb.alcobendas.org/TramitesWeb/A150109_ASP_01/Tramite.ashx?CodTipoTramite=37&amp;AppAlcobendas=True\"\n                }\n            ],\n            \"tags\": []\n        },\n        {\n            \"type\": \"button\",\n            \"channels\": [],\n            \"id\": \"67e11fdf99380b79840d6a38\",\n            \"name\": \"Cursos\",\n            \"position\": 7,\n            \"preset\": true,\n            \"required\": false,\n            \"button_type\": \"url\",\n            \"collection\": [\n                {\n                    \"value\": \"https://www.alcobendas.org/es/cursos\"\n                }\n            ],\n            \"tags\": []\n        }\n    ],\n    \"cards\": [\n        {\n            \"type\": \"indoor_and_requests_card\",\n            \"channels\": [],\n            \"id\": \"68ca5872249a70d7a10b20c3\",\n            \"name\": \"Punto Limpio\",\n            \"position\": 0,\n            \"preset\": true,\n            \"required\": true,\n            \"filter_configuration\": {\n                \"service_filter_configuration\": {\n                    \"included\": true,\n                    \"services\": [\n                        {\n                            \"visible_name\": \"Armarios de alumbrado en vía pública (Aviso)\",\n                            \"id\": \"5620e94b6aa91814008b4567\",\n                            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png\"\n                        }\n                    ]\n                }\n            },\n            \"view_types\": [\n                \"mine_poi\"\n            ],\n            \"required_strong_identification\": false,\n            \"required_registered_resident\": false,\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"requests_card\",\n            \"channels\": [],\n            \"id\": \"67e11f7d734f7c4a4c07c15a\",\n            \"name\": \"Alcobendas Actúa\",\n            \"position\": 5,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {\n                \"service_filter_configuration\": {\n                    \"included\": false,\n                    \"services\": [\n                        {\n                            \"visible_name\": \"Armarios de alumbrado en vía pública (Aviso)\",\n                            \"id\": \"5620e94b6aa91814008b4567\",\n                            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png\"\n                        }\n                    ]\n                }\n            },\n            \"view_types\": [\n                \"mine\"\n            ],\n            \"required_strong_identification\": false,\n            \"required_registered_resident\": false,\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"youtube_card\",\n            \"channels\": [],\n            \"id\": \"67e2c537e94ef21c250863c2\",\n            \"name\": \"Videos\",\n            \"position\": 8,\n            \"preset\": true,\n            \"required\": false,\n            \"view_types\": []\n        },\n        {\n            \"type\": \"twitter_card\",\n            \"channels\": [],\n            \"id\": \"67e2c568da74be700f0af6e2\",\n            \"name\": \"Twitter\",\n            \"position\": 9,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": []\n        },\n        {\n            \"type\": \"alerts_card\",\n            \"channels\": [],\n            \"id\": \"67e2c579f8a5e24548031722\",\n            \"name\": \"Comunicados\",\n            \"position\": 10,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [],\n            \"jurisdiction_elements\": [\n                {\n                    \"id\": \"5c9b55579650e67d42985e80\",\n                    \"visible_name\": \"Alcobendas\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png\"\n                }\n            ]\n        },\n        {\n            \"type\": \"news_card\",\n            \"channels\": [],\n            \"id\": \"67e2c5e5ba0266d459029ec6\",\n            \"name\": \"Noticias\",\n            \"position\": 11,\n            \"preset\": true,\n            \"required\": false,\n            \"view_types\": [],\n            \"sources\": [\n                {\n                    \"channels\": [],\n                    \"name\": \"Ayto Alcobendas\",\n                    \"predetermined\": true,\n                    \"required\": true,\n                    \"source_link\": \"https://www.alcobendas.org/es/noticias-rss.xml\",\n                    \"tags\": [\n                        {\n                            \"name\": \"Alcobendas\",\n                            \"color\": \"#0271b8\",\n                            \"id\": \"Alcobendas\"\n                        }\n                    ],\n                    \"time_source_id\": \"1742915045\"\n                }\n            ]\n        },\n        {\n            \"type\": \"my_requests_work_card\",\n            \"channels\": [],\n            \"id\": \"6834b4e723a58ba8ef04d1a2\",\n            \"name\": \"prueba\",\n            \"position\": 12,\n            \"preset\": true,\n            \"required\": false,\n            \"view_type\": \"\",\n            \"view_types\": [\n                \"mine\"\n            ],\n            \"typologies\": [\n                {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"name\": \"Aviso\",\n                    \"visible_name\": \"Aviso\"\n                }\n            ],\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"alerts_card\",\n            \"channels\": [],\n            \"id\": \"68c2e3a486f0e16e890741b2\",\n            \"name\": \"Comunicados pruebas S y G\",\n            \"position\": 13,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [],\n            \"jurisdiction_elements\": [\n                {\n                    \"id\": \"65c27852911e73e22d02f413\",\n                    \"visible_name\": \"prueba S y G\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png\"\n                }\n            ]\n        },\n        {\n            \"type\": \"alerts_card\",\n            \"channels\": [],\n            \"id\": \"68c2e4ffecc18b72c7065602\",\n            \"name\": \"comunicados sin subproyecto\",\n            \"position\": 14,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [],\n            \"jurisdiction_elements\": []\n        },\n        {\n            \"type\": \"charts_card\",\n            \"channels\": [],\n            \"id\": \"68c844c7d05aae487b07b903\",\n            \"name\": \"dsad\",\n            \"position\": 15,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {\n                \"service_filter_configuration\": {\n                    \"included\": false,\n                    \"services\": []\n                }\n            },\n            \"view_types\": [\n                \"image\"\n            ],\n            \"widget_url_relations\": [\n                {\n                    \"url\": \"www.prueba.com\",\n                    \"widget\": {}\n                },\n                {\n                    \"url\": \"www.prueba.com\",\n                    \"widget\": {}\n                }\n            ]\n        },\n        {\n            \"type\": \"charts_card\",\n            \"channels\": [],\n            \"id\": \"68c8452dd05aae487b07b904\",\n            \"name\": \"sadsa\",\n            \"position\": 16,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"image\"\n            ],\n            \"widget_url_relations\": [\n                {\n                    \"url\": \"www.prueba.com\",\n                    \"widget\": {}\n                }\n            ]\n        },\n        {\n            \"type\": \"twitter_card\",\n            \"channels\": [],\n            \"id\": \"68cc22b8cd026c8dc70ae857\",\n            \"name\": \"PRUEBA TWITTER\",\n            \"position\": 17,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": []\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"68d3a0a00d21637d990d3cf2\",\n            \"name\": \"pois\",\n            \"position\": 18,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"layers\"\n            ],\n            \"gis_features\": []\n        },\n        {\n            \"type\": \"requests_card\",\n            \"channels\": [],\n            \"id\": \"68da3c7002a78a6c060941ca\",\n            \"name\": \"Boton tods\",\n            \"position\": 20,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"button\"\n            ],\n            \"required_strong_identification\": false,\n            \"required_registered_resident\": false,\n            \"button_type\": \"all_map\"\n        },\n        {\n            \"type\": \"indoor_and_requests_card\",\n            \"channels\": [],\n            \"id\": \"68dab635684ec8a99308d4d2\",\n            \"name\": \"sdasdas\",\n            \"position\": 21,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {\n                \"service_filter_configuration\": {\n                    \"included\": true,\n                    \"services\": [\n                        {\n                            \"visible_name\": \"Armarios de alumbrado en vía pública (Aviso)\",\n                            \"id\": \"5620e94b6aa91814008b4567\",\n                            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png\"\n                        },\n                        {\n                            \"visible_name\": \"Arquetas de alumbrado (Aviso)\",\n                            \"id\": \"5620ec856aa918b1008b4567\",\n                            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png\"\n                        },\n                        {\n                            \"visible_name\": \"Cableado aéreo de alumbrado público (Aviso)\",\n                            \"id\": \"5620ed7e6aa918b1008b456e\",\n                            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\"\n                        }\n                    ]\n                }\n            },\n            \"view_types\": [\n                \"mine_poi\"\n            ],\n            \"required_strong_identification\": true,\n            \"required_registered_resident\": true,\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"alerts_card\",\n            \"channels\": [],\n            \"id\": \"68e52c4d0226f0138505d88d\",\n            \"name\": \"prueba\",\n            \"position\": 22,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [],\n            \"jurisdiction_elements\": [\n                {\n                    \"id\": \"5c9b55579650e67d42985e80\",\n                    \"visible_name\": \"Alcobendas\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png\"\n                }\n            ]\n        },\n        {\n            \"type\": \"requests_card\",\n            \"channels\": [],\n            \"id\": \"68e957dbd593d785fc0eda3a\",\n            \"name\": \"Mi Prueba\",\n            \"position\": 25,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"mine\"\n            ],\n            \"required_strong_identification\": false,\n            \"required_registered_resident\": false,\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"my_requests_work_card\",\n            \"channels\": [],\n            \"id\": \"68e95c3fd593d785fc0eda3b\",\n            \"name\": \"prueba\",\n            \"position\": 26,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_type\": \"\",\n            \"view_types\": [\n                \"mine\"\n            ],\n            \"typologies\": [\n                {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"name\": \"Aviso\",\n                    \"visible_name\": \"Aviso\"\n                }\n            ],\n            \"button_type\": \"\"\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"6925850b8174d7d7060ca3a4\",\n            \"name\": \"p\",\n            \"position\": 27,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"configuration\": {\n                \"content_image\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/692584fc14e5c3.80953306.png\"\n            },\n            \"view_types\": [\n                \"layers\"\n            ],\n            \"gis_features\": []\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"6926e08cced3313a34078494\",\n            \"name\": \"p\",\n            \"position\": 28,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"individual_poi\"\n            ],\n            \"gis_features\": [\n                {\n                    \"map_layer\": {},\n                    \"poi_id\": \"alcobendas_poi_aparcamientos_pmr.234\"\n                },\n                {\n                    \"map_layer\": {\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    \"poi_id\": \"alcobendas_poi_aparcabicicletas.1\"\n                }\n            ]\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"69271151b65902cca40f572d\",\n            \"name\": \"p\",\n            \"position\": 29,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"individual_poi\"\n            ],\n            \"gis_features\": [\n                {\n                    \"map_layer\": {\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    \"poi_id\": \"alcobendas_poi_aparcabicicletas.1\"\n                },\n                {\n                    \"map_layer\": {\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    \"poi_id\": \"alcobendas_poi_aparcabicicletas.4\"\n                },\n                {\n                    \"map_layer\": {\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    \"poi_id\": \"alcobendas_poi_aparcabicicletas.1\"\n                }\n            ]\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"692836bd3a1d9f7e01082b52\",\n            \"name\": \"p\",\n            \"position\": 30,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"individual_poi\"\n            ],\n            \"gis_features\": [\n                {\n                    \"map_layer\": {},\n                    \"poi_id\": \"alcobendas_poi_aparcamientos_pmr.234\"\n                }\n            ]\n        },\n        {\n            \"type\": \"indoor_card\",\n            \"channels\": [],\n            \"id\": \"692836cbd355ca5aae071d22\",\n            \"name\": \"p\",\n            \"position\": 31,\n            \"preset\": true,\n            \"required\": false,\n            \"filter_configuration\": {},\n            \"view_types\": [\n                \"individual_poi\"\n            ],\n            \"gis_features\": [\n                {\n                    \"map_layer\": {\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    \"poi_id\": \"alcobendas_poi_aparcabicicletas.1\"\n                }\n            ]\n        }\n    ],\n    \"preset_external_services\": [],\n    \"non_preset_external_services\": []\n}"
                },
                {
                  "id": "4107d608-6c4d-4ef8-b6ae-01774576bcf3",
                  "name": "Application Not Found App Configurations",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/appconfiguration?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "appconfiguration"
                      ],
                      "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"Application was not found\"\n    }\n]"
                },
                {
                  "id": "7d6a50a9-fa75-4bf0-a588-000a6538cae1",
                  "name": "Jurisdiction Null App Configurations",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/appconfiguration?type=cityapp",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"Parameter \\\"jurisdiction_id\\\" of value \\\"NULL\\\" violated a constraint \\\"Este valor no debería ser nulo.\\\"\"\n    }\n]"
                },
                {
                  "id": "c825bbf9-4bcc-4799-b9c6-740793494bfa",
                  "name": "Not Fount Jurisdiction App Configurations",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/appconfiguration?jurisdiction_id={{jurisdiction_id}}&type=cityapp",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "appconfiguration"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"jurisdiction_id was not found\"\n    }\n]"
                }
              ]
            },
            {
              "name": "App Configuration Common",
              "id": "58844c05-f9f8-4b7e-b868-637ff6b4d7c4",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/appconfigurationcommon?jurisdiction_id={{jurisdiction_id}}&type=cityapp&ignore_channels=true",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "appconfigurationcommon"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "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**\n\nObtiene 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": "{{publicBaseUrl}}/appconfigurationcommon?jurisdiction_id={{jurisdiction_id}}&type=cityapp&ignore_channels=true",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "appconfigurationcommon"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "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": "{\n    \"app_icon_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/670655313d52a7.55147536.png\",\n    \"app_elements\": [\n        {\n            \"type\": \"indoor_and_requests_card\",\n            \"channels\": [],\n            \"id\": \"68ca5872249a70d7a10b20c3\",\n            \"name\": \"Punto Limpio\",\n            \"preset\": true,\n            \"required\": true,\n            \"button_type\": \"\"\n        }\n    ],\n    \"default_language\": \"es\",\n    \"font_color\": \"#ffffff\",\n    \"headboard\": {\n        \"images\": [\n            {\n                \"image_metadata\": {\n                    \"type\": \"URL\",\n                    \"extra_data\": {\n                        \"url\": \"tel:+3434545645\"\n                    }\n                },\n                \"image_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/67862a00974c58.00278616.png\"\n            }\n        ],\n        \"type\": \"images\"\n    },\n    \"login_background_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/68e38acdc58910.05431754.jpg\",\n    \"login_logo_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706550cc629b4.21210239.png\",\n    \"main_color\": \"#006629\",\n    \"managers_icon_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706551b8a5748.76715535.jpg\",\n    \"name\": \"Alcobendas\",\n    \"type\": \"cityapp\"\n}"
                },
                {
                  "id": "1ba735fd-ba41-4aa6-84b0-29a7d115fac3",
                  "name": "Not Found App Configuration Common",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/appconfigurationcommon?type=cityapp&ignore_channels=true",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"Object not found\"\n    }\n]"
                },
                {
                  "id": "64f82f68-8f56-498c-913e-a75872dc50b8",
                  "name": "Jurisdiction Not Found App Configuration Common",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/appconfigurationcommon?jurisdiction_id={{jurisdiction_id}}&type=cityapp&ignore_channels=true",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "appconfigurationcommon"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"jurisdiction_id was not found\"\n    }\n]"
                },
                {
                  "id": "d6bc2e98-cbd0-4d16-a450-0993a8c08569",
                  "name": "Application Not Found App Configuration Common",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/appconfigurationcommon?jurisdiction_id={{jurisdiction_id}}&ignore_channels=true",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "appconfigurationcommon"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"Application was not found\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Get External Service",
              "id": "71ceca6a-b361-4eb6-b7ad-04b4802696d3",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/external-service/{{id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "external-service",
                    "{{id}}"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "String. [required]. ID del recurso external service id."
                    }
                  ]
                },
                "description": "**Description**\n\nObtiene 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.\n\n**Request Param**\n\n| **Campo** | Tipo | **Descripcion** |\n| --- | --- | --- |\n| 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": "{{publicBaseUrl}}/external-service/{{external_service_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "external-service",
                        "{{external_service_id}}"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"botConfiguration\": {\n        \"id\": \"6893757b270bdcf65a056f77\",\n        \"hostUrl\": \"http://localhost:5200/\",\n        \"position\": {\n            \"right\": \"1rem\",\n            \"bottom\": \"1rem\"\n        }\n    },\n    \"id\": \"6893757b270bdcf65a056f76\",\n    \"name\": \"Test\",\n    \"provider\": \"bot_web\",\n    \"type\": \"bot_web\"\n}"
                },
                {
                  "id": "b79fed67-1e24-4457-84dd-9082466c8e56",
                  "name": "Not Found Get External Service",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/external-service/{{external_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"External Service was not found\"\n    }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/applications/{{app_key}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "applications",
                    "{{app_key}}"
                  ],
                  "variable": [
                    {
                      "key": "app_key",
                      "value": "",
                      "description": "String. [required]. ID del recurso app key."
                    }
                  ]
                },
                "description": "**Description**\n\nObtiene 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.}\n\n**Request Param**\n\n| Campo | **Tipo** | Description |\n| --- | --- | --- |\n| 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": "{{publicBaseUrl}}/applications/{{app_key}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"default_jurisdiction_id\": \"org.alcobendas\",\n    \"active\": true,\n    \"logo\": \"http://www.radmas.com/clientes/ayto/img/logo.png\",\n    \"name\": \"Alcobendas_CanaryBOT\"\n}"
                },
                {
                  "id": "48cfca18-a202-4c04-9b8b-2d8916a4e33d",
                  "name": "App Key Does Not Exists Get Application",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/applications/{{app_key}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"app_key does not exist or is not allowed\"\n    }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/channel/list/category/{{category}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "channel",
                    "list",
                    "category",
                    "{{category}}"
                  ],
                  "variable": [
                    {
                      "key": "category",
                      "value": "",
                      "description": "String. [required]. ID del recurso category."
                    }
                  ]
                },
                "description": "**Description**\n\nLista los canales (Channels) que son externos y auto-asignables filtrados por una categoría específica.\n\n**Request Param**\n\n| Campo | **Tipo** | **Description** |\n| --- | --- | --- |\n| 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": "{{publicBaseUrl}}/channel/list/category/{{category}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"category\": \"interest\",\n        \"description\": \"Beta Tester - Icono\",\n        \"external\": true,\n        \"external_name\": \"pruebatester\",\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/670ccd7f9c833279214538.png\",\n        \"id\": \"5cc6a0b08d7a6a0b0b8b45ad\",\n        \"jurisdiction_elements\": [\n            {\n                \"id\": \"5c9b557e9650e67d42985e8d\",\n                \"name\": \"Ciudad BBVA\",\n                \"is_main\": false\n            }\n        ],\n        \"jurisdictions\": [\n            {\n                \"id\": \"5be19ecb9a35c4850a8b45b1\",\n                \"jurisdiction_id\": \"bbva\",\n                \"name\": \"BBVA\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5be1bf65a4a58.png\"\n            }\n        ],\n        \"name\": \"Beta Tester\",\n        \"order\": 3,\n        \"self_assignable\": true,\n        \"visible\": true\n    }\n]"
                },
                {
                  "id": "73c02971-effe-4c04-86ee-6a9d2ac7aef5",
                  "name": "Category Not Found List Channel By Category",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/channel/list/category/{{category}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"Category mock was not found\"\n    }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/jurisdictions?app_Key=1234555&lat={{latitude}}&long={{longitude}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "{{latitude}}",
                      "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": "{{longitude}}",
                      "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": "{{publicBaseUrl}}/jurisdictions?appKey=1&lat={{latitude}}&long={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{latitude}}",
                          "description": "[optional]. Permite estableces coordenadas geográficas (latitud) para un filtrado más exacto de los resultados (formato decimal)"
                        },
                        {
                          "key": "long",
                          "value": "{{longitude}}",
                          "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": "{\n    \"only_registered_users\": true,\n    \"max_upload_files\": 5,\n    \"automatic_typology\": false,\n    \"map_layers\": [\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n            \"id\": \"5d9ee7d1de2efef4018b4582\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Riv_Barrios\",\n            \"name\": \"Barrios\",\n            \"description\": \"Barrios\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        }\n    ],\n    \"accepted_id_documents\": [],\n    \"buttons\": [],\n    \"channels\": [\n        {\n            \"external\": false,\n            \"id\": \"5e2f5cb6e8833f960e8b457a\",\n            \"name\": \"Gestores Avisos\"\n        }\n    ],\n    \"company_emails\": [\n        \"comentarios.rivas@mejoratuciudad.org\"\n    ],\n    \"geo_bound\": [\n        {\n            \"lat\": 40.411038646944,\n            \"long\": -3.4700083830236\n        }\n    ],\n    \"geo_perimeter\": [\n        {\n            \"lat\": 40.327458668663,\n            \"long\": -3.4704022742792\n        }\n    ],\n    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/59f193abe5de8.png\",\n    \"id\": \"59bf9b3e76e456ac018b4569\",\n    \"jurisdiction_elements\": [\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                    \"id\": \"5d9ee7d1de2efef4018b4582\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Riv_Barrios\",\n                    \"name\": \"Barrios\",\n                    \"description\": \"Barrios\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                }\n            ],\n            \"extent\": [\n                -3.5850750207097,\n                40.287119395069,\n                -3.4700083830236,\n                40.411038646944\n            ],\n            \"id\": \"5c9b557c9650e67d42985e8b\",\n            \"name\": \"es.madrid\",\n            \"type\": \"city\",\n            \"visible_name\": \"es.madrid\",\n            \"is_main\": true\n        }\n    ],\n    \"jurisdiction_id\": \"es.madrid\",\n    \"key_name\": \"Rivas-Vaciamadrid\",\n    \"locales\": [\n        \"es\"\n    ],\n    \"name\": \"Madrid\",\n    \"origin_devices\": [\n        {\n            \"id\": \"5850de88e22c6d9f51b17715\",\n            \"options\": []\n        }\n    ],\n    \"lat\": 40.35497,\n    \"long\": -3.54806,\n    \"tags\": [\n        {\n            \"name\": \"Poda\",\n            \"color\": \"#000000\",\n            \"id\": \"Poda\"\n        }\n    ],\n    \"third_emails\": [\n        \"comentarios.rivas@mejoratuciudad.org\"\n    ],\n    \"timezone\": \"Europe/Madrid\",\n    \"typologies\": [\n        {\n            \"id\": \"59bfadfe566d72b8018b45c6\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n            \"location_type\": \"geolocation\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": false,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        }\n    ],\n    \"typology_nodes\": [\n        {\n            \"id\": \"59bfaf21d2bf39b8018b457d\",\n            \"color\": \"#f1c40f\",\n            \"order\": 1,\n            \"typology\": {\n                \"id\": \"59bfadfe566d72b8018b45c6\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Nuevo\"\n        }\n    ],\n    \"user_info\": [\n        {\n            \"available\": true,\n            \"field\": \"first_name\"\n        }\n    ],\n    \"modules\": {\n        \"requests\": true,\n        \"requests_process\": true,\n        \"requests_comments\": true,\n        \"requests_worknotes\": true,\n        \"requests_reiterations\": true,\n        \"requests_complaints\": true,\n        \"user_evaluation\": true,\n        \"service_survey\": false,\n        \"alerts\": false,\n        \"inventory\": false,\n        \"dashboard\": true,\n        \"news\": false,\n        \"backoffice_admin\": true,\n        \"app_configuration\": true,\n        \"notifications\": true,\n        \"planned_requests\": true,\n        \"planning\": false,\n        \"users\": false,\n        \"predetermined_response\": true,\n        \"predetermined_response_external_source\": true,\n        \"company_enquiry\": false,\n        \"layer\": false,\n        \"jurisdiction_element\": false,\n        \"webhook\": false,\n        \"user_guide\": true,\n        \"worklog\": false\n    },\n    \"app_urls\": {\n        \"web_url\": \"https://mapa.mejoratuciudad.org\",\n        \"google_play_manager\": \"https://play.google.com/store/apps/details?id=com.radmas.iycp.production&hl=es\",\n        \"google_play_citizens\": \"https://play.google.com/store/apps/details?id=com.radmas.iyc.rivas\",\n        \"app_store\": \"https://itunes.apple.com/us/app/rivas-ciudad/id1353778065?l=es&ls=1&mt=8\"\n    }\n}"
                },
                {
                  "id": "b5f4ecc5-b36b-468c-a02f-04d36382d07d",
                  "name": "Response OK Jurisdictions List",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdictions",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "jurisdictions"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"only_registered_users\": true,\n        \"max_upload_files\": 5,\n        \"automatic_typology\": false,\n        \"map_layers\": [],\n        \"accepted_id_documents\": [],\n        \"buttons\": [\n            {\n                \"design\": {\n                    \"icon\": {\n                        \"color\": \"#000000\"\n                    },\n                    \"background\": {\n                        \"color\": \"transparent\"\n                    },\n                    \"size\": 70,\n                    \"color\": \"#000000\",\n                    \"format\": \"transparent\",\n                    \"char\": \"e801\"\n                },\n                \"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=\",\n                \"button_code\": \"569f8db56aa91886728b4569\",\n                \"label\": \"@emergenciassev\",\n                \"news_collection\": [],\n                \"optional\": false,\n                \"phone_collection\": [],\n                \"sequence\": 0,\n                \"social_collection\": [],\n                \"url\": \"https://twitter.com/emergenciassev\",\n                \"url_collection\": []\n            }\n        ],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            }\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": 37.45287134,\n                \"long\": -5.81924238\n            },\n            {\n                \"lat\": 37.31390591,\n                \"long\": -6.02874052\n            }\n        ],\n        \"geo_perimeter\": [\n            {\n                \"lat\": 37.44263269,\n                \"long\": -6.02874052\n            },\n            {\n                \"lat\": 37.44471434,\n                \"long\": -6.0266208\n            },\n            {\n                \"lat\": 37.44617039,\n                \"long\": -6.02324396\n            },\n            {\n                \"lat\": 37.44468107,\n                \"long\": -6.02052829\n            },\n            {\n                \"lat\": 37.44334048,\n                \"long\": -6.01127557\n            },\n            {\n                \"lat\": 37.44394835,\n                \"long\": -6.00722034\n            },\n            {\n                \"lat\": 37.44833631,\n                \"long\": -6.00049084\n            },\n            {\n                \"lat\": 37.44738129,\n                \"long\": -5.99373964\n            },\n            {\n                \"lat\": 37.44828804,\n                \"long\": -5.98853187\n            },\n            {\n                \"lat\": 37.44979688,\n                \"long\": -5.97873675\n            },\n            {\n                \"lat\": 37.45044898,\n                \"long\": -5.97001492\n            },\n            {\n                \"lat\": 37.45191785,\n                \"long\": -5.9595959\n            },\n            {\n                \"lat\": 37.45287134,\n                \"long\": -5.94885102\n            },\n            {\n                \"lat\": 37.44975443,\n                \"long\": -5.93616084\n            },\n            {\n                \"lat\": 37.44869065,\n                \"long\": -5.92637708\n            },\n            {\n                \"lat\": 37.44756814,\n                \"long\": -5.91674952\n            },\n            {\n                \"lat\": 37.44552261,\n                \"long\": -5.91164096\n            },\n            {\n                \"lat\": 37.44283256,\n                \"long\": -5.90451877\n            },\n            {\n                \"lat\": 37.43117066,\n                \"long\": -5.89101736\n            },\n            {\n                \"lat\": 37.42468057,\n                \"long\": -5.88522027\n            },\n            {\n                \"lat\": 37.41989201,\n                \"long\": -5.88131959\n            },\n            {\n                \"lat\": 37.41526361,\n                \"long\": -5.87638624\n            },\n            {\n                \"lat\": 37.41192759,\n                \"long\": -5.87462067\n            },\n            {\n                \"lat\": 37.40366506,\n                \"long\": -5.86830718\n            },\n            {\n                \"lat\": 37.40054771,\n                \"long\": -5.86123079\n            },\n            {\n                \"lat\": 37.39995769,\n                \"long\": -5.85432992\n            },\n            {\n                \"lat\": 37.39820594,\n                \"long\": -5.85149634\n            },\n            {\n                \"lat\": 37.39659709,\n                \"long\": -5.84609324\n            },\n            {\n                \"lat\": 37.39542879,\n                \"long\": -5.84034559\n            },\n            {\n                \"lat\": 37.39669771,\n                \"long\": -5.83327814\n            },\n            {\n                \"lat\": 37.39696469,\n                \"long\": -5.82701988\n            },\n            {\n                \"lat\": 37.39772026,\n                \"long\": -5.82368254\n            },\n            {\n                \"lat\": 37.39707835,\n                \"long\": -5.81924238\n            },\n            {\n                \"lat\": 37.39032518,\n                \"long\": -5.82054789\n            },\n            {\n                \"lat\": 37.38878024,\n                \"long\": -5.83390612\n            },\n            {\n                \"lat\": 37.38711157,\n                \"long\": -5.84223382\n            },\n            {\n                \"lat\": 37.38796998,\n                \"long\": -5.84887255\n            },\n            {\n                \"lat\": 37.38784809,\n                \"long\": -5.85541778\n            },\n            {\n                \"lat\": 37.38779943,\n                \"long\": -5.87267131\n            },\n            {\n                \"lat\": 37.38727521,\n                \"long\": -5.88678973\n            },\n            {\n                \"lat\": 37.38369473,\n                \"long\": -5.89392457\n            },\n            {\n                \"lat\": 37.38013832,\n                \"long\": -5.89895943\n            },\n            {\n                \"lat\": 37.37709426,\n                \"long\": -5.90477008\n            },\n            {\n                \"lat\": 37.37758176,\n                \"long\": -5.90876337\n            },\n            {\n                \"lat\": 37.37560202,\n                \"long\": -5.91085476\n            },\n            {\n                \"lat\": 37.37371041,\n                \"long\": -5.92069477\n            },\n            {\n                \"lat\": 37.37158886,\n                \"long\": -5.92632536\n            },\n            {\n                \"lat\": 37.37052755,\n                \"long\": -5.92988566\n            },\n            {\n                \"lat\": 37.36967028,\n                \"long\": -5.93284415\n            },\n            {\n                \"lat\": 37.36810321,\n                \"long\": -5.94296641\n            },\n            {\n                \"lat\": 37.36553449,\n                \"long\": -5.94842039\n            },\n            {\n                \"lat\": 37.36379231,\n                \"long\": -5.93986289\n            },\n            {\n                \"lat\": 37.36071364,\n                \"long\": -5.93902031\n            },\n            {\n                \"lat\": 37.35238423,\n                \"long\": -5.9435152\n            },\n            {\n                \"lat\": 37.33936534,\n                \"long\": -5.95322019\n            },\n            {\n                \"lat\": 37.3342432,\n                \"long\": -5.95735289\n            },\n            {\n                \"lat\": 37.32882156,\n                \"long\": -5.95868622\n            },\n            {\n                \"lat\": 37.32275138,\n                \"long\": -5.96432652\n            },\n            {\n                \"lat\": 37.3152295,\n                \"long\": -5.96748325\n            },\n            {\n                \"lat\": 37.31390591,\n                \"long\": -5.9731847\n            },\n            {\n                \"lat\": 37.3152691,\n                \"long\": -5.97988321\n            },\n            {\n                \"lat\": 37.3171503,\n                \"long\": -5.98853163\n            },\n            {\n                \"lat\": 37.31907786,\n                \"long\": -5.99781412\n            },\n            {\n                \"lat\": 37.32075359,\n                \"long\": -6.00314951\n            },\n            {\n                \"lat\": 37.32651945,\n                \"long\": -6.00779072\n            },\n            {\n                \"lat\": 37.33675173,\n                \"long\": -6.02100685\n            },\n            {\n                \"lat\": 37.34371395,\n                \"long\": -6.02252722\n            },\n            {\n                \"lat\": 37.35160525,\n                \"long\": -6.02224545\n            },\n            {\n                \"lat\": 37.3582875,\n                \"long\": -6.02202806\n            },\n            {\n                \"lat\": 37.36863344,\n                \"long\": -6.02159638\n            },\n            {\n                \"lat\": 37.37150527,\n                \"long\": -6.01957781\n            },\n            {\n                \"lat\": 37.37312088,\n                \"long\": -6.0212126\n            },\n            {\n                \"lat\": 37.37398299,\n                \"long\": -6.0216981\n            },\n            {\n                \"lat\": 37.37507542,\n                \"long\": -6.02231774\n            },\n            {\n                \"lat\": 37.3776378,\n                \"long\": -6.02218348\n            },\n            {\n                \"lat\": 37.38065052,\n                \"long\": -6.022056\n            },\n            {\n                \"lat\": 37.38810006,\n                \"long\": -6.0249523\n            },\n            {\n                \"lat\": 37.39265481,\n                \"long\": -6.02442393\n            },\n            {\n                \"lat\": 37.39501561,\n                \"long\": -6.02195523\n            },\n            {\n                \"lat\": 37.39982672,\n                \"long\": -6.0180939\n            },\n            {\n                \"lat\": 37.40128901,\n                \"long\": -6.01552098\n            },\n            {\n                \"lat\": 37.40763554,\n                \"long\": -6.01504124\n            },\n            {\n                \"lat\": 37.41407333,\n                \"long\": -6.01239621\n            },\n            {\n                \"lat\": 37.41675315,\n                \"long\": -6.005172\n            },\n            {\n                \"lat\": 37.42004615,\n                \"long\": -5.99897717\n            },\n            {\n                \"lat\": 37.42187571,\n                \"long\": -5.99576257\n            },\n            {\n                \"lat\": 37.42468461,\n                \"long\": -5.99123105\n            },\n            {\n                \"lat\": 37.43107051,\n                \"long\": -6.00446771\n            },\n            {\n                \"lat\": 37.43679585,\n                \"long\": -6.00892277\n            },\n            {\n                \"lat\": 37.4426887,\n                \"long\": -6.01033409\n            },\n            {\n                \"lat\": 37.44205429,\n                \"long\": -6.01295299\n            },\n            {\n                \"lat\": 37.43480918,\n                \"long\": -6.01369068\n            },\n            {\n                \"lat\": 37.42339052,\n                \"long\": -6.01202393\n            },\n            {\n                \"lat\": 37.4202632,\n                \"long\": -6.01381916\n            },\n            {\n                \"lat\": 37.4198918,\n                \"long\": -6.01954324\n            },\n            {\n                \"lat\": 37.42168514,\n                \"long\": -6.02199903\n            },\n            {\n                \"lat\": 37.4255636,\n                \"long\": -6.02325087\n            },\n            {\n                \"lat\": 37.43073839,\n                \"long\": -6.02384322\n            },\n            {\n                \"lat\": 37.43538581,\n                \"long\": -6.02638055\n            },\n            {\n                \"lat\": 37.44026424,\n                \"long\": -6.02833991\n            },\n            {\n                \"lat\": 37.44263269,\n                \"long\": -6.02874052\n            }\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/56c1a52c13749.png\",\n        \"id\": \"5458f28fe940f65a788b4569\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -6.02874052,\n                    37.31390591,\n                    -5.81924238,\n                    37.45287134\n                ],\n                \"id\": \"5c9b554f9650e67d42985e79\",\n                \"name\": \"org.sevilla\",\n                \"type\": \"city\",\n                \"visible_name\": \"org.sevilla\",\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"org.sevilla\",\n        \"key_name\": \"Sevilla, España\",\n        \"locales\": [\n            \"es\"\n        ],\n        \"name\": \"Cuenta conmigo\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17716\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17717\",\n                \"options\": [\n                    \"ios\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17718\",\n                \"options\": [\n                    \"android\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17719\",\n                \"options\": [\n                    \"inperson\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771a\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771b\",\n                \"options\": [\n                    \"inperson\",\n                    \"email\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771c\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771d\",\n                \"options\": [\n                    \"facebook\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771e\",\n                \"options\": [\n                    \"twitter\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771f\",\n                \"options\": []\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17721\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17722\",\n                \"options\": [\n                    \"web_channel\"\n                ]\n            },\n            {\n                \"id\": \"64ac2034bf32bba9a20013c2\",\n                \"options\": []\n            },\n            {\n                \"id\": \"64eba5dd9c0de571c50a3262\",\n                \"options\": []\n            },\n            {\n                \"id\": \"651a37a798e2752898061093\",\n                \"options\": []\n            }\n        ],\n        \"lat\": 37.3889976,\n        \"long\": -5.9844443,\n        \"tags\": [],\n        \"timezone\": \"Europe/Madrid\",\n        \"typologies\": [\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c08\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            }\n        ],\n        \"typology_nodes\": [\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c3a\",\n                \"color\": \"#efba00\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c08\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"58a2dc126aa91829068b45af\",\n                \"color\": \"#ff0505\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c08\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c37\",\n                \"color\": \"#FFAB00\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c08\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En progreso\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c36\",\n                \"color\": \"#AD1457\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c08\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c38\",\n                \"color\": \"#0277BD\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c08\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c39\",\n                \"color\": \"#2E7D32\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c08\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            }\n        ],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": true,\n            \"requests_process\": true,\n            \"requests_comments\": true,\n            \"requests_worknotes\": true,\n            \"requests_reiterations\": true,\n            \"requests_complaints\": true,\n            \"user_evaluation\": false,\n            \"service_survey\": false,\n            \"alerts\": false,\n            \"inventory\": false,\n            \"backoffice_admin\": true,\n            \"app_configuration\": true,\n            \"notifications\": true,\n            \"planned_requests\": false,\n            \"planning\": false,\n            \"users\": false,\n            \"predetermined_response\": false,\n            \"predetermined_response_external_source\": false,\n            \"company_enquiry\": false,\n            \"layer\": false,\n            \"jurisdiction_element\": false,\n            \"webhook\": false,\n            \"user_guide\": false,\n            \"worklog\": false,\n            \"calendar\": false\n        },\n        \"app_urls\": {\n            \"web_url\": null,\n            \"google_play_manager\": null,\n            \"google_play_citizens\": null,\n            \"app_store\": null\n        }\n    },\n    {\n        \"only_registered_users\": true,\n        \"max_upload_files\": 5,\n        \"automatic_typology\": false,\n        \"map_layers\": [],\n        \"accepted_id_documents\": [],\n        \"buttons\": [\n            {\n                \"design\": {\n                    \"icon\": {\n                        \"color\": \"#000000\"\n                    },\n                    \"background\": {\n                        \"color\": \"transparent\"\n                    },\n                    \"size\": 60,\n                    \"color\": \"#000000\",\n                    \"format\": \"transparent\",\n                    \"char\": \"e81c\"\n                },\n                \"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==\",\n                \"button_code\": \"55fbc3b96aa91879728b4567\",\n                \"label\": \"Smart Guadalajara\",\n                \"news_collection\": [],\n                \"optional\": false,\n                \"phone_collection\": [],\n                \"sequence\": 0,\n                \"social_collection\": [],\n                \"url\": \"900700313\",\n                \"url_collection\": []\n            }\n        ],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5cb6e8833f960e8b457a\",\n                \"name\": \"Gestores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5d2101394ad80d8b45f5\",\n                \"name\": \"Técnicos Avisos\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"5e2f5d97e8833f980e8b456a\",\n                \"name\": \"Atención Ciudadana 02\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e21fee15c120d8b457b\",\n                \"name\": \"Solicitantes Internos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f61effee15c140d8b456b\",\n                \"name\": \"Gerentes de la ciudad\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e5f8c5e3b5399d7048b45ee\",\n                \"name\": \"Gestores de la plataforma\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e73bd8502be88c10f8b4568\",\n                \"name\": \"Comunicación\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            }\n        ],\n        \"company_emails\": [\n            \"comentarios.smartguadalajara@radmas.com\"\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": 40.72166022,\n                \"long\": -3.06576014\n            },\n            {\n                \"lat\": 40.46179945,\n                \"long\": -3.2846394922461\n            }\n        ],\n        \"geo_perimeter\": [\n            {\n                \"lat\": 40.60580987,\n                \"long\": -3.21064863\n            },\n            {\n                \"lat\": 40.62133859,\n                \"long\": -3.20199572\n            },\n            {\n                \"lat\": 40.62822349,\n                \"long\": -3.20590651\n            },\n            {\n                \"lat\": 40.63684014,\n                \"long\": -3.20353236\n            },\n            {\n                \"lat\": 40.63906115,\n                \"long\": -3.20076\n            },\n            {\n                \"lat\": 40.64457771,\n                \"long\": -3.1989315\n            },\n            {\n                \"lat\": 40.64628357,\n                \"long\": -3.1976746\n            },\n            {\n                \"lat\": 40.64816686,\n                \"long\": -3.19688415\n            },\n            {\n                \"lat\": 40.64823377,\n                \"long\": -3.19620544\n            },\n            {\n                \"lat\": 40.64697052,\n                \"long\": -3.19579726\n            },\n            {\n                \"lat\": 40.64735081,\n                \"long\": -3.19465821\n            },\n            {\n                \"lat\": 40.65392723,\n                \"long\": -3.19196144\n            },\n            {\n                \"lat\": 40.6569694,\n                \"long\": -3.19038859\n            },\n            {\n                \"lat\": 40.656525,\n                \"long\": -3.18889332\n            },\n            {\n                \"lat\": 40.65733213,\n                \"long\": -3.18670247\n            },\n            {\n                \"lat\": 40.65762036,\n                \"long\": -3.18334378\n            },\n            {\n                \"lat\": 40.66404168,\n                \"long\": -3.1758668\n            },\n            {\n                \"lat\": 40.6695994,\n                \"long\": -3.17514076\n            },\n            {\n                \"lat\": 40.68587609,\n                \"long\": -3.17359287\n            },\n            {\n                \"lat\": 40.68838357,\n                \"long\": -3.18673346\n            },\n            {\n                \"lat\": 40.68926899,\n                \"long\": -3.1884934\n            },\n            {\n                \"lat\": 40.68755521,\n                \"long\": -3.18813235\n            },\n            {\n                \"lat\": 40.68761412,\n                \"long\": -3.19285805\n            },\n            {\n                \"lat\": 40.68897352,\n                \"long\": -3.19979477\n            },\n            {\n                \"lat\": 40.6906705,\n                \"long\": -3.19942823\n            },\n            {\n                \"lat\": 40.69223436,\n                \"long\": -3.20103303\n            },\n            {\n                \"lat\": 40.69395522,\n                \"long\": -3.20299819\n            },\n            {\n                \"lat\": 40.69475142,\n                \"long\": -3.20309411\n            },\n            {\n                \"lat\": 40.69429149,\n                \"long\": -3.19974202\n            },\n            {\n                \"lat\": 40.69598762,\n                \"long\": -3.19934467\n            },\n            {\n                \"lat\": 40.712073677311,\n                \"long\": -3.2846394922461\n            },\n            {\n                \"lat\": 40.720026350367,\n                \"long\": -3.2704656231056\n            },\n            {\n                \"lat\": 40.70561252,\n                \"long\": -3.19023703\n            },\n            {\n                \"lat\": 40.70669625,\n                \"long\": -3.1869255\n            },\n            {\n                \"lat\": 40.70887043,\n                \"long\": -3.18716303\n            },\n            {\n                \"lat\": 40.70616712,\n                \"long\": -3.18477901\n            },\n            {\n                \"lat\": 40.7056283,\n                \"long\": -3.1779235\n            },\n            {\n                \"lat\": 40.70838043,\n                \"long\": -3.1688983\n            },\n            {\n                \"lat\": 40.71213755,\n                \"long\": -3.16544197\n            },\n            {\n                \"lat\": 40.71335242,\n                \"long\": -3.15663375\n            },\n            {\n                \"lat\": 40.71639312,\n                \"long\": -3.15306532\n            },\n            {\n                \"lat\": 40.71605639,\n                \"long\": -3.14875496\n            },\n            {\n                \"lat\": 40.71860883,\n                \"long\": -3.14641632\n            },\n            {\n                \"lat\": 40.71473685,\n                \"long\": -3.14499896\n            },\n            {\n                \"lat\": 40.7122279,\n                \"long\": -3.14858069\n            },\n            {\n                \"lat\": 40.711774,\n                \"long\": -3.14417565\n            },\n            {\n                \"lat\": 40.70991963,\n                \"long\": -3.14302332\n            },\n            {\n                \"lat\": 40.7067781,\n                \"long\": -3.1482016\n            },\n            {\n                \"lat\": 40.70377201,\n                \"long\": -3.15296539\n            },\n            {\n                \"lat\": 40.70142527,\n                \"long\": -3.15632172\n            },\n            {\n                \"lat\": 40.69735451,\n                \"long\": -3.1620291\n            },\n            {\n                \"lat\": 40.69202083,\n                \"long\": -3.16238307\n            },\n            {\n                \"lat\": 40.68818021,\n                \"long\": -3.1579354\n            },\n            {\n                \"lat\": 40.68871819,\n                \"long\": -3.15310848\n            },\n            {\n                \"lat\": 40.69017446,\n                \"long\": -3.14859086\n            },\n            {\n                \"lat\": 40.6896881,\n                \"long\": -3.14127584\n            },\n            {\n                \"lat\": 40.68862148,\n                \"long\": -3.1367409\n            },\n            {\n                \"lat\": 40.68921373,\n                \"long\": -3.13093124\n            },\n            {\n                \"lat\": 40.69039146,\n                \"long\": -3.12494501\n            },\n            {\n                \"lat\": 40.68883935,\n                \"long\": -3.11883535\n            },\n            {\n                \"lat\": 40.68780121,\n                \"long\": -3.11191025\n            },\n            {\n                \"lat\": 40.68711314,\n                \"long\": -3.10593268\n            },\n            {\n                \"lat\": 40.69123614,\n                \"long\": -3.09913396\n            },\n            {\n                \"lat\": 40.69556171,\n                \"long\": -3.09753068\n            },\n            {\n                \"lat\": 40.69742119,\n                \"long\": -3.09303559\n            },\n            {\n                \"lat\": 40.70045964,\n                \"long\": -3.08986755\n            },\n            {\n                \"lat\": 40.70626723,\n                \"long\": -3.09373451\n            },\n            {\n                \"lat\": 40.7092699,\n                \"long\": -3.09024639\n            },\n            {\n                \"lat\": 40.7137225,\n                \"long\": -3.0872571\n            },\n            {\n                \"lat\": 40.71736006,\n                \"long\": -3.08984294\n            },\n            {\n                \"lat\": 40.71863954,\n                \"long\": -3.08952498\n            },\n            {\n                \"lat\": 40.72166022,\n                \"long\": -3.08587028\n            },\n            {\n                \"lat\": 40.72140906,\n                \"long\": -3.08437805\n            },\n            {\n                \"lat\": 40.71912375,\n                \"long\": -3.08027847\n            },\n            {\n                \"lat\": 40.71720852,\n                \"long\": -3.07481801\n            },\n            {\n                \"lat\": 40.71641035,\n                \"long\": -3.06895641\n            },\n            {\n                \"lat\": 40.71390325,\n                \"long\": -3.06576014\n            },\n            {\n                \"lat\": 40.70913221,\n                \"long\": -3.06737437\n            },\n            {\n                \"lat\": 40.70440239,\n                \"long\": -3.06777208\n            },\n            {\n                \"lat\": 40.69685674,\n                \"long\": -3.07639309\n            },\n            {\n                \"lat\": 40.69336058,\n                \"long\": -3.07754898\n            },\n            {\n                \"lat\": 40.69191424,\n                \"long\": -3.07114435\n            },\n            {\n                \"lat\": 40.68640897,\n                \"long\": -3.07262963\n            },\n            {\n                \"lat\": 40.68083358,\n                \"long\": -3.07091954\n            },\n            {\n                \"lat\": 40.67237845,\n                \"long\": -3.07854216\n            },\n            {\n                \"lat\": 40.66682386,\n                \"long\": -3.07950688\n            },\n            {\n                \"lat\": 40.66290238,\n                \"long\": -3.07670921\n            },\n            {\n                \"lat\": 40.65951356,\n                \"long\": -3.07892933\n            },\n            {\n                \"lat\": 40.65476356,\n                \"long\": -3.08227134\n            },\n            {\n                \"lat\": 40.64935661,\n                \"long\": -3.08452387\n            },\n            {\n                \"lat\": 40.64008053,\n                \"long\": -3.09232937\n            },\n            {\n                \"lat\": 40.63100349,\n                \"long\": -3.09853669\n            },\n            {\n                \"lat\": 40.62424619,\n                \"long\": -3.09924805\n            },\n            {\n                \"lat\": 40.62304383,\n                \"long\": -3.09337017\n            },\n            {\n                \"lat\": 40.61683356,\n                \"long\": -3.08564179\n            },\n            {\n                \"lat\": 40.60960062,\n                \"long\": -3.08391861\n            },\n            {\n                \"lat\": 40.60025998,\n                \"long\": -3.08164943\n            },\n            {\n                \"lat\": 40.59185237,\n                \"long\": -3.09654128\n            },\n            {\n                \"lat\": 40.59268733,\n                \"long\": -3.09995783\n            },\n            {\n                \"lat\": 40.59644296,\n                \"long\": -3.11116736\n            },\n            {\n                \"lat\": 40.59282677,\n                \"long\": -3.12372376\n            },\n            {\n                \"lat\": 40.58805664,\n                \"long\": -3.1278155\n            },\n            {\n                \"lat\": 40.58279665,\n                \"long\": -3.12669481\n            },\n            {\n                \"lat\": 40.58094318,\n                \"long\": -3.12448176\n            },\n            {\n                \"lat\": 40.57586823,\n                \"long\": -3.12718981\n            },\n            {\n                \"lat\": 40.58034775,\n                \"long\": -3.11656414\n            },\n            {\n                \"lat\": 40.58244364,\n                \"long\": -3.11057703\n            },\n            {\n                \"lat\": 40.57697767,\n                \"long\": -3.10794509\n            },\n            {\n                \"lat\": 40.5707241,\n                \"long\": -3.10939998\n            },\n            {\n                \"lat\": 40.56318196,\n                \"long\": -3.111136\n            },\n            {\n                \"lat\": 40.55564166,\n                \"long\": -3.11091094\n            },\n            {\n                \"lat\": 40.55309238,\n                \"long\": -3.11062327\n            },\n            {\n                \"lat\": 40.55070285,\n                \"long\": -3.11285153\n            },\n            {\n                \"lat\": 40.54849189,\n                \"long\": -3.1166625\n            },\n            {\n                \"lat\": 40.54193963,\n                \"long\": -3.11930816\n            },\n            {\n                \"lat\": 40.54014635,\n                \"long\": -3.11976551\n            },\n            {\n                \"lat\": 40.5345164,\n                \"long\": -3.11905883\n            },\n            {\n                \"lat\": 40.53200802,\n                \"long\": -3.1227855\n            },\n            {\n                \"lat\": 40.53600044,\n                \"long\": -3.12144667\n            },\n            {\n                \"lat\": 40.54067392,\n                \"long\": -3.1235807\n            },\n            {\n                \"lat\": 40.53853636,\n                \"long\": -3.12583219\n            },\n            {\n                \"lat\": 40.53513114,\n                \"long\": -3.12563689\n            },\n            {\n                \"lat\": 40.5351257,\n                \"long\": -3.13059617\n            },\n            {\n                \"lat\": 40.53863683,\n                \"long\": -3.13274031\n            },\n            {\n                \"lat\": 40.54128345,\n                \"long\": -3.13452867\n            },\n            {\n                \"lat\": 40.54009837,\n                \"long\": -3.13870656\n            },\n            {\n                \"lat\": 40.53534855,\n                \"long\": -3.14040891\n            },\n            {\n                \"lat\": 40.53275646,\n                \"long\": -3.13828998\n            },\n            {\n                \"lat\": 40.53042036,\n                \"long\": -3.14058754\n            },\n            {\n                \"lat\": 40.52727064,\n                \"long\": -3.13768839\n            },\n            {\n                \"lat\": 40.52503581,\n                \"long\": -3.13816787\n            },\n            {\n                \"lat\": 40.52283846,\n                \"long\": -3.13743141\n            },\n            {\n                \"lat\": 40.5205898,\n                \"long\": -3.14193643\n            },\n            {\n                \"lat\": 40.51826816,\n                \"long\": -3.13968862\n            },\n            {\n                \"lat\": 40.51659509,\n                \"long\": -3.13747769\n            },\n            {\n                \"lat\": 40.51377486,\n                \"long\": -3.13780245\n            },\n            {\n                \"lat\": 40.51176763,\n                \"long\": -3.13626386\n            },\n            {\n                \"lat\": 40.5076867,\n                \"long\": -3.13609036\n            },\n            {\n                \"lat\": 40.50570013,\n                \"long\": -3.13994582\n            },\n            {\n                \"lat\": 40.50632877,\n                \"long\": -3.14159952\n            },\n            {\n                \"lat\": 40.50632419,\n                \"long\": -3.14532918\n            },\n            {\n                \"lat\": 40.50334451,\n                \"long\": -3.1434344\n            },\n            {\n                \"lat\": 40.50041212,\n                \"long\": -3.14698048\n            },\n            {\n                \"lat\": 40.49768287,\n                \"long\": -3.14656149\n            },\n            {\n                \"lat\": 40.49858339,\n                \"long\": -3.1395416\n            },\n            {\n                \"lat\": 40.49413864,\n                \"long\": -3.13461155\n            },\n            {\n                \"lat\": 40.49475407,\n                \"long\": -3.13215822\n            },\n            {\n                \"lat\": 40.49498425,\n                \"long\": -3.12770976\n            },\n            {\n                \"lat\": 40.49549398,\n                \"long\": -3.12283693\n            },\n            {\n                \"lat\": 40.49534912,\n                \"long\": -3.11467043\n            },\n            {\n                \"lat\": 40.49436298,\n                \"long\": -3.10957083\n            },\n            {\n                \"lat\": 40.49322043,\n                \"long\": -3.1078225\n            },\n            {\n                \"lat\": 40.48933899,\n                \"long\": -3.10611713\n            },\n            {\n                \"lat\": 40.4869092,\n                \"long\": -3.10308087\n            },\n            {\n                \"lat\": 40.48255674,\n                \"long\": -3.10419512\n            },\n            {\n                \"lat\": 40.47848483,\n                \"long\": -3.10387032\n            },\n            {\n                \"lat\": 40.47515318,\n                \"long\": -3.10183606\n            },\n            {\n                \"lat\": 40.47073732,\n                \"long\": -3.1033276\n            },\n            {\n                \"lat\": 40.47149594,\n                \"long\": -3.11119718\n            },\n            {\n                \"lat\": 40.46909176,\n                \"long\": -3.11906138\n            },\n            {\n                \"lat\": 40.46498512,\n                \"long\": -3.12616691\n            },\n            {\n                \"lat\": 40.46179945,\n                \"long\": -3.13107949\n            },\n            {\n                \"lat\": 40.46410762,\n                \"long\": -3.1373709\n            },\n            {\n                \"lat\": 40.4699191,\n                \"long\": -3.14442516\n            },\n            {\n                \"lat\": 40.47563263,\n                \"long\": -3.15024168\n            },\n            {\n                \"lat\": 40.4808,\n                \"long\": -3.15326173\n            },\n            {\n                \"lat\": 40.49172426,\n                \"long\": -3.15621295\n            },\n            {\n                \"lat\": 40.49585467,\n                \"long\": -3.15976278\n            },\n            {\n                \"lat\": 40.50157962,\n                \"long\": -3.16328151\n            },\n            {\n                \"lat\": 40.50641294,\n                \"long\": -3.16652718\n            },\n            {\n                \"lat\": 40.50995202,\n                \"long\": -3.17372419\n            },\n            {\n                \"lat\": 40.51030157,\n                \"long\": -3.18083077\n            },\n            {\n                \"lat\": 40.51083515,\n                \"long\": -3.18525852\n            },\n            {\n                \"lat\": 40.5131084,\n                \"long\": -3.18901836\n            },\n            {\n                \"lat\": 40.51663613,\n                \"long\": -3.19674829\n            },\n            {\n                \"lat\": 40.517448,\n                \"long\": -3.20138982\n            },\n            {\n                \"lat\": 40.5225546,\n                \"long\": -3.2073904\n            },\n            {\n                \"lat\": 40.53143375,\n                \"long\": -3.21444283\n            },\n            {\n                \"lat\": 40.52969909,\n                \"long\": -3.21221767\n            },\n            {\n                \"lat\": 40.53170453,\n                \"long\": -3.20418342\n            },\n            {\n                \"lat\": 40.53527616,\n                \"long\": -3.20188327\n            },\n            {\n                \"lat\": 40.53979713,\n                \"long\": -3.20279093\n            },\n            {\n                \"lat\": 40.54485741,\n                \"long\": -3.19922794\n            },\n            {\n                \"lat\": 40.54829901,\n                \"long\": -3.19383694\n            },\n            {\n                \"lat\": 40.55048987,\n                \"long\": -3.19284343\n            },\n            {\n                \"lat\": 40.55107961,\n                \"long\": -3.18476682\n            },\n            {\n                \"lat\": 40.55004007,\n                \"long\": -3.16928055\n            },\n            {\n                \"lat\": 40.5528806,\n                \"long\": -3.16103188\n            },\n            {\n                \"lat\": 40.55840816,\n                \"long\": -3.15733614\n            },\n            {\n                \"lat\": 40.56748176,\n                \"long\": -3.14928871\n            },\n            {\n                \"lat\": 40.57224011,\n                \"long\": -3.1480233\n            },\n            {\n                \"lat\": 40.58386108,\n                \"long\": -3.14120718\n            },\n            {\n                \"lat\": 40.58944284,\n                \"long\": -3.14430317\n            },\n            {\n                \"lat\": 40.59279167,\n                \"long\": -3.14630754\n            },\n            {\n                \"lat\": 40.59394093,\n                \"long\": -3.1493709\n            },\n            {\n                \"lat\": 40.59549956,\n                \"long\": -3.14930344\n            },\n            {\n                \"lat\": 40.59645149,\n                \"long\": -3.1516456\n            },\n            {\n                \"lat\": 40.59676277,\n                \"long\": -3.15471911\n            },\n            {\n                \"lat\": 40.59163732,\n                \"long\": -3.1609116\n            },\n            {\n                \"lat\": 40.59394582,\n                \"long\": -3.16576248\n            },\n            {\n                \"lat\": 40.59904472,\n                \"long\": -3.17208629\n            },\n            {\n                \"lat\": 40.60334162,\n                \"long\": -3.17831436\n            },\n            {\n                \"lat\": 40.60566656,\n                \"long\": -3.18369862\n            },\n            {\n                \"lat\": 40.60880965,\n                \"long\": -3.18992477\n            },\n            {\n                \"lat\": 40.61292771,\n                \"long\": -3.19474764\n            },\n            {\n                \"lat\": 40.61001334,\n                \"long\": -3.20770656\n            },\n            {\n                \"lat\": 40.60580987,\n                \"long\": -3.21064863\n            }\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/570cae1c27eee.png\",\n        \"id\": \"55a68da46aa918e3048b4568\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.2846394922461,\n                    40.46179945,\n                    -3.0657601400001,\n                    40.72166022\n                ],\n                \"id\": \"5c9b55549650e67d42985e7f\",\n                \"name\": \"es.guadalajara\",\n                \"type\": \"city\",\n                \"visible_name\": \"es.guadalajara\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6582ec9c745c3656403237.png\",\n                \"id\": \"6582ec9ce9cfe77a650a6f93\",\n                \"name\": \"Prueba\",\n                \"type\": \"building\",\n                \"visible_name\": \"Prueba Element\",\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"es.guadalajara\",\n        \"key_name\": \"Guadalajara, España\",\n        \"locales\": [\n            \"es\"\n        ],\n        \"name\": \"Smart Guadalajara\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17715\",\n                \"options\": []\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17716\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17717\",\n                \"options\": [\n                    \"ios\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17718\",\n                \"options\": [\n                    \"android\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17719\",\n                \"options\": [\n                    \"inperson\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771a\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771b\",\n                \"options\": [\n                    \"inperson\",\n                    \"email\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771c\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771d\",\n                \"options\": [\n                    \"facebook\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771e\",\n                \"options\": [\n                    \"twitter\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771f\",\n                \"options\": []\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17720\",\n                \"options\": []\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17721\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17722\",\n                \"options\": [\n                    \"web_channel\"\n                ]\n            },\n            {\n                \"id\": \"585284106aa9180b008b457a\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"60c09cdccdf34808168b4573\",\n                \"options\": [\n                    \"android\"\n                ]\n            }\n        ],\n        \"lat\": 40.6332112,\n        \"long\": -3.159534,\n        \"tags\": [],\n        \"third_emails\": [\n            \"comentarios.smartguadalajara@radmas.com\"\n        ],\n        \"timezone\": \"Europe/Madrid\",\n        \"typologies\": [\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c0e\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            }\n        ],\n        \"typology_nodes\": [\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c57\",\n                \"color\": \"#2e7d32\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0e\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c54\",\n                \"color\": \"#ad1457\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0e\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c56\",\n                \"color\": \"#0277bd\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0e\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c55\",\n                \"color\": \"#ffab00\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0e\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En progreso\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c58\",\n                \"color\": \"#d32f2f\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0e\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Rechazado\"\n            }\n        ],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": true,\n            \"requests_process\": true,\n            \"requests_comments\": true,\n            \"requests_worknotes\": true,\n            \"requests_reiterations\": true,\n            \"requests_complaints\": true,\n            \"user_evaluation\": false,\n            \"service_survey\": true,\n            \"alerts\": true,\n            \"inventory\": false,\n            \"backoffice_admin\": true,\n            \"app_configuration\": false,\n            \"notifications\": true,\n            \"planned_requests\": false,\n            \"planning\": false,\n            \"users\": false,\n            \"predetermined_response\": false,\n            \"predetermined_response_external_source\": false,\n            \"company_enquiry\": false,\n            \"layer\": false,\n            \"jurisdiction_element\": false,\n            \"webhook\": false,\n            \"user_guide\": false,\n            \"worklog\": false,\n            \"calendar\": false\n        },\n        \"app_urls\": {\n            \"web_url\": null,\n            \"google_play_manager\": null,\n            \"google_play_citizens\": null,\n            \"app_store\": null\n        }\n    },\n    {\n        \"only_registered_users\": false,\n        \"max_upload_files\": 5,\n        \"automatic_typology\": false,\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5d9ee7bcde2efef4018b4569\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"64cb9cebaddc18074d0e4193\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"64cb9e98addc18074d0e4195\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"64cb9edb24ab2d777a0ca313\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"64df24ef07a26e434d01f893\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"667031dac97737f437009da6\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e93a7fca30a7b0d7e04\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e94a7fca30a7b0d7e0c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e94a7fca30a7b0d7e0d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e94a7fca30a7b0d7e0e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e94a7fca30a7b0d7e0f\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e94a7fca30a7b0d7e11\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065d6\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065de\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065df\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065e0\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065e1\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065e3\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e13\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e1b\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e1c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e1d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e1e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e20\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a755\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a75d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a75e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a75f\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a760\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a762\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc2ffc05a02a10aeb01\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc2ffc05a02a10aeb09\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc2ffc05a02a10aeb0a\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc2ffc05a02a10aeb0b\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc3ffc05a02a10aeb0c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc3ffc05a02a10aeb0e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073c94\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073c9c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073c9d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073c9e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073c9f\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073ca1\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a4843\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a484b\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a484c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a484d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a484e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a4850\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4af3\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4afb\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4afc\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4afd\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4afe\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4b00\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b04\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b0c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b0d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b0e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b0f\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b11\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab5deaa23504a049c38\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab5deaa23504a049c40\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab5deaa23504a049c41\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab5deaa23504a049c42\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab6deaa23504a049c43\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab6deaa23504a049c45\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909c5\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909cd\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909ce\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909cf\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909d0\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909d2\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a755015855\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a75501585d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a75501585e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a75501585f\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a755015860\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a755015862\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1b93\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1b9b\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1b9c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1b9d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1b9e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1ba0\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34e3\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34eb\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34ec\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34ed\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34ee\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34f0\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"accepted_id_documents\": [\n            \"idSpain\",\n            \"NIE\",\n            \"passportEU\",\n            \"curpMex\",\n            \"quiron_NHC\",\n            \"residenceCard\"\n        ],\n        \"buttons\": [\n            {\n                \"design\": {\n                    \"icon\": {\n                        \"color\": \"#000000\"\n                    },\n                    \"background\": {\n                        \"color\": \"transparent\"\n                    },\n                    \"size\": 70,\n                    \"color\": \"#000000\",\n                    \"format\": \"transparent\",\n                    \"char\": \"e843\"\n                },\n                \"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\",\n                \"button_code\": \"56b4962b6aa9180b158b4567\",\n                \"label\": \"Policía\",\n                \"news_collection\": [],\n                \"optional\": false,\n                \"phone_collection\": [],\n                \"sequence\": 0,\n                \"social_collection\": [],\n                \"url\": \"914904070\",\n                \"url_collection\": []\n            },\n            {\n                \"design\": {\n                    \"icon\": {\n                        \"color\": \"#000000\"\n                    },\n                    \"background\": {\n                        \"color\": \"transparent\"\n                    },\n                    \"size\": 70,\n                    \"color\": \"#000000\",\n                    \"format\": \"transparent\",\n                    \"char\": \"e894\"\n                },\n                \"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\",\n                \"button_code\": \"56b4962b6aa9180b158b4568\",\n                \"label\": \"Web Municipal\",\n                \"news_collection\": [],\n                \"optional\": false,\n                \"phone_collection\": [],\n                \"sequence\": 1,\n                \"social_collection\": [],\n                \"url\": \"http://www.alcobendas.org\",\n                \"url_collection\": []\n            }\n        ],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5cb6e8833f960e8b457a\",\n                \"name\": \"Gestores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5d2101394ad80d8b45f5\",\n                \"name\": \"Técnicos Avisos\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"5e2f5d97e8833f980e8b456a\",\n                \"name\": \"Atención Ciudadana 02\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e21fee15c120d8b457b\",\n                \"name\": \"Solicitantes Internos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f61effee15c140d8b456b\",\n                \"name\": \"Gerentes de la ciudad\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e5f8c09c0faacdb048b459e\",\n                \"name\": \"Técnicos Inspecciones\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e5f8c5e3b5399d7048b45ee\",\n                \"name\": \"Gestores de la plataforma\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e73bd8502be88c10f8b4568\",\n                \"name\": \"Comunicación\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5ef5e3e59b223c01048b459a\",\n                \"name\": \"Inspectores\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5f05cb27265b64fb018b456b\",\n                \"name\": \"Consultor Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"61851b61390a87441f8b456d\",\n                \"name\": \"Gestor Inspecciones\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"61cc5de4fdad26a9108b4571\",\n                \"name\": \"Inspector Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66e1981d909d0b487108f6e2\",\n                \"name\": \"PRUEBA NUEVO 3\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66e1a8644ae6810b8f0b3b16\",\n                \"name\": \"PRUEBA NUEVO CANAL\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66e1a95c4ae6810b8f0b3b17\",\n                \"name\": \"Prueba con otro icon\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66ec2a230147faeb9a07f7a4\",\n                \"name\": \"Canal por icono\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66ec412eebf26f67e8017806\",\n                \"name\": \"Prueba 2 Canal por icono\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66ec41591a25ef58020e46fc\",\n                \"name\": \"Icono\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66ec5045adaf7ff7ee0afa61\",\n                \"name\": \"Canal sin icono\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66f326b19cdb7da2b50c3ac5\",\n                \"name\": \"testing\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66f47f443b7bc941a207e122\",\n                \"name\": \"PRUEBA POR ICONO\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66f480579ae3acf15d059a24\",\n                \"name\": \"icono\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66f481b99ae3acf15d059a25\",\n                \"name\": \"nombre interno\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66f482359ae3acf15d059a26\",\n                \"name\": \"rtrt\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66f482977b730a1565060107\",\n                \"name\": \"cvcv\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a3e935d16ea8ba023692\",\n                \"name\": \"Taxista\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a490ff6dc1826d02d533\",\n                \"name\": \"Bombero\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a4d16fb710a4340702e3\",\n                \"name\": \"Turista\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a53ce360bb733d012834\",\n                \"name\": \"Vida sana\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a56935d16ea8ba023693\",\n                \"name\": \"Turismo\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a59be360bb733d012835\",\n                \"name\": \"Ocio\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5be6fb710a4340702e4\",\n                \"name\": \"Danza\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"670e609d6dbebd893f09dda8\",\n                \"name\": \"prueba interno\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"670e61416be845d9b305453b\",\n                \"name\": \"prueba interno 1\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"670e83a2be3d8d43720fc222\",\n                \"name\": \"externo prueba\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"670e8ff3be0a96b3ad021cd2\",\n                \"name\": \"Prueba\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"670e90553ae05dcb6f088352\",\n                \"name\": \"interno de prueba sin icono\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"67116c98c26ab2478304d243\",\n                \"name\": \"Prueba Qa Icono\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"67116e885298e64e820d2f62\",\n                \"name\": \"Prueba Qa icono nuevo\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"671173ec2395a6b7df0bf935\",\n                \"name\": \"prueba231213232\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6711746bde27c0524e062683\",\n                \"name\": \"icono prueba aaa\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"671176042395a6b7df0bf936\",\n                \"name\": \"prueba icono 2\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"671179132395a6b7df0bf937\",\n                \"name\": \"Sonido\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"671ffea1405a78e44f089123\",\n                \"name\": \"buenas\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"672cbeb8b52e10d5900e6042\",\n                \"name\": \"Canal_obligatorio\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"672cc15beb6d0d86b20b80b2\",\n                \"name\": \"canal_obligatorio\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"672cde444b419fd019011795\",\n                \"name\": \"Prueba Global Channels\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"672d084c1daef4e30c09b762\",\n                \"name\": \"CANAL_OBLIGATORIO\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6738a3b069ce60555305a215\",\n                \"name\": \"global channel\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6738a45d69ce60555305a216\",\n                \"name\": \"channel global 2\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6738ab9a69ce60555305a217\",\n                \"name\": \"canal global 3\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6738ac474d2e5d4fa405a573\",\n                \"name\": \"canal global 4\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"673b2f790800c3a3200781c2\",\n                \"name\": \"asdasd\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"673b4e8f4d840322fd0af792\",\n                \"name\": \"global externa\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"673db80cff77ca803d07e126\",\n                \"name\": \"Test 1\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"673db84068b70779b5011b8e\",\n                \"name\": \"Test 2\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"673db8696b60131e9c0210a7\",\n                \"name\": \"Global Externo\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"681e02def44fde0de40a7372\",\n                \"name\": \"TestCrearCanal\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"682201462e7c5fccfd005939\",\n                \"name\": \"prueba1\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6822018233b2a2d5910ba782\",\n                \"name\": \"prueba1 epg\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"682347c1c505dac373064892\",\n                \"name\": \"test001-editado\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"68a47f13859d2dc5550eeae2\",\n                \"name\": \"pruebaaaa\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"68c00ca5a50dbd22a304a205\",\n                \"name\": \"empadronado\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"68d2908d67b58bbabb063e24\",\n                \"name\": \"prueba canal palomino\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"68d39ced54455c0df60b87f2\",\n                \"name\": \"Airess 2\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"68d55a3d89e2ce25a70069b4\",\n                \"name\": \"Airess 3\"\n            }\n        ],\n        \"company_emails\": [\n            \"comentarios.alcobendas@mejoratuciudad.org\"\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": 40.588856338396,\n                \"long\": -3.5502024713465\n            },\n            {\n                \"lat\": 40.501207353774,\n                \"long\": -3.701564402238\n            }\n        ],\n        \"geo_perimeter\": [\n            {\n                \"lat\": 40.524463274111,\n                \"long\": -3.6659115545395\n            },\n            {\n                \"lat\": 40.523955219525,\n                \"long\": -3.6659362768742\n            },\n            {\n                \"lat\": 40.523461366455,\n                \"long\": -3.6656992902163\n            },\n            {\n                \"lat\": 40.52326078878,\n                \"long\": -3.6656280068925\n            },\n            {\n                \"lat\": 40.523044804662,\n                \"long\": -3.66558821055\n            },\n            {\n                \"lat\": 40.52291172678,\n                \"long\": -3.6656067275224\n            },\n            {\n                \"lat\": 40.522744581326,\n                \"long\": -3.6656448705613\n            },\n            {\n                \"lat\": 40.522625107122,\n                \"long\": -3.6656477025535\n            },\n            {\n                \"lat\": 40.522549572398,\n                \"long\": -3.665639045663\n            },\n            {\n                \"lat\": 40.522492007824,\n                \"long\": -3.6656542955615\n            },\n            {\n                \"lat\": 40.522370693067,\n                \"long\": -3.665726407344\n            },\n            {\n                \"lat\": 40.522291865918,\n                \"long\": -3.6657732034008\n            },\n            {\n                \"lat\": 40.522180360786,\n                \"long\": -3.6658157802193\n            },\n            {\n                \"lat\": 40.521965449952,\n                \"long\": -3.6658711459712\n            },\n            {\n                \"lat\": 40.521767113703,\n                \"long\": -3.6659127450926\n            },\n            {\n                \"lat\": 40.521512733465,\n                \"long\": -3.6659855456036\n            },\n            {\n                \"lat\": 40.5211091969,\n                \"long\": -3.6661779909293\n            },\n            {\n                \"lat\": 40.520899365774,\n                \"long\": -3.6655237946213\n            },\n            {\n                \"lat\": 40.520835203172,\n                \"long\": -3.6653237704792\n            },\n            {\n                \"lat\": 40.520828477784,\n                \"long\": -3.665302690758\n            },\n            {\n                \"lat\": 40.520801219936,\n                \"long\": -3.6652176600822\n            },\n            {\n                \"lat\": 40.52079396218,\n                \"long\": -3.6651951584983\n            },\n            {\n                \"lat\": 40.520532174069,\n                \"long\": -3.6643790908715\n            },\n            {\n                \"lat\": 40.519811022579,\n                \"long\": -3.6638772352364\n            },\n            {\n                \"lat\": 40.519674542806,\n                \"long\": -3.6637822753505\n            },\n            {\n                \"lat\": 40.520028743367,\n                \"long\": -3.6628457333653\n            },\n            {\n                \"lat\": 40.519861573965,\n                \"long\": -3.6627609794771\n            },\n            {\n                \"lat\": 40.519833907347,\n                \"long\": -3.6627468951405\n            },\n            {\n                \"lat\": 40.517896688038,\n                \"long\": -3.6617644622241\n            },\n            {\n                \"lat\": 40.517262060619,\n                \"long\": -3.6614426861503\n            },\n            {\n                \"lat\": 40.51435158061,\n                \"long\": -3.6596130457616\n            },\n            {\n                \"lat\": 40.513589017791,\n                \"long\": -3.6591337822098\n            },\n            {\n                \"lat\": 40.513533434727,\n                \"long\": -3.6591176567617\n            },\n            {\n                \"lat\": 40.513331969626,\n                \"long\": -3.6590590254128\n            },\n            {\n                \"lat\": 40.511832508634,\n                \"long\": -3.6586229674127\n            },\n            {\n                \"lat\": 40.511664680158,\n                \"long\": -3.65857422907\n            },\n            {\n                \"lat\": 40.511608040614,\n                \"long\": -3.6583798603314\n            },\n            {\n                \"lat\": 40.511456496681,\n                \"long\": -3.6578603206557\n            },\n            {\n                \"lat\": 40.513093057661,\n                \"long\": -3.6561454131097\n            },\n            {\n                \"lat\": 40.513014344281,\n                \"long\": -3.6557284550411\n            },\n            {\n                \"lat\": 40.512813872487,\n                \"long\": -3.6546680569859\n            },\n            {\n                \"lat\": 40.512794366777,\n                \"long\": -3.6545649383251\n            },\n            {\n                \"lat\": 40.512784307284,\n                \"long\": -3.6545118415444\n            },\n            {\n                \"lat\": 40.512783696082,\n                \"long\": -3.654508412506\n            },\n            {\n                \"lat\": 40.512697360066,\n                \"long\": -3.6543706611923\n            },\n            {\n                \"lat\": 40.512689221896,\n                \"long\": -3.6543600767316\n            },\n            {\n                \"lat\": 40.512664383691,\n                \"long\": -3.6543235977437\n            },\n            {\n                \"lat\": 40.512663133875,\n                \"long\": -3.6543215789562\n            },\n            {\n                \"lat\": 40.512648312904,\n                \"long\": -3.6542979454183\n            },\n            {\n                \"lat\": 40.512642241315,\n                \"long\": -3.6542883253616\n            },\n            {\n                \"lat\": 40.512640902083,\n                \"long\": -3.6542861876688\n            },\n            {\n                \"lat\": 40.512622688648,\n                \"long\": -3.6542570914483\n            },\n            {\n                \"lat\": 40.51260608135,\n                \"long\": -3.6542307257156\n            },\n            {\n                \"lat\": 40.512594921067,\n                \"long\": -3.6542129116302\n            },\n            {\n                \"lat\": 40.512573047573,\n                \"long\": -3.6541778780091\n            },\n            {\n                \"lat\": 40.512571618922,\n                \"long\": -3.6541756214143\n            },\n            {\n                \"lat\": 40.512555638186,\n                \"long\": -3.6541499700349\n            },\n            {\n                \"lat\": 40.512531531944,\n                \"long\": -3.6541114916755\n            },\n            {\n                \"lat\": 40.512516175769,\n                \"long\": -3.6540869087313\n            },\n            {\n                \"lat\": 40.512501713082,\n                \"long\": -3.6540636328902\n            },\n            {\n                \"lat\": 40.512486892725,\n                \"long\": -3.6540398814348\n            },\n            {\n                \"lat\": 40.512475821828,\n                \"long\": -3.6540221863185\n            },\n            {\n                \"lat\": 40.512458947563,\n                \"long\": -3.6539952279218\n            },\n            {\n                \"lat\": 40.512424663853,\n                \"long\": -3.6539403616726\n            },\n            {\n                \"lat\": 40.512385558984,\n                \"long\": -3.6538777762368\n            },\n            {\n                \"lat\": 40.512369489432,\n                \"long\": -3.6538518880625\n            },\n            {\n                \"lat\": 40.512236104304,\n                \"long\": -3.6536383622384\n            },\n            {\n                \"lat\": 40.512125486001,\n                \"long\": -3.653461177468\n            },\n            {\n                \"lat\": 40.51209843411,\n                \"long\": -3.6534178315094\n            },\n            {\n                \"lat\": 40.512064150052,\n                \"long\": -3.65336297765\n            },\n            {\n                \"lat\": 40.51204718688,\n                \"long\": -3.6533357826483\n            },\n            {\n                \"lat\": 40.512040580043,\n                \"long\": -3.6533252132781\n            },\n            {\n                \"lat\": 40.51203129537,\n                \"long\": -3.6533102505716\n            },\n            {\n                \"lat\": 40.512003171753,\n                \"long\": -3.6532652418242\n            },\n            {\n                \"lat\": 40.51195888833,\n                \"long\": -3.6531943443802\n            },\n            {\n                \"lat\": 40.511944693042,\n                \"long\": -3.6531715436644\n            },\n            {\n                \"lat\": 40.511927015155,\n                \"long\": -3.6531432794983\n            },\n            {\n                \"lat\": 40.511900855979,\n                \"long\": -3.6531013588919\n            },\n            {\n                \"lat\": 40.511884071578,\n                \"long\": -3.6530744018293\n            },\n            {\n                \"lat\": 40.51181353939,\n                \"long\": -3.6529614652345\n            },\n            {\n                \"lat\": 40.511798808219,\n                \"long\": -3.652937833167\n            },\n            {\n                \"lat\": 40.511795504448,\n                \"long\": -3.6529326075353\n            },\n            {\n                \"lat\": 40.51178425521,\n                \"long\": -3.652914556946\n            },\n            {\n                \"lat\": 40.511766934928,\n                \"long\": -3.6528867685274\n            },\n            {\n                \"lat\": 40.511692929614,\n                \"long\": -3.6527682509613\n            },\n            {\n                \"lat\": 40.511677394311,\n                \"long\": -3.6527434308227\n            },\n            {\n                \"lat\": 40.511663377101,\n                \"long\": -3.652720986132\n            },\n            {\n                \"lat\": 40.511636860765,\n                \"long\": -3.652678472213\n            },\n            {\n                \"lat\": 40.51161882575,\n                \"long\": -3.6526496146651\n            },\n            {\n                \"lat\": 40.511598559287,\n                \"long\": -3.6526170763923\n            },\n            {\n                \"lat\": 40.511585345477,\n                \"long\": -3.6525959379353\n            },\n            {\n                \"lat\": 40.511582131775,\n                \"long\": -3.6525907132103\n            },\n            {\n                \"lat\": 40.511570614896,\n                \"long\": -3.6525721879984\n            },\n            {\n                \"lat\": 40.511555704141,\n                \"long\": -3.6525484363254\n            },\n            {\n                \"lat\": 40.511547043955,\n                \"long\": -3.6525345422084\n            },\n            {\n                \"lat\": 40.511531062179,\n                \"long\": -3.6525090096366\n            },\n            {\n                \"lat\": 40.511507581302,\n                \"long\": -3.6524713647638\n            },\n            {\n                \"lat\": 40.511491867765,\n                \"long\": -3.6524461889285\n            },\n            {\n                \"lat\": 40.511477492824,\n                \"long\": -3.6524232687527\n            },\n            {\n                \"lat\": 40.511451334047,\n                \"long\": -3.652381230676\n            },\n            {\n                \"lat\": 40.511435352236,\n                \"long\": -3.6523556981768\n            },\n            {\n                \"lat\": 40.511388719408,\n                \"long\": -3.6523657514053\n            },\n            {\n                \"lat\": 40.511117673243,\n                \"long\": -3.6524239126423\n            },\n            {\n                \"lat\": 40.511074656382,\n                \"long\": -3.6517452796684\n            },\n            {\n                \"lat\": 40.510969358262,\n                \"long\": -3.6506713374725\n            },\n            {\n                \"lat\": 40.510825277064,\n                \"long\": -3.6492188422787\n            },\n            {\n                \"lat\": 40.510797102171,\n                \"long\": -3.6490383321687\n            },\n            {\n                \"lat\": 40.510773878055,\n                \"long\": -3.6489387234016\n            },\n            {\n                \"lat\": 40.510746060218,\n                \"long\": -3.6488389523923\n            },\n            {\n                \"lat\": 40.510680022854,\n                \"long\": -3.6486467465439\n            },\n            {\n                \"lat\": 40.510423203314,\n                \"long\": -3.6480000560664\n            },\n            {\n                \"lat\": 40.510360150364,\n                \"long\": -3.6478859008551\n            },\n            {\n                \"lat\": 40.510311556083,\n                \"long\": -3.6478120163628\n            },\n            {\n                \"lat\": 40.510253683071,\n                \"long\": -3.6477380426981\n            },\n            {\n                \"lat\": 40.510162066645,\n                \"long\": -3.6476408460809\n            },\n            {\n                \"lat\": 40.510054109404,\n                \"long\": -3.6475015908287\n            },\n            {\n                \"lat\": 40.51002414609,\n                \"long\": -3.6474629419194\n            },\n            {\n                \"lat\": 40.509986659478,\n                \"long\": -3.647432482994\n            },\n            {\n                \"lat\": 40.509856712425,\n                \"long\": -3.6473267861506\n            },\n            {\n                \"lat\": 40.509096491841,\n                \"long\": -3.6465484955631\n            },\n            {\n                \"lat\": 40.508845867808,\n                \"long\": -3.646290091404\n            },\n            {\n                \"lat\": 40.508741001774,\n                \"long\": -3.6461616115271\n            },\n            {\n                \"lat\": 40.508675592914,\n                \"long\": -3.6460817852013\n            },\n            {\n                \"lat\": 40.508594484198,\n                \"long\": -3.6459740712244\n            },\n            {\n                \"lat\": 40.508481719683,\n                \"long\": -3.6458241530746\n            },\n            {\n                \"lat\": 40.508446511382,\n                \"long\": -3.6457728262792\n            },\n            {\n                \"lat\": 40.508421812983,\n                \"long\": -3.6457430818301\n            },\n            {\n                \"lat\": 40.508374158757,\n                \"long\": -3.645678062297\n            },\n            {\n                \"lat\": 40.508318872628,\n                \"long\": -3.6455923144228\n            },\n            {\n                \"lat\": 40.508282409873,\n                \"long\": -3.6455236254481\n            },\n            {\n                \"lat\": 40.508217860324,\n                \"long\": -3.6454189042412\n            },\n            {\n                \"lat\": 40.508162790351,\n                \"long\": -3.6453266790213\n            },\n            {\n                \"lat\": 40.508029262999,\n                \"long\": -3.6451035037095\n            },\n            {\n                \"lat\": 40.507930456253,\n                \"long\": -3.6449060381621\n            },\n            {\n                \"lat\": 40.507882086206,\n                \"long\": -3.644809381014\n            },\n            {\n                \"lat\": 40.507920764346,\n                \"long\": -3.6447055316053\n            },\n            {\n                \"lat\": 40.508032765353,\n                \"long\": -3.6444273463991\n            },\n            {\n                \"lat\": 40.508067570565,\n                \"long\": -3.6443410458738\n            },\n            {\n                \"lat\": 40.50809420219,\n                \"long\": -3.6442988101075\n            },\n            {\n                \"lat\": 40.508060796319,\n                \"long\": -3.6442149255041\n            },\n            {\n                \"lat\": 40.50802174742,\n                \"long\": -3.6440443651733\n            },\n            {\n                \"lat\": 40.507999864319,\n                \"long\": -3.643913497263\n            },\n            {\n                \"lat\": 40.507937332715,\n                \"long\": -3.6434623813009\n            },\n            {\n                \"lat\": 40.507930249338,\n                \"long\": -3.6433916140489\n            },\n            {\n                \"lat\": 40.507934118692,\n                \"long\": -3.6433115091262\n            },\n            {\n                \"lat\": 40.507966398292,\n                \"long\": -3.6431446879893\n            },\n            {\n                \"lat\": 40.508072217771,\n                \"long\": -3.6427786269716\n            },\n            {\n                \"lat\": 40.50814056946,\n                \"long\": -3.6425241112124\n            },\n            {\n                \"lat\": 40.508173895483,\n                \"long\": -3.6423633186842\n            },\n            {\n                \"lat\": 40.508193344347,\n                \"long\": -3.6422031018003\n            },\n            {\n                \"lat\": 40.50818358637,\n                \"long\": -3.6420298590747\n            },\n            {\n                \"lat\": 40.508182270259,\n                \"long\": -3.6420073028417\n            },\n            {\n                \"lat\": 40.508148732162,\n                \"long\": -3.6415738140544\n            },\n            {\n                \"lat\": 40.508137792013,\n                \"long\": -3.6414510769688\n            },\n            {\n                \"lat\": 40.508112707513,\n                \"long\": -3.641344611302\n            },\n            {\n                \"lat\": 40.508060347408,\n                \"long\": -3.6411693225652\n            },\n            {\n                \"lat\": 40.508024017151,\n                \"long\": -3.6410600353649\n            },\n            {\n                \"lat\": 40.50799825535,\n                \"long\": -3.6410756060051\n            },\n            {\n                \"lat\": 40.50798513637,\n                \"long\": -3.6409070531201\n            },\n            {\n                \"lat\": 40.507967815894,\n                \"long\": -3.6406838127118\n            },\n            {\n                \"lat\": 40.507959380605,\n                \"long\": -3.6405803387165\n            },\n            {\n                \"lat\": 40.507946176049,\n                \"long\": -3.6404108409742\n            },\n            {\n                \"lat\": 40.507937430025,\n                \"long\": -3.6402967414509\n            },\n            {\n                \"lat\": 40.507919549031,\n                \"long\": -3.6400606308317\n            },\n            {\n                \"lat\": 40.507876451023,\n                \"long\": -3.6395300456392\n            },\n            {\n                \"lat\": 40.507873215724,\n                \"long\": -3.6392355320118\n            },\n            {\n                \"lat\": 40.507870795003,\n                \"long\": -3.6389401999362\n            },\n            {\n                \"lat\": 40.507869617758,\n                \"long\": -3.6388272348079\n            },\n            {\n                \"lat\": 40.507867652712,\n                \"long\": -3.6386285848063\n            },\n            {\n                \"lat\": 40.507867878214,\n                \"long\": -3.6385551727769\n            },\n            {\n                \"lat\": 40.50786973219,\n                \"long\": -3.6379748407148\n            },\n            {\n                \"lat\": 40.507869751085,\n                \"long\": -3.6379714180466\n            },\n            {\n                \"lat\": 40.507870983706,\n                \"long\": -3.6376011720695\n            },\n            {\n                \"lat\": 40.507871016044,\n                \"long\": -3.6375789828826\n            },\n            {\n                \"lat\": 40.507848238093,\n                \"long\": -3.6373803601197\n            },\n            {\n                \"lat\": 40.507826476333,\n                \"long\": -3.6346050882078\n            },\n            {\n                \"lat\": 40.507822256172,\n                \"long\": -3.6340609340687\n            },\n            {\n                \"lat\": 40.507819451704,\n                \"long\": -3.6337017449773\n            },\n            {\n                \"lat\": 40.507814621962,\n                \"long\": -3.6336789198939\n            },\n            {\n                \"lat\": 40.50780199679,\n                \"long\": -3.6336319435049\n            },\n            {\n                \"lat\": 40.507792333528,\n                \"long\": -3.6336034075464\n            },\n            {\n                \"lat\": 40.507782055196,\n                \"long\": -3.63357203311\n            },\n            {\n                \"lat\": 40.507768575868,\n                \"long\": -3.6335329566727\n            },\n            {\n                \"lat\": 40.507755342195,\n                \"long\": -3.6334983676656\n            },\n            {\n                \"lat\": 40.507736679988,\n                \"long\": -3.633451570608\n            },\n            {\n                \"lat\": 40.507720120924,\n                \"long\": -3.6334155339992\n            },\n            {\n                \"lat\": 40.507707968397,\n                \"long\": -3.6333973612352\n            },\n            {\n                \"lat\": 40.507700819851,\n                \"long\": -3.6333866713771\n            },\n            {\n                \"lat\": 40.507670252028,\n                \"long\": -3.6333259530107\n            },\n            {\n                \"lat\": 40.507651550232,\n                \"long\": -3.6332863672504\n            },\n            {\n                \"lat\": 40.507638191934,\n                \"long\": -3.6332416267007\n            },\n            {\n                \"lat\": 40.507631234603,\n                \"long\": -3.6331795961344\n            },\n            {\n                \"lat\": 40.507633457018,\n                \"long\": -3.6331357103153\n            },\n            {\n                \"lat\": 40.507633932659,\n                \"long\": -3.6331311116644\n            },\n            {\n                \"lat\": 40.507667137645,\n                \"long\": -3.63294068926\n            },\n            {\n                \"lat\": 40.507807830782,\n                \"long\": -3.632484767124\n            },\n            {\n                \"lat\": 40.507972476355,\n                \"long\": -3.6319482177899\n            },\n            {\n                \"lat\": 40.508107986232,\n                \"long\": -3.6314987463217\n            },\n            {\n                \"lat\": 40.508114868343,\n                \"long\": -3.6314757950905\n            },\n            {\n                \"lat\": 40.508282316832,\n                \"long\": -3.6309200282187\n            },\n            {\n                \"lat\": 40.508426696493,\n                \"long\": -3.6303648687906\n            },\n            {\n                \"lat\": 40.508394432371,\n                \"long\": -3.6298714484731\n            },\n            {\n                \"lat\": 40.508334805688,\n                \"long\": -3.629290418772\n            },\n            {\n                \"lat\": 40.508256449828,\n                \"long\": -3.6286408876616\n            },\n            {\n                \"lat\": 40.508250400727,\n                \"long\": -3.6285439286161\n            },\n            {\n                \"lat\": 40.508403038169,\n                \"long\": -3.6279906117949\n            },\n            {\n                \"lat\": 40.508457045546,\n                \"long\": -3.6278333090887\n            },\n            {\n                \"lat\": 40.508648017059,\n                \"long\": -3.6274218766436\n            },\n            {\n                \"lat\": 40.508655756919,\n                \"long\": -3.6274067228245\n            },\n            {\n                \"lat\": 40.508895337669,\n                \"long\": -3.626935769093\n            },\n            {\n                \"lat\": 40.508919403671,\n                \"long\": -3.6268837054316\n            },\n            {\n                \"lat\": 40.508945789444,\n                \"long\": -3.6268357944222\n            },\n            {\n                \"lat\": 40.50895470545,\n                \"long\": -3.6268197071705\n            },\n            {\n                \"lat\": 40.509077119022,\n                \"long\": -3.626555512411\n            },\n            {\n                \"lat\": 40.509181282036,\n                \"long\": -3.6263690477342\n            },\n            {\n                \"lat\": 40.509259989419,\n                \"long\": -3.6261253363995\n            },\n            {\n                \"lat\": 40.509312207925,\n                \"long\": -3.6259651807981\n            },\n            {\n                \"lat\": 40.509342694643,\n                \"long\": -3.6258087297871\n            },\n            {\n                \"lat\": 40.509418757545,\n                \"long\": -3.6253376630514\n            },\n            {\n                \"lat\": 40.509421927084,\n                \"long\": -3.6253179811519\n            },\n            {\n                \"lat\": 40.509410902075,\n                \"long\": -3.6252410399369\n            },\n            {\n                \"lat\": 40.509362375701,\n                \"long\": -3.6249020738221\n            },\n            {\n                \"lat\": 40.509347743091,\n                \"long\": -3.6248091649591\n            },\n            {\n                \"lat\": 40.509306051192,\n                \"long\": -3.6246389302827\n            },\n            {\n                \"lat\": 40.509266591322,\n                \"long\": -3.6244723873071\n            },\n            {\n                \"lat\": 40.509231499055,\n                \"long\": -3.6243311319995\n            },\n            {\n                \"lat\": 40.509209545531,\n                \"long\": -3.6242425227266\n            },\n            {\n                \"lat\": 40.509150902831,\n                \"long\": -3.6240246829469\n            },\n            {\n                \"lat\": 40.509099981767,\n                \"long\": -3.6238282787828\n            },\n            {\n                \"lat\": 40.509094853697,\n                \"long\": -3.6238102904892\n            },\n            {\n                \"lat\": 40.50908556873,\n                \"long\": -3.6237779818821\n            },\n            {\n                \"lat\": 40.509033306445,\n                \"long\": -3.6235963195845\n            },\n            {\n                \"lat\": 40.50903118489,\n                \"long\": -3.6235721035155\n            },\n            {\n                \"lat\": 40.509020615488,\n                \"long\": -3.6232267759089\n            },\n            {\n                \"lat\": 40.509024943879,\n                \"long\": -3.6227581137077\n            },\n            {\n                \"lat\": 40.509063617888,\n                \"long\": -3.6226363089988\n            },\n            {\n                \"lat\": 40.509150514577,\n                \"long\": -3.6223743745219\n            },\n            {\n                \"lat\": 40.509159055007,\n                \"long\": -3.6223609978817\n            },\n            {\n                \"lat\": 40.509234370851,\n                \"long\": -3.6222436624831\n            },\n            {\n                \"lat\": 40.50931040789,\n                \"long\": -3.6221262154554\n            },\n            {\n                \"lat\": 40.50939098653,\n                \"long\": -3.6220018462404\n            },\n            {\n                \"lat\": 40.509384116072,\n                \"long\": -3.6219895074415\n            },\n            {\n                \"lat\": 40.509453274437,\n                \"long\": -3.62191141903\n            },\n            {\n                \"lat\": 40.509458075607,\n                \"long\": -3.6219065060368\n            },\n            {\n                \"lat\": 40.509523928623,\n                \"long\": -3.6218399540772\n            },\n            {\n                \"lat\": 40.50953162838,\n                \"long\": -3.6218321170431\n            },\n            {\n                \"lat\": 40.50957470379,\n                \"long\": -3.621779518439\n            },\n            {\n                \"lat\": 40.509813057691,\n                \"long\": -3.6215324466909\n            },\n            {\n                \"lat\": 40.509880652617,\n                \"long\": -3.6214434838665\n            },\n            {\n                \"lat\": 40.509940984756,\n                \"long\": -3.6213464275916\n            },\n            {\n                \"lat\": 40.510007333613,\n                \"long\": -3.621221098742\n            },\n            {\n                \"lat\": 40.510032892343,\n                \"long\": -3.6211422524406\n            },\n            {\n                \"lat\": 40.510038663477,\n                \"long\": -3.6211244826947\n            },\n            {\n                \"lat\": 40.510125225132,\n                \"long\": -3.6208756410751\n            },\n            {\n                \"lat\": 40.510133123257,\n                \"long\": -3.6208141005642\n            },\n            {\n                \"lat\": 40.510154909023,\n                \"long\": -3.620599008761\n            },\n            {\n                \"lat\": 40.510166626415,\n                \"long\": -3.620480493309\n            },\n            {\n                \"lat\": 40.510169784892,\n                \"long\": -3.6204459386605\n            },\n            {\n                \"lat\": 40.510174203807,\n                \"long\": -3.6203947529269\n            },\n            {\n                \"lat\": 40.510176897261,\n                \"long\": -3.6203629087516\n            },\n            {\n                \"lat\": 40.510190056773,\n                \"long\": -3.6202106489686\n            },\n            {\n                \"lat\": 40.51019101893,\n                \"long\": -3.6201824478625\n            },\n            {\n                \"lat\": 40.510177094287,\n                \"long\": -3.6200240486953\n            },\n            {\n                \"lat\": 40.510141377778,\n                \"long\": -3.6196958233336\n            },\n            {\n                \"lat\": 40.510140346129,\n                \"long\": -3.6196866072425\n            },\n            {\n                \"lat\": 40.510131372195,\n                \"long\": -3.6195624716936\n            },\n            {\n                \"lat\": 40.510107931115,\n                \"long\": -3.6192632778462\n            },\n            {\n                \"lat\": 40.510101138749,\n                \"long\": -3.6190849852394\n            },\n            {\n                \"lat\": 40.510100384893,\n                \"long\": -3.6190743553193\n            },\n            {\n                \"lat\": 40.510083331066,\n                \"long\": -3.6188439157868\n            },\n            {\n                \"lat\": 40.510071084601,\n                \"long\": -3.6186914342239\n            },\n            {\n                \"lat\": 40.510059549274,\n                \"long\": -3.6184060421482\n            },\n            {\n                \"lat\": 40.510059313758,\n                \"long\": -3.6183995481629\n            },\n            {\n                \"lat\": 40.510063689905,\n                \"long\": -3.6183225127269\n            },\n            {\n                \"lat\": 40.510070002817,\n                \"long\": -3.6182707541603\n            },\n            {\n                \"lat\": 40.510090804592,\n                \"long\": -3.6181376857458\n            },\n            {\n                \"lat\": 40.51009295439,\n                \"long\": -3.6181063086585\n            },\n            {\n                \"lat\": 40.510096402613,\n                \"long\": -3.618067979532\n            },\n            {\n                \"lat\": 40.510097766248,\n                \"long\": -3.6180319919278\n            },\n            {\n                \"lat\": 40.510108157669,\n                \"long\": -3.6178913917388\n            },\n            {\n                \"lat\": 40.510106921884,\n                \"long\": -3.6178697803188\n            },\n            {\n                \"lat\": 40.510102699568,\n                \"long\": -3.617833859472\n            },\n            {\n                \"lat\": 40.510099294945,\n                \"long\": -3.6177966477686\n            },\n            {\n                \"lat\": 40.510098952904,\n                \"long\": -3.617793221667\n            },\n            {\n                \"lat\": 40.510086601893,\n                \"long\": -3.6177106031322\n            },\n            {\n                \"lat\": 40.510100607443,\n                \"long\": -3.6176859446726\n            },\n            {\n                \"lat\": 40.510104700374,\n                \"long\": -3.6176786641683\n            },\n            {\n                \"lat\": 40.510157571373,\n                \"long\": -3.6175611159789\n            },\n            {\n                \"lat\": 40.51023716457,\n                \"long\": -3.6173842058109\n            },\n            {\n                \"lat\": 40.510313256042,\n                \"long\": -3.6172219110861\n            },\n            {\n                \"lat\": 40.510361279785,\n                \"long\": -3.6171195440819\n            },\n            {\n                \"lat\": 40.510463389128,\n                \"long\": -3.6169267866048\n            },\n            {\n                \"lat\": 40.510505382591,\n                \"long\": -3.6168401804523\n            },\n            {\n                \"lat\": 40.510643187535,\n                \"long\": -3.6165253477002\n            },\n            {\n                \"lat\": 40.51069761419,\n                \"long\": -3.6164047430199\n            },\n            {\n                \"lat\": 40.51079288337,\n                \"long\": -3.6161936255496\n            },\n            {\n                \"lat\": 40.510812396899,\n                \"long\": -3.6161496592814\n            },\n            {\n                \"lat\": 40.510828203519,\n                \"long\": -3.6161064853028\n            },\n            {\n                \"lat\": 40.510855118117,\n                \"long\": -3.616009235111\n            },\n            {\n                \"lat\": 40.510919960257,\n                \"long\": -3.6157598310956\n            },\n            {\n                \"lat\": 40.51092813922,\n                \"long\": -3.6157127038499\n            },\n            {\n                \"lat\": 40.51094388954,\n                \"long\": -3.6155802949571\n            },\n            {\n                \"lat\": 40.510967717225,\n                \"long\": -3.6153521156499\n            },\n            {\n                \"lat\": 40.510968477499,\n                \"long\": -3.6153446864117\n            },\n            {\n                \"lat\": 40.51097795532,\n                \"long\": -3.6151550912104\n            },\n            {\n                \"lat\": 40.510975866068,\n                \"long\": -3.6150906251487\n            },\n            {\n                \"lat\": 40.510971751193,\n                \"long\": -3.6150512819832\n            },\n            {\n                \"lat\": 40.510970553453,\n                \"long\": -3.6150393495318\n            },\n            {\n                \"lat\": 40.510967588564,\n                \"long\": -3.6150209090256\n            },\n            {\n                \"lat\": 40.510962686404,\n                \"long\": -3.6149940703572\n            },\n            {\n                \"lat\": 40.51086988231,\n                \"long\": -3.6146746472521\n            },\n            {\n                \"lat\": 40.51076450004,\n                \"long\": -3.6144163818797\n            },\n            {\n                \"lat\": 40.510675569663,\n                \"long\": -3.6141983872418\n            },\n            {\n                \"lat\": 40.510462428361,\n                \"long\": -3.6142304363359\n            },\n            {\n                \"lat\": 40.510263646661,\n                \"long\": -3.6142066683839\n            },\n            {\n                \"lat\": 40.510055309912,\n                \"long\": -3.6140127276612\n            },\n            {\n                \"lat\": 40.509901268108,\n                \"long\": -3.6138411192833\n            },\n            {\n                \"lat\": 40.509643712921,\n                \"long\": -3.6134490396187\n            },\n            {\n                \"lat\": 40.509437898993,\n                \"long\": -3.6131699068859\n            },\n            {\n                \"lat\": 40.509297103649,\n                \"long\": -3.6129294920653\n            },\n            {\n                \"lat\": 40.509163368287,\n                \"long\": -3.6126147826132\n            },\n            {\n                \"lat\": 40.509085234551,\n                \"long\": -3.6123477926898\n            },\n            {\n                \"lat\": 40.5090382682,\n                \"long\": -3.6120643381046\n            },\n            {\n                \"lat\": 40.508975434056,\n                \"long\": -3.6117319810082\n            },\n            {\n                \"lat\": 40.508941360886,\n                \"long\": -3.6114462719851\n            },\n            {\n                \"lat\": 40.508946608086,\n                \"long\": -3.611237758515\n            },\n            {\n                \"lat\": 40.50892325366,\n                \"long\": -3.611190688104\n            },\n            {\n                \"lat\": 40.508860232649,\n                \"long\": -3.6110635984839\n            },\n            {\n                \"lat\": 40.508789187523,\n                \"long\": -3.6109206083383\n            },\n            {\n                \"lat\": 40.508686086576,\n                \"long\": -3.6107916093924\n            },\n            {\n                \"lat\": 40.508556819603,\n                \"long\": -3.6106889303676\n            },\n            {\n                \"lat\": 40.508400816762,\n                \"long\": -3.6104953620332\n            },\n            {\n                \"lat\": 40.508226000163,\n                \"long\": -3.6102989093614\n            },\n            {\n                \"lat\": 40.508032251041,\n                \"long\": -3.6101050008262\n            },\n            {\n                \"lat\": 40.507948894759,\n                \"long\": -3.6100412295144\n            },\n            {\n                \"lat\": 40.507866324215,\n                \"long\": -3.6099480643797\n            },\n            {\n                \"lat\": 40.507701182892,\n                \"long\": -3.609761734797\n            },\n            {\n                \"lat\": 40.50754426514,\n                \"long\": -3.6095705233826\n            },\n            {\n                \"lat\": 40.507499570636,\n                \"long\": -3.6095041406909\n            },\n            {\n                \"lat\": 40.507367900513,\n                \"long\": -3.6093085558406\n            },\n            {\n                \"lat\": 40.507225925868,\n                \"long\": -3.6090681458471\n            },\n            {\n                \"lat\": 40.506984729897,\n                \"long\": -3.6087159053261\n            },\n            {\n                \"lat\": 40.506817437014,\n                \"long\": -3.6084587452948\n            },\n            {\n                \"lat\": 40.506595413886,\n                \"long\": -3.6080732688075\n            },\n            {\n                \"lat\": 40.506435844744,\n                \"long\": -3.6077518687869\n            },\n            {\n                \"lat\": 40.506402414764,\n                \"long\": -3.6076846458575\n            },\n            {\n                \"lat\": 40.506261914413,\n                \"long\": -3.6073344914022\n            },\n            {\n                \"lat\": 40.506162918909,\n                \"long\": -3.6071263441822\n            },\n            {\n                \"lat\": 40.506139422096,\n                \"long\": -3.6070546083716\n            },\n            {\n                \"lat\": 40.506108387645,\n                \"long\": -3.6069600255942\n            },\n            {\n                \"lat\": 40.506055160583,\n                \"long\": -3.606871262206\n            },\n            {\n                \"lat\": 40.506019668887,\n                \"long\": -3.6068191288519\n            },\n            {\n                \"lat\": 40.506009119414,\n                \"long\": -3.6068036903843\n            },\n            {\n                \"lat\": 40.505891355585,\n                \"long\": -3.6066525119553\n            },\n            {\n                \"lat\": 40.50576901214,\n                \"long\": -3.6064984483862\n            },\n            {\n                \"lat\": 40.505622584806,\n                \"long\": -3.6063500697603\n            },\n            {\n                \"lat\": 40.50551849046,\n                \"long\": -3.606237716535\n            },\n            {\n                \"lat\": 40.50550013542,\n                \"long\": -3.6062178410639\n            },\n            {\n                \"lat\": 40.505487862484,\n                \"long\": -3.6062046297713\n            },\n            {\n                \"lat\": 40.505478233905,\n                \"long\": -3.6062025366539\n            },\n            {\n                \"lat\": 40.504976633862,\n                \"long\": -3.6060961656822\n            },\n            {\n                \"lat\": 40.504550195659,\n                \"long\": -3.6060189164578\n            },\n            {\n                \"lat\": 40.504465572673,\n                \"long\": -3.6060416414711\n            },\n            {\n                \"lat\": 40.504269579535,\n                \"long\": -3.6059839463031\n            },\n            {\n                \"lat\": 40.504099469109,\n                \"long\": -3.6058678152985\n            },\n            {\n                \"lat\": 40.503827782645,\n                \"long\": -3.6056571794517\n            },\n            {\n                \"lat\": 40.503800616122,\n                \"long\": -3.6056322684567\n            },\n            {\n                \"lat\": 40.503600500937,\n                \"long\": -3.605448242825\n            },\n            {\n                \"lat\": 40.50347341296,\n                \"long\": -3.6052708938233\n            },\n            {\n                \"lat\": 40.503367541539,\n                \"long\": -3.6051019976507\n            },\n            {\n                \"lat\": 40.503208575277,\n                \"long\": -3.604904783825\n            },\n            {\n                \"lat\": 40.503126512091,\n                \"long\": -3.6047827210158\n            },\n            {\n                \"lat\": 40.503036965473,\n                \"long\": -3.6046118486905\n            },\n            {\n                \"lat\": 40.50301930193,\n                \"long\": -3.6046302193603\n            },\n            {\n                \"lat\": 40.501759017031,\n                \"long\": -3.6033248409118\n            },\n            {\n                \"lat\": 40.501444036995,\n                \"long\": -3.6027793835803\n            },\n            {\n                \"lat\": 40.501356195305,\n                \"long\": -3.6027802495396\n            },\n            {\n                \"lat\": 40.501361279974,\n                \"long\": -3.6026690041452\n            },\n            {\n                \"lat\": 40.501342040871,\n                \"long\": -3.6024712700032\n            },\n            {\n                \"lat\": 40.501330056571,\n                \"long\": -3.6021778883593\n            },\n            {\n                \"lat\": 40.501371124946,\n                \"long\": -3.6020765241321\n            },\n            {\n                \"lat\": 40.501412162495,\n                \"long\": -3.6019810604068\n            },\n            {\n                \"lat\": 40.501459946735,\n                \"long\": -3.6018857748851\n            },\n            {\n                \"lat\": 40.501487533413,\n                \"long\": -3.6017782708794\n            },\n            {\n                \"lat\": 40.501508488263,\n                \"long\": -3.60164676164\n            },\n            {\n                \"lat\": 40.50153607472,\n                \"long\": -3.6015392574563\n            },\n            {\n                \"lat\": 40.501594059319,\n                \"long\": -3.6014590508794\n            },\n            {\n                \"lat\": 40.501648359808,\n                \"long\": -3.6014116203895\n            },\n            {\n                \"lat\": 40.501682328464,\n                \"long\": -3.6013760461408\n            },\n            {\n                \"lat\": 40.501702846961,\n                \"long\": -3.6013283138563\n            },\n            {\n                \"lat\": 40.501710194647,\n                \"long\": -3.6012147276088\n            },\n            {\n                \"lat\": 40.501697534529,\n                \"long\": -3.6010506868464\n            },\n            {\n                \"lat\": 40.501691202235,\n                \"long\": -3.6009690795329\n            },\n            {\n                \"lat\": 40.501678342977,\n                \"long\": -3.6008432750767\n            },\n            {\n                \"lat\": 40.501692384618,\n                \"long\": -3.6007416684023\n            },\n            {\n                \"lat\": 40.501747462541,\n                \"long\": -3.6005445965964\n            },\n            {\n                \"lat\": 40.501802259943,\n                \"long\": -3.6004014565177\n            },\n            {\n                \"lat\": 40.501823430899,\n                \"long\": -3.6002280396998\n            },\n            {\n                \"lat\": 40.501790612278,\n                \"long\": -3.60004223359\n            },\n            {\n                \"lat\": 40.501686973512,\n                \"long\": -3.5998409146655\n            },\n            {\n                \"lat\": 40.501687439629,\n                \"long\": -3.5997511067297\n            },\n            {\n                \"lat\": 40.501701821987,\n                \"long\": -3.5995836485005\n            },\n            {\n                \"lat\": 40.501722494641,\n                \"long\": -3.5995060583268\n            },\n            {\n                \"lat\": 40.501716204104,\n                \"long\": -3.5994161901968\n            },\n            {\n                \"lat\": 40.501649726481,\n                \"long\": -3.5992061157096\n            },\n            {\n                \"lat\": 40.501596419921,\n                \"long\": -3.599062013037\n            },\n            {\n                \"lat\": 40.501529414455,\n                \"long\": -3.5989536662998\n            },\n            {\n                \"lat\": 40.501455559476,\n                \"long\": -3.5988632094214\n            },\n            {\n                \"lat\": 40.501428905696,\n                \"long\": -3.598791217405\n            },\n            {\n                \"lat\": 40.501429432743,\n                \"long\": -3.5986894905207\n            },\n            {\n                \"lat\": 40.501403027643,\n                \"long\": -3.5985694674781\n            },\n            {\n                \"lat\": 40.501363109014,\n                \"long\": -3.5984494424535\n            },\n            {\n                \"lat\": 40.501290740591,\n                \"long\": -3.5980717323803\n            },\n            {\n                \"lat\": 40.501265358935,\n                \"long\": -3.5977363364666\n            },\n            {\n                \"lat\": 40.501251402851,\n                \"long\": -3.5971946409082\n            },\n            {\n                \"lat\": 40.501239250927,\n                \"long\": -3.5969311175552\n            },\n            {\n                \"lat\": 40.501207353774,\n                \"long\": -3.5965658061206\n            },\n            {\n                \"lat\": 40.501222587756,\n                \"long\": -3.5962306645675\n            },\n            {\n                \"lat\": 40.501298790768,\n                \"long\": -3.5958663100741\n            },\n            {\n                \"lat\": 40.501357637645,\n                \"long\": -3.5956005822934\n            },\n            {\n                \"lat\": 40.501365103752,\n                \"long\": -3.5954629213669\n            },\n            {\n                \"lat\": 40.501325736895,\n                \"long\": -3.5952351527824\n            },\n            {\n                \"lat\": 40.501259405962,\n                \"long\": -3.5949951084011\n            },\n            {\n                \"lat\": 40.501259682954,\n                \"long\": -3.5949413065431\n            },\n            {\n                \"lat\": 40.501294019591,\n                \"long\": -3.5948338596131\n            },\n            {\n                \"lat\": 40.501389563931,\n                \"long\": -3.5946491792707\n            },\n            {\n                \"lat\": 40.501417020647,\n                \"long\": -3.5945656289076\n            },\n            {\n                \"lat\": 40.501580098217,\n                \"long\": -3.5943874448516\n            },\n            {\n                \"lat\": 40.501634733888,\n                \"long\": -3.594274275347\n            },\n            {\n                \"lat\": 40.501665844146,\n                \"long\": -3.5941459097377\n            },\n            {\n                \"lat\": 40.501653008386,\n                \"long\": -3.5940140878725\n            },\n            {\n                \"lat\": 40.501626844034,\n                \"long\": -3.5938462709082\n            },\n            {\n                \"lat\": 40.501567389066,\n                \"long\": -3.5935824477193\n            },\n            {\n                \"lat\": 40.501480386109,\n                \"long\": -3.5934200077232\n            },\n            {\n                \"lat\": 40.501426980208,\n                \"long\": -3.593293847844\n            },\n            {\n                \"lat\": 40.501528416623,\n                \"long\": -3.5932069359573\n            },\n            {\n                \"lat\": 40.504512000302,\n                \"long\": -3.5890959307506\n            },\n            {\n                \"lat\": 40.505375788277,\n                \"long\": -3.586806025\n            },\n            {\n                \"lat\": 40.506716934354,\n                \"long\": -3.5846920525749\n            },\n            {\n                \"lat\": 40.508386966124,\n                \"long\": -3.5829498048402\n            },\n            {\n                \"lat\": 40.508453622628,\n                \"long\": -3.5828802719372\n            },\n            {\n                \"lat\": 40.508497711283,\n                \"long\": -3.5827661640593\n            },\n            {\n                \"lat\": 40.510367287037,\n                \"long\": -3.5779269454931\n            },\n            {\n                \"lat\": 40.510410500514,\n                \"long\": -3.5758557274283\n            },\n            {\n                \"lat\": 40.512401376952,\n                \"long\": -3.572024527367\n            },\n            {\n                \"lat\": 40.512160437122,\n                \"long\": -3.5672629222369\n            },\n            {\n                \"lat\": 40.512053003654,\n                \"long\": -3.5649719968061\n            },\n            {\n                \"lat\": 40.511153676999,\n                \"long\": -3.5617307912733\n            },\n            {\n                \"lat\": 40.510683479839,\n                \"long\": -3.5616442436654\n            },\n            {\n                \"lat\": 40.511252987368,\n                \"long\": -3.5583596196944\n            },\n            {\n                \"lat\": 40.511333192455,\n                \"long\": -3.5542353314432\n            },\n            {\n                \"lat\": 40.511093890617,\n                \"long\": -3.5522438904816\n            },\n            {\n                \"lat\": 40.511303168743,\n                \"long\": -3.5522814901166\n            },\n            {\n                \"lat\": 40.511545975544,\n                \"long\": -3.5523912489835\n            },\n            {\n                \"lat\": 40.511815689675,\n                \"long\": -3.5525071313173\n            },\n            {\n                \"lat\": 40.512010967708,\n                \"long\": -3.5526464830114\n            },\n            {\n                \"lat\": 40.512330717265,\n                \"long\": -3.5529035847872\n            },\n            {\n                \"lat\": 40.512391382312,\n                \"long\": -3.5529339465442\n            },\n            {\n                \"lat\": 40.512526632758,\n                \"long\": -3.5529284474114\n            },\n            {\n                \"lat\": 40.512684280104,\n                \"long\": -3.5528926784403\n            },\n            {\n                \"lat\": 40.512803529168,\n                \"long\": -3.5529176196604\n            },\n            {\n                \"lat\": 40.512861193979,\n                \"long\": -3.5529348547561\n            },\n            {\n                \"lat\": 40.512914237299,\n                \"long\": -3.5529577177589\n            },\n            {\n                \"lat\": 40.5129575858,\n                \"long\": -3.5529733008109\n            },\n            {\n                \"lat\": 40.512997012321,\n                \"long\": -3.5529801168149\n            },\n            {\n                \"lat\": 40.513072446892,\n                \"long\": -3.5530115445966\n            },\n            {\n                \"lat\": 40.513254812737,\n                \"long\": -3.5530797348423\n            },\n            {\n                \"lat\": 40.513283578052,\n                \"long\": -3.5530929554854\n            },\n            {\n                \"lat\": 40.513381664742,\n                \"long\": -3.5531537253448\n            },\n            {\n                \"lat\": 40.513454850182,\n                \"long\": -3.5532033130732\n            },\n            {\n                \"lat\": 40.513532649188,\n                \"long\": -3.5532489254897\n            },\n            {\n                \"lat\": 40.51363648602,\n                \"long\": -3.5533129301417\n            },\n            {\n                \"lat\": 40.513829965843,\n                \"long\": -3.5534513170915\n            },\n            {\n                \"lat\": 40.513896601081,\n                \"long\": -3.5535141901442\n            },\n            {\n                \"lat\": 40.513959973968,\n                \"long\": -3.5535810498579\n            },\n            {\n                \"lat\": 40.514022639137,\n                \"long\": -3.5536451889502\n            },\n            {\n                \"lat\": 40.514087136525,\n                \"long\": -3.553702969053\n            },\n            {\n                \"lat\": 40.51414687178,\n                \"long\": -3.5537581131979\n            },\n            {\n                \"lat\": 40.514209250749,\n                \"long\": -3.5538255554173\n            },\n            {\n                \"lat\": 40.514302523689,\n                \"long\": -3.5539319693647\n            },\n            {\n                \"lat\": 40.51435997047,\n                \"long\": -3.5539946496725\n            },\n            {\n                \"lat\": 40.514411747472,\n                \"long\": -3.5540561030074\n            },\n            {\n                \"lat\": 40.514461986755,\n                \"long\": -3.5541188422297\n            },\n            {\n                \"lat\": 40.514512548986,\n                \"long\": -3.5541893749208\n            },\n            {\n                \"lat\": 40.514561026227,\n                \"long\": -3.5542607168379\n            },\n            {\n                \"lat\": 40.51461232038,\n                \"long\": -3.5543288949413\n            },\n            {\n                \"lat\": 40.514671020267,\n                \"long\": -3.5543932269758\n            },\n            {\n                \"lat\": 40.514734355779,\n                \"long\": -3.554448992081\n            },\n            {\n                \"lat\": 40.514759281818,\n                \"long\": -3.5544737500551\n            },\n            {\n                \"lat\": 40.514818631445,\n                \"long\": -3.5545528547253\n            },\n            {\n                \"lat\": 40.514898990268,\n                \"long\": -3.5546656565325\n            },\n            {\n                \"lat\": 40.51500050328,\n                \"long\": -3.5547631694678\n            },\n            {\n                \"lat\": 40.515112511996,\n                \"long\": -3.5548887452223\n            },\n            {\n                \"lat\": 40.515234880879,\n                \"long\": -3.5550518262705\n            },\n            {\n                \"lat\": 40.515276666781,\n                \"long\": -3.5551300788982\n            },\n            {\n                \"lat\": 40.515326465243,\n                \"long\": -3.5553031859031\n            },\n            {\n                \"lat\": 40.515339613577,\n                \"long\": -3.5553416582236\n            },\n            {\n                \"lat\": 40.51537550229,\n                \"long\": -3.5554284796036\n            },\n            {\n                \"lat\": 40.515450702421,\n                \"long\": -3.5555085311587\n            },\n            {\n                \"lat\": 40.515583894949,\n                \"long\": -3.5555937951204\n            },\n            {\n                \"lat\": 40.51570321437,\n                \"long\": -3.5556601760129\n            },\n            {\n                \"lat\": 40.515871779987,\n                \"long\": -3.5557333381044\n            },\n            {\n                \"lat\": 40.516133463603,\n                \"long\": -3.5558117552027\n            },\n            {\n                \"lat\": 40.516316172957,\n                \"long\": -3.5558474968798\n            },\n            {\n                \"lat\": 40.516393541825,\n                \"long\": -3.5558512049971\n            },\n            {\n                \"lat\": 40.516492185308,\n                \"long\": -3.5558333686172\n            },\n            {\n                \"lat\": 40.516590784122,\n                \"long\": -3.5558060882347\n            },\n            {\n                \"lat\": 40.51680057041,\n                \"long\": -3.5557002815405\n            },\n            {\n                \"lat\": 40.51718867858,\n                \"long\": -3.5554728244512\n            },\n            {\n                \"lat\": 40.517349311797,\n                \"long\": -3.5553595274304\n            },\n            {\n                \"lat\": 40.517438237145,\n                \"long\": -3.5552642895927\n            },\n            {\n                \"lat\": 40.51750054621,\n                \"long\": -3.5551961006647\n            },\n            {\n                \"lat\": 40.517558868781,\n                \"long\": -3.5551326005887\n            },\n            {\n                \"lat\": 40.517616552779,\n                \"long\": -3.5550707477888\n            },\n            {\n                \"lat\": 40.517677513846,\n                \"long\": -3.555001839106\n            },\n            {\n                \"lat\": 40.517738317943,\n                \"long\": -3.5549280890857\n            },\n            {\n                \"lat\": 40.5177764753,\n                \"long\": -3.5548802405846\n            },\n            {\n                \"lat\": 40.517799216106,\n                \"long\": -3.5548516246291\n            },\n            {\n                \"lat\": 40.517856544168,\n                \"long\": -3.5547700545842\n            },\n            {\n                \"lat\": 40.517973964425,\n                \"long\": -3.5545565306949\n            },\n            {\n                \"lat\": 40.518144310762,\n                \"long\": -3.5542586956899\n            },\n            {\n                \"lat\": 40.518364171955,\n                \"long\": -3.5538926691081\n            },\n            {\n                \"lat\": 40.518580434438,\n                \"long\": -3.5535423109625\n            },\n            {\n                \"lat\": 40.518828847639,\n                \"long\": -3.553083019777\n            },\n            {\n                \"lat\": 40.519042363759,\n                \"long\": -3.5525736337325\n            },\n            {\n                \"lat\": 40.519255213852,\n                \"long\": -3.5522012826266\n            },\n            {\n                \"lat\": 40.519418497644,\n                \"long\": -3.5519096229201\n            },\n            {\n                \"lat\": 40.519595535485,\n                \"long\": -3.5516617530653\n            },\n            {\n                \"lat\": 40.519997398905,\n                \"long\": -3.5512327453794\n            },\n            {\n                \"lat\": 40.520071228696,\n                \"long\": -3.5511644083993\n            },\n            {\n                \"lat\": 40.520135724444,\n                \"long\": -3.5511094526487\n            },\n            {\n                \"lat\": 40.52027155731,\n                \"long\": -3.5510006593102\n            },\n            {\n                \"lat\": 40.520330410818,\n                \"long\": -3.550957580236\n            },\n            {\n                \"lat\": 40.520467944524,\n                \"long\": -3.5508699314397\n            },\n            {\n                \"lat\": 40.520537858831,\n                \"long\": -3.5508310744731\n            },\n            {\n                \"lat\": 40.520597637384,\n                \"long\": -3.5508018147182\n            },\n            {\n                \"lat\": 40.520736194116,\n                \"long\": -3.5507452213294\n            },\n            {\n                \"lat\": 40.520945985409,\n                \"long\": -3.5506562740131\n            },\n            {\n                \"lat\": 40.521162697378,\n                \"long\": -3.5505499109534\n            },\n            {\n                \"lat\": 40.52126098014,\n                \"long\": -3.5505130561316\n            },\n            {\n                \"lat\": 40.521456613842,\n                \"long\": -3.5504458314814\n            },\n            {\n                \"lat\": 40.521557482627,\n                \"long\": -3.5504145460186\n            },\n            {\n                \"lat\": 40.521920047631,\n                \"long\": -3.5503084295782\n            },\n            {\n                \"lat\": 40.521994631721,\n                \"long\": -3.5502915674898\n            },\n            {\n                \"lat\": 40.522069376302,\n                \"long\": -3.550278838582\n            },\n            {\n                \"lat\": 40.522160135338,\n                \"long\": -3.5502706086226\n            },\n            {\n                \"lat\": 40.52227694151,\n                \"long\": -3.550259994434\n            },\n            {\n                \"lat\": 40.522357393669,\n                \"long\": -3.5502594717701\n            },\n            {\n                \"lat\": 40.522434269381,\n                \"long\": -3.5502532532173\n            },\n            {\n                \"lat\": 40.522500289694,\n                \"long\": -3.5502375014707\n            },\n            {\n                \"lat\": 40.522566755373,\n                \"long\": -3.5502228158332\n            },\n            {\n                \"lat\": 40.522639507376,\n                \"long\": -3.5502123135082\n            },\n            {\n                \"lat\": 40.522713501464,\n                \"long\": -3.550205835206\n            },\n            {\n                \"lat\": 40.522778561891,\n                \"long\": -3.5502024713465\n            },\n            {\n                \"lat\": 40.523020346836,\n                \"long\": -3.5502036219499\n            },\n            {\n                \"lat\": 40.523145174696,\n                \"long\": -3.5502111357308\n            },\n            {\n                \"lat\": 40.523240058688,\n                \"long\": -3.550225842249\n            },\n            {\n                \"lat\": 40.523306750913,\n                \"long\": -3.5502392557671\n            },\n            {\n                \"lat\": 40.523525779999,\n                \"long\": -3.5502913391182\n            },\n            {\n                \"lat\": 40.523591997047,\n                \"long\": -3.5503099433871\n            },\n            {\n                \"lat\": 40.523662339478,\n                \"long\": -3.5503324773217\n            },\n            {\n                \"lat\": 40.523726266703,\n                \"long\": -3.5503589727824\n            },\n            {\n                \"lat\": 40.523787660839,\n                \"long\": -3.5503876906654\n            },\n            {\n                \"lat\": 40.523912173647,\n                \"long\": -3.5504424253724\n            },\n            {\n                \"lat\": 40.524010339127,\n                \"long\": -3.5504869098126\n            },\n            {\n                \"lat\": 40.524070907259,\n                \"long\": -3.5505169198156\n            },\n            {\n                \"lat\": 40.524131511952,\n                \"long\": -3.5505411453288\n            },\n            {\n                \"lat\": 40.524224720988,\n                \"long\": -3.5505859436789\n            },\n            {\n                \"lat\": 40.524456135825,\n                \"long\": -3.5507044673915\n            },\n            {\n                \"lat\": 40.524512813335,\n                \"long\": -3.550739876649\n            },\n            {\n                \"lat\": 40.524569188503,\n                \"long\": -3.5507820128435\n            },\n            {\n                \"lat\": 40.524622923594,\n                \"long\": -3.5508299123823\n            },\n            {\n                \"lat\": 40.524682204016,\n                \"long\": -3.5508862395877\n            },\n            {\n                \"lat\": 40.524743069363,\n                \"long\": -3.5509502537125\n            },\n            {\n                \"lat\": 40.524800901034,\n                \"long\": -3.5510081040312\n            },\n            {\n                \"lat\": 40.524833014336,\n                \"long\": -3.5510371734734\n            },\n            {\n                \"lat\": 40.524985357631,\n                \"long\": -3.5511310978437\n            },\n            {\n                \"lat\": 40.525055746603,\n                \"long\": -3.5511627240942\n            },\n            {\n                \"lat\": 40.525082436157,\n                \"long\": -3.5511767557083\n            },\n            {\n                \"lat\": 40.525103435671,\n                \"long\": -3.551193810274\n            },\n            {\n                \"lat\": 40.525122612633,\n                \"long\": -3.5512152181311\n            },\n            {\n                \"lat\": 40.525138537496,\n                \"long\": -3.5512384883138\n            },\n            {\n                \"lat\": 40.525159754285,\n                \"long\": -3.5512855318916\n            },\n            {\n                \"lat\": 40.5251691366,\n                \"long\": -3.5515282217606\n            },\n            {\n                \"lat\": 40.525172635215,\n                \"long\": -3.5515502095723\n            },\n            {\n                \"lat\": 40.525193992513,\n                \"long\": -3.5516244081998\n            },\n            {\n                \"lat\": 40.525213239152,\n                \"long\": -3.5516689447198\n            },\n            {\n                \"lat\": 40.525256140369,\n                \"long\": -3.5517404866548\n            },\n            {\n                \"lat\": 40.525368416436,\n                \"long\": -3.5519050387812\n            },\n            {\n                \"lat\": 40.525511910881,\n                \"long\": -3.552133128012\n            },\n            {\n                \"lat\": 40.525549242292,\n                \"long\": -3.552201319155\n            },\n            {\n                \"lat\": 40.525584389602,\n                \"long\": -3.5522740968089\n            },\n            {\n                \"lat\": 40.525626525734,\n                \"long\": -3.552354841976\n            },\n            {\n                \"lat\": 40.525679548059,\n                \"long\": -3.5524386281458\n            },\n            {\n                \"lat\": 40.525732728711,\n                \"long\": -3.5525081303867\n            },\n            {\n                \"lat\": 40.525775670046,\n                \"long\": -3.5525711733552\n            },\n            {\n                \"lat\": 40.52581354566,\n                \"long\": -3.5526385430526\n            },\n            {\n                \"lat\": 40.525852370388,\n                \"long\": -3.5527146571401\n            },\n            {\n                \"lat\": 40.525893299568,\n                \"long\": -3.5528028190336\n            },\n            {\n                \"lat\": 40.525934806984,\n                \"long\": -3.5528830874925\n            },\n            {\n                \"lat\": 40.52597419805,\n                \"long\": -3.5529537756952\n            },\n            {\n                \"lat\": 40.526008717669,\n                \"long\": -3.5530258406757\n            },\n            {\n                \"lat\": 40.526051758078,\n                \"long\": -3.5531057678283\n            },\n            {\n                \"lat\": 40.526106488647,\n                \"long\": -3.5531901594743\n            },\n            {\n                \"lat\": 40.526164690454,\n                \"long\": -3.5532645445673\n            },\n            {\n                \"lat\": 40.526295456908,\n                \"long\": -3.553442830674\n            },\n            {\n                \"lat\": 40.526374141833,\n                \"long\": -3.5535667346084\n            },\n            {\n                \"lat\": 40.526547119787,\n                \"long\": -3.5538849070651\n            },\n            {\n                \"lat\": 40.526616878962,\n                \"long\": -3.5540101552331\n            },\n            {\n                \"lat\": 40.526871750767,\n                \"long\": -3.5543274817047\n            },\n            {\n                \"lat\": 40.526917771555,\n                \"long\": -3.5543868923317\n            },\n            {\n                \"lat\": 40.526956414925,\n                \"long\": -3.5544442351729\n            },\n            {\n                \"lat\": 40.526990284297,\n                \"long\": -3.5545014206711\n            },\n            {\n                \"lat\": 40.527018032978,\n                \"long\": -3.5545556041994\n            },\n            {\n                \"lat\": 40.527036316924,\n                \"long\": -3.5546127793923\n            },\n            {\n                \"lat\": 40.527046397387,\n                \"long\": -3.5546710676158\n            },\n            {\n                \"lat\": 40.527050701547,\n                \"long\": -3.5547146684005\n            },\n            {\n                \"lat\": 40.527048187022,\n                \"long\": -3.5547505388627\n            },\n            {\n                \"lat\": 40.527039880934,\n                \"long\": -3.5547917924687\n            },\n            {\n                \"lat\": 40.527010218724,\n                \"long\": -3.5548903666634\n            },\n            {\n                \"lat\": 40.526979193239,\n                \"long\": -3.5549914088488\n            },\n            {\n                \"lat\": 40.526969243466,\n                \"long\": -3.5550372414734\n            },\n            {\n                \"lat\": 40.526956878409,\n                \"long\": -3.555060752061\n            },\n            {\n                \"lat\": 40.526888643369,\n                \"long\": -3.5552748273949\n            },\n            {\n                \"lat\": 40.526873960776,\n                \"long\": -3.5554056378964\n            },\n            {\n                \"lat\": 40.526873481225,\n                \"long\": -3.5555053970291\n            },\n            {\n                \"lat\": 40.526886964673,\n                \"long\": -3.5556240434619\n            },\n            {\n                \"lat\": 40.526885945478,\n                \"long\": -3.5558359578628\n            },\n            {\n                \"lat\": 40.52686429579,\n                \"long\": -3.555954196004\n            },\n            {\n                \"lat\": 40.526835828946,\n                \"long\": -3.5560288125654\n            },\n            {\n                \"lat\": 40.526837590889,\n                \"long\": -3.5560370915204\n            },\n            {\n                \"lat\": 40.526816198645,\n                \"long\": -3.5560830772503\n            },\n            {\n                \"lat\": 40.526787712352,\n                \"long\": -3.5561242818053\n            },\n            {\n                \"lat\": 40.526750575559,\n                \"long\": -3.5561658870674\n            },\n            {\n                \"lat\": 40.526697473737,\n                \"long\": -3.5562489183072\n            },\n            {\n                \"lat\": 40.52668306005,\n                \"long\": -3.556323650761\n            },\n            {\n                \"lat\": 40.526752756297,\n                \"long\": -3.5564614158211\n            },\n            {\n                \"lat\": 40.52703310256,\n                \"long\": -3.5566881606869\n            },\n            {\n                \"lat\": 40.527355728564,\n                \"long\": -3.5569090118662\n            },\n            {\n                \"lat\": 40.527601292191,\n                \"long\": -3.5570419776552\n            },\n            {\n                \"lat\": 40.52791326309,\n                \"long\": -3.5571370053173\n            },\n            {\n                \"lat\": 40.527981302276,\n                \"long\": -3.5571511462122\n            },\n            {\n                \"lat\": 40.528050802751,\n                \"long\": -3.5571611669671\n            },\n            {\n                \"lat\": 40.528052244119,\n                \"long\": -3.5571611789039\n            },\n            {\n                \"lat\": 40.528190071537,\n                \"long\": -3.5571630287289\n            },\n            {\n                \"lat\": 40.52819142282,\n                \"long\": -3.5571630399197\n            },\n            {\n                \"lat\": 40.528258634012,\n                \"long\": -3.5571620616925\n            },\n            {\n                \"lat\": 40.528260435153,\n                \"long\": -3.5571621946742\n            },\n            {\n                \"lat\": 40.528317264308,\n                \"long\": -3.5571657350143\n            },\n            {\n                \"lat\": 40.528319695478,\n                \"long\": -3.5571659912793\n            },\n            {\n                \"lat\": 40.528377317185,\n                \"long\": -3.5571733162849\n            },\n            {\n                \"lat\": 40.52838064978,\n                \"long\": -3.5571734619505\n            },\n            {\n                \"lat\": 40.528442974719,\n                \"long\": -3.5571769297578\n            },\n            {\n                \"lat\": 40.52844928412,\n                \"long\": -3.5571762736183\n            },\n            {\n                \"lat\": 40.528547350721,\n                \"long\": -3.5571659758129\n            },\n            {\n                \"lat\": 40.528550145648,\n                \"long\": -3.5571655266969\n            },\n            {\n                \"lat\": 40.52858728991,\n                \"long\": -3.5571598129611\n            },\n            {\n                \"lat\": 40.528592702441,\n                \"long\": -3.5571583229303\n            },\n            {\n                \"lat\": 40.52865439503,\n                \"long\": -3.5571415962222\n            },\n            {\n                \"lat\": 40.528660081802,\n                \"long\": -3.5571392819979\n            },\n            {\n                \"lat\": 40.52871686171,\n                \"long\": -3.5571156667419\n            },\n            {\n                \"lat\": 40.528733029708,\n                \"long\": -3.5571069456742\n            },\n            {\n                \"lat\": 40.52887691613,\n                \"long\": -3.5570292688838\n            },\n            {\n                \"lat\": 40.528890201954,\n                \"long\": -3.557020405845\n            },\n            {\n                \"lat\": 40.528996400084,\n                \"long\": -3.5569491582846\n            },\n            {\n                \"lat\": 40.529020258341,\n                \"long\": -3.5569336529436\n            },\n            {\n                \"lat\": 40.52919313814,\n                \"long\": -3.5568217399129\n            },\n            {\n                \"lat\": 40.529196759766,\n                \"long\": -3.5568179917478\n            },\n            {\n                \"lat\": 40.529220842552,\n                \"long\": -3.5567932789514\n            },\n            {\n                \"lat\": 40.529260787776,\n                \"long\": -3.5567671625454\n            },\n            {\n                \"lat\": 40.52950317066,\n                \"long\": -3.5566085968192\n            },\n            {\n                \"lat\": 40.529556615109,\n                \"long\": -3.5565835364209\n            },\n            {\n                \"lat\": 40.529855756404,\n                \"long\": -3.5564431490148\n            },\n            {\n                \"lat\": 40.529895641851,\n                \"long\": -3.5564294288178\n            },\n            {\n                \"lat\": 40.530102380196,\n                \"long\": -3.5563579363455\n            },\n            {\n                \"lat\": 40.530142323883,\n                \"long\": -3.5563508283706\n            },\n            {\n                \"lat\": 40.530334830923,\n                \"long\": -3.5563161732888\n            },\n            {\n                \"lat\": 40.530405211565,\n                \"long\": -3.5563117964174\n            },\n            {\n                \"lat\": 40.530721779736,\n                \"long\": -3.5562922172662\n            },\n            {\n                \"lat\": 40.530734661392,\n                \"long\": -3.5562924418601\n            },\n            {\n                \"lat\": 40.530788981291,\n                \"long\": -3.5562932334592\n            },\n            {\n                \"lat\": 40.53080132016,\n                \"long\": -3.556293925844\n            },\n            {\n                \"lat\": 40.530850135692,\n                \"long\": -3.5562965728511\n            },\n            {\n                \"lat\": 40.530863289309,\n                \"long\": -3.5562964454861\n            },\n            {\n                \"lat\": 40.530912030671,\n                \"long\": -3.5562957859269\n            },\n            {\n                \"lat\": 40.530923751447,\n                \"long\": -3.5562938756638\n            },\n            {\n                \"lat\": 40.530964594843,\n                \"long\": -3.5562870111497\n            },\n            {\n                \"lat\": 40.531053883765,\n                \"long\": -3.5562847977675\n            },\n            {\n                \"lat\": 40.531348959745,\n                \"long\": -3.5562776741742\n            },\n            {\n                \"lat\": 40.531357674173,\n                \"long\": -3.5562452767956\n            },\n            {\n                \"lat\": 40.531384738146,\n                \"long\": -3.5561439597449\n            },\n            {\n                \"lat\": 40.531602430077,\n                \"long\": -3.5553665018655\n            },\n            {\n                \"lat\": 40.532246784317,\n                \"long\": -3.5530654098896\n            },\n            {\n                \"lat\": 40.532310282053,\n                \"long\": -3.553106194646\n            },\n            {\n                \"lat\": 40.532488380115,\n                \"long\": -3.553220772713\n            },\n            {\n                \"lat\": 40.532737082267,\n                \"long\": -3.5543180526501\n            },\n            {\n                \"lat\": 40.533400478645,\n                \"long\": -3.5572438272767\n            },\n            {\n                \"lat\": 40.533510130093,\n                \"long\": -3.5577639091302\n            },\n            {\n                \"lat\": 40.533788257376,\n                \"long\": -3.5590827393935\n            },\n            {\n                \"lat\": 40.533959050209,\n                \"long\": -3.5601276962902\n            },\n            {\n                \"lat\": 40.534371474726,\n                \"long\": -3.5626500218656\n            },\n            {\n                \"lat\": 40.53437467449,\n                \"long\": -3.5626774422577\n            },\n            {\n                \"lat\": 40.534382025261,\n                \"long\": -3.5627404382512\n            },\n            {\n                \"lat\": 40.534377355172,\n                \"long\": -3.5627929429898\n            },\n            {\n                \"lat\": 40.534366973941,\n                \"long\": -3.5629082163409\n            },\n            {\n                \"lat\": 40.534362932879,\n                \"long\": -3.5629425426238\n            },\n            {\n                \"lat\": 40.534354474848,\n                \"long\": -3.5630143800811\n            },\n            {\n                \"lat\": 40.534350982896,\n                \"long\": -3.5630469398089\n            },\n            {\n                \"lat\": 40.534344089684,\n                \"long\": -3.5631119301299\n            },\n            {\n                \"lat\": 40.534341287313,\n                \"long\": -3.5631508717202\n            },\n            {\n                \"lat\": 40.534335878816,\n                \"long\": -3.563225450409\n            },\n            {\n                \"lat\": 40.534333577203,\n                \"long\": -3.5632725434203\n            },\n            {\n                \"lat\": 40.534329283898,\n                \"long\": -3.5633585847923\n            },\n            {\n                \"lat\": 40.534326130586,\n                \"long\": -3.5634140540481\n            },\n            {\n                \"lat\": 40.534320611938,\n                \"long\": -3.563511184268\n            },\n            {\n                \"lat\": 40.534317365588,\n                \"long\": -3.5635672431091\n            },\n            {\n                \"lat\": 40.534311862363,\n                \"long\": -3.5636611853844\n            },\n            {\n                \"lat\": 40.534308603267,\n                \"long\": -3.5637198417728\n            },\n            {\n                \"lat\": 40.534303189428,\n                \"long\": -3.5638139028481\n            },\n            {\n                \"lat\": 40.534301024332,\n                \"long\": -3.5638514328169\n            },\n            {\n                \"lat\": 40.534297769749,\n                \"long\": -3.5639091446174\n            },\n            {\n                \"lat\": 40.534293879719,\n                \"long\": -3.5639696849041\n            },\n            {\n                \"lat\": 40.534288037729,\n                \"long\": -3.5640591373908\n            },\n            {\n                \"lat\": 40.534284030079,\n                \"long\": -3.5641234550993\n            },\n            {\n                \"lat\": 40.534278361222,\n                \"long\": -3.564214325921\n            },\n            {\n                \"lat\": 40.5342751572,\n                \"long\": -3.5642616474382\n            },\n            {\n                \"lat\": 40.534270789097,\n                \"long\": -3.5643259620978\n            },\n            {\n                \"lat\": 40.534269118786,\n                \"long\": -3.5643728241699\n            },\n            {\n                \"lat\": 40.534266928818,\n                \"long\": -3.5644338509726\n            },\n            {\n                \"lat\": 40.534264250377,\n                \"long\": -3.5645026548651\n            },\n            {\n                \"lat\": 40.534260857587,\n                \"long\": -3.5645885855501\n            },\n            {\n                \"lat\": 40.534258838368,\n                \"long\": -3.5646330831643\n            },\n            {\n                \"lat\": 40.534256416091,\n                \"long\": -3.5646863149982\n            },\n            {\n                \"lat\": 40.534253673844,\n                \"long\": -3.5647312788388\n            },\n            {\n                \"lat\": 40.534250628428,\n                \"long\": -3.5647829704479\n            },\n            {\n                \"lat\": 40.534248815278,\n                \"long\": -3.5648221563711\n            },\n            {\n                \"lat\": 40.53424689125,\n                \"long\": -3.5648655920877\n            },\n            {\n                \"lat\": 40.534242788995,\n                \"long\": -3.5649123156283\n            },\n            {\n                \"lat\": 40.53423849154,\n                \"long\": -3.5649621074925\n            },\n            {\n                \"lat\": 40.534233155217,\n                \"long\": -3.5650401107203\n            },\n            {\n                \"lat\": 40.534227720094,\n                \"long\": -3.565119884241\n            },\n            {\n                \"lat\": 40.534223775384,\n                \"long\": -3.5651712140286\n            },\n            {\n                \"lat\": 40.534219835271,\n                \"long\": -3.5652215992432\n            },\n            {\n                \"lat\": 40.534212952304,\n                \"long\": -3.5653026593973\n            },\n            {\n                \"lat\": 40.534206542817,\n                \"long\": -3.5653790004877\n            },\n            {\n                \"lat\": 40.534203136192,\n                \"long\": -3.5654308070695\n            },\n            {\n                \"lat\": 40.534200024069,\n                \"long\": -3.5654776569443\n            },\n            {\n                \"lat\": 40.53419609351,\n                \"long\": -3.5655628745202\n            },\n            {\n                \"lat\": 40.53419257814,\n                \"long\": -3.5656368783912\n            },\n            {\n                \"lat\": 40.534190476434,\n                \"long\": -3.5656981419747\n            },\n            {\n                \"lat\": 40.534188695248,\n                \"long\": -3.5657491356698\n            },\n            {\n                \"lat\": 40.534187036503,\n                \"long\": -3.5657935181566\n            },\n            {\n                \"lat\": 40.534185690783,\n                \"long\": -3.5658291656777\n            },\n            {\n                \"lat\": 40.534184807621,\n                \"long\": -3.5658623375004\n            },\n            {\n                \"lat\": 40.534184052181,\n                \"long\": -3.5658878236734\n            },\n            {\n                \"lat\": 40.534182649545,\n                \"long\": -3.566174145266\n            },\n            {\n                \"lat\": 40.534180388214,\n                \"long\": -3.5662311567567\n            },\n            {\n                \"lat\": 40.534178847722,\n                \"long\": -3.5662697545157\n            },\n            {\n                \"lat\": 40.534177516323,\n                \"long\": -3.5663024502526\n            },\n            {\n                \"lat\": 40.53417660139,\n                \"long\": -3.5663236961602\n            },\n            {\n                \"lat\": 40.534172626629,\n                \"long\": -3.5663810474394\n            },\n            {\n                \"lat\": 40.534170199126,\n                \"long\": -3.5664168039064\n            },\n            {\n                \"lat\": 40.534160532298,\n                \"long\": -3.5665142529359\n            },\n            {\n                \"lat\": 40.534154841769,\n                \"long\": -3.5665724162665\n            },\n            {\n                \"lat\": 40.534149000907,\n                \"long\": -3.5666428581795\n            },\n            {\n                \"lat\": 40.534145650466,\n                \"long\": -3.5666830937199\n            },\n            {\n                \"lat\": 40.534142259213,\n                \"long\": -3.5667500139873\n            },\n            {\n                \"lat\": 40.534140458139,\n                \"long\": -3.5667866022319\n            },\n            {\n                \"lat\": 40.534138794086,\n                \"long\": -3.5668503490049\n            },\n            {\n                \"lat\": 40.534138000138,\n                \"long\": -3.5668836396176\n            },\n            {\n                \"lat\": 40.534137353329,\n                \"long\": -3.5669236617757\n            },\n            {\n                \"lat\": 40.534136985167,\n                \"long\": -3.5669436134394\n            },\n            {\n                \"lat\": 40.534138463003,\n                \"long\": -3.5670096301257\n            },\n            {\n                \"lat\": 40.53413920915,\n                \"long\": -3.5670411625865\n            },\n            {\n                \"lat\": 40.534143340809,\n                \"long\": -3.5671171199986\n            },\n            {\n                \"lat\": 40.534145242967,\n                \"long\": -3.5671517321746\n            },\n            {\n                \"lat\": 40.534148151036,\n                \"long\": -3.5672200043699\n            },\n            {\n                \"lat\": 40.534149446969,\n                \"long\": -3.5672496404574\n            },\n            {\n                \"lat\": 40.534150117921,\n                \"long\": -3.5673148238276\n            },\n            {\n                \"lat\": 40.534150345504,\n                \"long\": -3.5673418650516\n            },\n            {\n                \"lat\": 40.534147524165,\n                \"long\": -3.5674210699551\n            },\n            {\n                \"lat\": 40.534146469654,\n                \"long\": -3.5674523510822\n            },\n            {\n                \"lat\": 40.53414035916,\n                \"long\": -3.5675225544822\n            },\n            {\n                \"lat\": 40.534138067787,\n                \"long\": -3.567548865995\n            },\n            {\n                \"lat\": 40.534118054697,\n                \"long\": -3.5677367914116\n            },\n            {\n                \"lat\": 40.534110879254,\n                \"long\": -3.5678036796519\n            },\n            {\n                \"lat\": 40.534105065055,\n                \"long\": -3.5678868737869\n            },\n            {\n                \"lat\": 40.53410303515,\n                \"long\": -3.5679149586131\n            },\n            {\n                \"lat\": 40.534099662918,\n                \"long\": -3.5679778643682\n            },\n            {\n                \"lat\": 40.534098662816,\n                \"long\": -3.5679980468289\n            },\n            {\n                \"lat\": 40.534093658084,\n                \"long\": -3.5680814839192\n            },\n            {\n                \"lat\": 40.53409209249,\n                \"long\": -3.5681067388451\n            },\n            {\n                \"lat\": 40.534085830146,\n                \"long\": -3.5682260602319\n            },\n            {\n                \"lat\": 40.534084040799,\n                \"long\": -3.5682601689195\n            },\n            {\n                \"lat\": 40.534064336477,\n                \"long\": -3.568657904776\n            },\n            {\n                \"lat\": 40.534059034861,\n                \"long\": -3.5687649543428\n            },\n            {\n                \"lat\": 40.534054830462,\n                \"long\": -3.5688504053752\n            },\n            {\n                \"lat\": 40.534053823232,\n                \"long\": -3.5688720046534\n            },\n            {\n                \"lat\": 40.534053343612,\n                \"long\": -3.5689694127936\n            },\n            {\n                \"lat\": 40.534057900905,\n                \"long\": -3.5691416052727\n            },\n            {\n                \"lat\": 40.534058973659,\n                \"long\": -3.569179870779\n            },\n            {\n                \"lat\": 40.534063655631,\n                \"long\": -3.5693449798167\n            },\n            {\n                \"lat\": 40.53406456793,\n                \"long\": -3.5693792294072\n            },\n            {\n                \"lat\": 40.534067476899,\n                \"long\": -3.5694653310077\n            },\n            {\n                \"lat\": 40.534068026027,\n                \"long\": -3.5694818662147\n            },\n            {\n                \"lat\": 40.534070653857,\n                \"long\": -3.5695336054965\n            },\n            {\n                \"lat\": 40.534071058888,\n                \"long\": -3.5695428188087\n            },\n            {\n                \"lat\": 40.534077577547,\n                \"long\": -3.569627652164\n            },\n            {\n                \"lat\": 40.534078589884,\n                \"long\": -3.5696415936381\n            },\n            {\n                \"lat\": 40.53409248599,\n                \"long\": -3.569874556122\n            },\n            {\n                \"lat\": 40.534094563998,\n                \"long\": -3.5699098782899\n            },\n            {\n                \"lat\": 40.53410593147,\n                \"long\": -3.5700892013745\n            },\n            {\n                \"lat\": 40.534107520751,\n                \"long\": -3.5701140106956\n            },\n            {\n                \"lat\": 40.534119292372,\n                \"long\": -3.5702478900145\n            },\n            {\n                \"lat\": 40.534120741074,\n                \"long\": -3.570264669018\n            },\n            {\n                \"lat\": 40.534133148686,\n                \"long\": -3.5704156747335\n            },\n            {\n                \"lat\": 40.534134506112,\n                \"long\": -3.570432689121\n            },\n            {\n                \"lat\": 40.534142850627,\n                \"long\": -3.5705672479305\n            },\n            {\n                \"lat\": 40.534143775097,\n                \"long\": -3.5705807163844\n            },\n            {\n                \"lat\": 40.534149939347,\n                \"long\": -3.570682431727\n            },\n            {\n                \"lat\": 40.534150526207,\n                \"long\": -3.5706912923727\n            },\n            {\n                \"lat\": 40.534169838113,\n                \"long\": -3.5711586813265\n            },\n            {\n                \"lat\": 40.534171374049,\n                \"long\": -3.5711942351214\n            },\n            {\n                \"lat\": 40.534177695161,\n                \"long\": -3.571300556841\n            },\n            {\n                \"lat\": 40.534178111727,\n                \"long\": -3.571307408764\n            },\n            {\n                \"lat\": 40.534209800605,\n                \"long\": -3.5716398129339\n            },\n            {\n                \"lat\": 40.534211514687,\n                \"long\": -3.5716575388501\n            },\n            {\n                \"lat\": 40.53422177235,\n                \"long\": -3.5717875092733\n            },\n            {\n                \"lat\": 40.534222195314,\n                \"long\": -3.5717930624257\n            },\n            {\n                \"lat\": 40.53423497763,\n                \"long\": -3.5719407657115\n            },\n            {\n                \"lat\": 40.534235314592,\n                \"long\": -3.5719454916047\n            },\n            {\n                \"lat\": 40.534242687912,\n                \"long\": -3.5720393064172\n            },\n            {\n                \"lat\": 40.534242858729,\n                \"long\": -3.5720411970813\n            },\n            {\n                \"lat\": 40.534249589681,\n                \"long\": -3.5721373679651\n            },\n            {\n                \"lat\": 40.534249677428,\n                \"long\": -3.5721378410143\n            },\n            {\n                \"lat\": 40.53426092376,\n                \"long\": -3.5722863578863\n            },\n            {\n                \"lat\": 40.534276015993,\n                \"long\": -3.5725859264465\n            },\n            {\n                \"lat\": 40.534278107144,\n                \"long\": -3.5726911379535\n            },\n            {\n                \"lat\": 40.534291838765,\n                \"long\": -3.5730105318207\n            },\n            {\n                \"lat\": 40.534294692905,\n                \"long\": -3.5731071421398\n            },\n            {\n                \"lat\": 40.534294748928,\n                \"long\": -3.5734789633095\n            },\n            {\n                \"lat\": 40.534288257231,\n                \"long\": -3.5738429356119\n            },\n            {\n                \"lat\": 40.534287206871,\n                \"long\": -3.5740543885724\n            },\n            {\n                \"lat\": 40.534287364941,\n                \"long\": -3.5741676245982\n            },\n            {\n                \"lat\": 40.534285486152,\n                \"long\": -3.5742737586866\n            },\n            {\n                \"lat\": 40.534280551665,\n                \"long\": -3.5744327646203\n            },\n            {\n                \"lat\": 40.534277450776,\n                \"long\": -3.5745309771747\n            },\n            {\n                \"lat\": 40.534273784137,\n                \"long\": -3.5745980128863\n            },\n            {\n                \"lat\": 40.5342418516,\n                \"long\": -3.5748779337379\n            },\n            {\n                \"lat\": 40.534251436871,\n                \"long\": -3.5749612590428\n            },\n            {\n                \"lat\": 40.534261772548,\n                \"long\": -3.5750205033366\n            },\n            {\n                \"lat\": 40.534267454325,\n                \"long\": -3.5750735679197\n            },\n            {\n                \"lat\": 40.534271813765,\n                \"long\": -3.5751389010833\n            },\n            {\n                \"lat\": 40.534275900864,\n                \"long\": -3.5752408354119\n            },\n            {\n                \"lat\": 40.534272647601,\n                \"long\": -3.5753695101612\n            },\n            {\n                \"lat\": 40.53426880955,\n                \"long\": -3.5755974697894\n            },\n            {\n                \"lat\": 40.534255563356,\n                \"long\": -3.5758512192386\n            },\n            {\n                \"lat\": 40.534250510787,\n                \"long\": -3.5760696160512\n            },\n            {\n                \"lat\": 40.534263032683,\n                \"long\": -3.5762142479946\n            },\n            {\n                \"lat\": 40.534287496846,\n                \"long\": -3.576366775324\n            },\n            {\n                \"lat\": 40.534226355527,\n                \"long\": -3.5763790035788\n            },\n            {\n                \"lat\": 40.533872067433,\n                \"long\": -3.5784835835812\n            },\n            {\n                \"lat\": 40.533852751486,\n                \"long\": -3.5785449345363\n            },\n            {\n                \"lat\": 40.533889356506,\n                \"long\": -3.5786650955811\n            },\n            {\n                \"lat\": 40.533929673832,\n                \"long\": -3.5787275499565\n            },\n            {\n                \"lat\": 40.533976881356,\n                \"long\": -3.5787813261299\n            },\n            {\n                \"lat\": 40.534003595771,\n                \"long\": -3.5788436635938\n            },\n            {\n                \"lat\": 40.534023554528,\n                \"long\": -3.5789237723348\n            },\n            {\n                \"lat\": 40.534040045621,\n                \"long\": -3.5790127069232\n            },\n            {\n                \"lat\": 40.534070027512,\n                \"long\": -3.5791061264943\n            },\n            {\n                \"lat\": 40.534099941853,\n                \"long\": -3.5792130061668\n            },\n            {\n                \"lat\": 40.534133257424,\n                \"long\": -3.5793242840219\n            },\n            {\n                \"lat\": 40.534169795982,\n                \"long\": -3.5794754992909\n            },\n            {\n                \"lat\": 40.534196019687,\n                \"long\": -3.5796355877749\n            },\n            {\n                \"lat\": 40.534242714933,\n                \"long\": -3.5797913777781\n            },\n            {\n                \"lat\": 40.534299298585,\n                \"long\": -3.5799872809485\n            },\n            {\n                \"lat\": 40.53437917836,\n                \"long\": -3.58019046995\n            },\n            {\n                \"lat\": 40.534443048257,\n                \"long\": -3.5803525489018\n            },\n            {\n                \"lat\": 40.534643847808,\n                \"long\": -3.5808204352398\n            },\n            {\n                \"lat\": 40.534710564777,\n                \"long\": -3.5810252837146\n            },\n            {\n                \"lat\": 40.534753498932,\n                \"long\": -3.581229927078\n            },\n            {\n                \"lat\": 40.534792742467,\n                \"long\": -3.5815055028632\n            },\n            {\n                \"lat\": 40.534805249942,\n                \"long\": -3.581723226297\n            },\n            {\n                \"lat\": 40.534817868507,\n                \"long\": -3.5819009227739\n            },\n            {\n                \"lat\": 40.534827467162,\n                \"long\": -3.5820163549503\n            },\n            {\n                \"lat\": 40.534837132266,\n                \"long\": -3.5821185749491\n            },\n            {\n                \"lat\": 40.534853195233,\n                \"long\": -3.5822741029727\n            },\n            {\n                \"lat\": 40.534903442912,\n                \"long\": -3.5825108097197\n            },\n            {\n                \"lat\": 40.534912260728,\n                \"long\": -3.5825308410748\n            },\n            {\n                \"lat\": 40.535004268879,\n                \"long\": -3.5827398077186\n            },\n            {\n                \"lat\": 40.535093681918,\n                \"long\": -3.5829273804747\n            },\n            {\n                \"lat\": 40.535238951322,\n                \"long\": -3.5832931326983\n            },\n            {\n                \"lat\": 40.535316301743,\n                \"long\": -3.5835322020948\n            },\n            {\n                \"lat\": 40.535355461579,\n                \"long\": -3.5837341003498\n            },\n            {\n                \"lat\": 40.535384307169,\n                \"long\": -3.5839803064989\n            },\n            {\n                \"lat\": 40.535373438775,\n                \"long\": -3.5841343034776\n            },\n            {\n                \"lat\": 40.535356098458,\n                \"long\": -3.5842675805991\n            },\n            {\n                \"lat\": 40.535330463692,\n                \"long\": -3.5843842547216\n            },\n            {\n                \"lat\": 40.535279507008,\n                \"long\": -3.584537891304\n            },\n            {\n                \"lat\": 40.535215157139,\n                \"long\": -3.5847033488488\n            },\n            {\n                \"lat\": 40.535201270033,\n                \"long\": -3.5848128039092\n            },\n            {\n                \"lat\": 40.535214212343,\n                \"long\": -3.5848900209668\n            },\n            {\n                \"lat\": 40.535250546802,\n                \"long\": -3.5849733453709\n            },\n            {\n                \"lat\": 40.535343590092,\n                \"long\": -3.585101560325\n            },\n            {\n                \"lat\": 40.535453419156,\n                \"long\": -3.5852061880531\n            },\n            {\n                \"lat\": 40.53560807323,\n                \"long\": -3.5853718983339\n            },\n            {\n                \"lat\": 40.535717556204,\n                \"long\": -3.5855447731394\n            },\n            {\n                \"lat\": 40.53578058528,\n                \"long\": -3.5856579686264\n            },\n            {\n                \"lat\": 40.535840086319,\n                \"long\": -3.5857917855238\n            },\n            {\n                \"lat\": 40.535909195555,\n                \"long\": -3.5860028034896\n            },\n            {\n                \"lat\": 40.535958440929,\n                \"long\": -3.5861869629759\n            },\n            {\n                \"lat\": 40.535999150512,\n                \"long\": -3.5864021030253\n            },\n            {\n                \"lat\": 40.536018472319,\n                \"long\": -3.5865534123281\n            },\n            {\n                \"lat\": 40.536024521758,\n                \"long\": -3.5866749681627\n            },\n            {\n                \"lat\": 40.536013784826,\n                \"long\": -3.586820111398\n            },\n            {\n                \"lat\": 40.535992898279,\n                \"long\": -3.5869769620757\n            },\n            {\n                \"lat\": 40.535988842252,\n                \"long\": -3.5871192115456\n            },\n            {\n                \"lat\": 40.536016218127,\n                \"long\": -3.5873341177346\n            },\n            {\n                \"lat\": 40.53605853869,\n                \"long\": -3.5875509258338\n            },\n            {\n                \"lat\": 40.536123632725,\n                \"long\": -3.5879130522683\n            },\n            {\n                \"lat\": 40.536169527535,\n                \"long\": -3.5880823064761\n            },\n            {\n                \"lat\": 40.536299955177,\n                \"long\": -3.5884049649525\n            },\n            {\n                \"lat\": 40.53637610288,\n                \"long\": -3.5885597247602\n            },\n            {\n                \"lat\": 40.536405738304,\n                \"long\": -3.5886488979272\n            },\n            {\n                \"lat\": 40.536451268981,\n                \"long\": -3.5889070640475\n            },\n            {\n                \"lat\": 40.536512032299,\n                \"long\": -3.589128286946\n            },\n            {\n                \"lat\": 40.536554486182,\n                \"long\": -3.5893182948386\n            },\n            {\n                \"lat\": 40.536600634658,\n                \"long\": -3.5894550813664\n            },\n            {\n                \"lat\": 40.536653419184,\n                \"long\": -3.589597818442\n            },\n            {\n                \"lat\": 40.536765911853,\n                \"long\": -3.5898328393306\n            },\n            {\n                \"lat\": 40.53680049277,\n                \"long\": -3.5899413040162\n            },\n            {\n                \"lat\": 40.536833188308,\n                \"long\": -3.5900837593703\n            },\n            {\n                \"lat\": 40.536879184471,\n                \"long\": -3.5902501838036\n            },\n            {\n                \"lat\": 40.536912151717,\n                \"long\": -3.5903393876262\n            },\n            {\n                \"lat\": 40.536971843924,\n                \"long\": -3.5904347301736\n            },\n            {\n                \"lat\": 40.537031444925,\n                \"long\": -3.5905479022525\n            },\n            {\n                \"lat\": 40.537071168904,\n                \"long\": -3.5906370476803\n            },\n            {\n                \"lat\": 40.537110892736,\n                \"long\": -3.5907085873819\n            },\n            {\n                \"lat\": 40.537143769059,\n                \"long\": -3.5908155030496\n            },\n            {\n                \"lat\": 40.537170039391,\n                \"long\": -3.5909105527007\n            },\n            {\n                \"lat\": 40.53720300612,\n                \"long\": -3.5909997572284\n            },\n            {\n                \"lat\": 40.5372890887,\n                \"long\": -3.5911665355595\n            },\n            {\n                \"lat\": 40.537461456302,\n                \"long\": -3.5914762428625\n            },\n            {\n                \"lat\": 40.537526278757,\n                \"long\": -3.5916779055981\n            },\n            {\n                \"lat\": 40.537545781043,\n                \"long\": -3.5918278044463\n            },\n            {\n                \"lat\": 40.537567079498,\n                \"long\": -3.5919611759753\n            },\n            {\n                \"lat\": 40.537616863753,\n                \"long\": -3.5921262198789\n            },\n            {\n                \"lat\": 40.537670085519,\n                \"long\": -3.5922884603401\n            },\n            {\n                \"lat\": 40.537682477659,\n                \"long\": -3.5925071386726\n            },\n            {\n                \"lat\": 40.537691628317,\n                \"long\": -3.592707840098\n            },\n            {\n                \"lat\": 40.537695959457,\n                \"long\": -3.592846978519\n            },\n            {\n                \"lat\": 40.537695261961,\n                \"long\": -3.5929846556387\n            },\n            {\n                \"lat\": 40.537680550416,\n                \"long\": -3.5932180796776\n            },\n            {\n                \"lat\": 40.537652202504,\n                \"long\": -3.5934753656635\n            },\n            {\n                \"lat\": 40.537640928298,\n                \"long\": -3.5937058795547\n            },\n            {\n                \"lat\": 40.537640728678,\n                \"long\": -3.5937447266411\n            },\n            {\n                \"lat\": 40.537621625073,\n                \"long\": -3.5938508314025\n            },\n            {\n                \"lat\": 40.53756666837,\n                \"long\": -3.5940090476405\n            },\n            {\n                \"lat\": 40.537481119919,\n                \"long\": -3.5942298126175\n            },\n            {\n                \"lat\": 40.537415703262,\n                \"long\": -3.5944598472273\n            },\n            {\n                \"lat\": 40.537370645977,\n                \"long\": -3.5946899315248\n            },\n            {\n                \"lat\": 40.537327109385,\n                \"long\": -3.5949395241461\n            },\n            {\n                \"lat\": 40.53727814916,\n                \"long\": -3.5952625148052\n            },\n            {\n                \"lat\": 40.537260704023,\n                \"long\": -3.5953611941426\n            },\n            {\n                \"lat\": 40.537256907848,\n                \"long\": -3.5954510201231\n            },\n            {\n                \"lat\": 40.537291045067,\n                \"long\": -3.595716178015\n            },\n            {\n                \"lat\": 40.537294054316,\n                \"long\": -3.5957790237571\n            },\n            {\n                \"lat\": 40.537283640294,\n                \"long\": -3.5958418686624\n            },\n            {\n                \"lat\": 40.537252651499,\n                \"long\": -3.5959463318924\n            },\n            {\n                \"lat\": 40.537184284603,\n                \"long\": -3.5961014628568\n            },\n            {\n                \"lat\": 40.53712247332,\n                \"long\": -3.5962955119798\n            },\n            {\n                \"lat\": 40.537098298866,\n                \"long\": -3.5964061753711\n            },\n            {\n                \"lat\": 40.537097819777,\n                \"long\": -3.596498982509\n            },\n            {\n                \"lat\": 40.53711896111,\n                \"long\": -3.5966442911724\n            },\n            {\n                \"lat\": 40.537138843588,\n                \"long\": -3.5967193307306\n            },\n            {\n                \"lat\": 40.537158880922,\n                \"long\": -3.5967643791967\n            },\n            {\n                \"lat\": 40.537226073058,\n                \"long\": -3.5968368866526\n            },\n            {\n                \"lat\": 40.53728658687,\n                \"long\": -3.5968942206169\n            },\n            {\n                \"lat\": 40.537366626598,\n                \"long\": -3.5970955507942\n            },\n            {\n                \"lat\": 40.537433366643,\n                \"long\": -3.5972729109255\n            },\n            {\n                \"lat\": 40.537439457683,\n                \"long\": -3.5974016617635\n            },\n            {\n                \"lat\": 40.537452784794,\n                \"long\": -3.5974376768488\n            },\n            {\n                \"lat\": 40.537526763992,\n                \"long\": -3.5975042234442\n            },\n            {\n                \"lat\": 40.537534436783,\n                \"long\": -3.597518697543\n            },\n            {\n                \"lat\": 40.537570216957,\n                \"long\": -3.5975854952994\n            },\n            {\n                \"lat\": 40.537650271348,\n                \"long\": -3.5977837571573\n            },\n            {\n                \"lat\": 40.537713727038,\n                \"long\": -3.5979340488041\n            },\n            {\n                \"lat\": 40.537743668211,\n                \"long\": -3.5980149648539\n            },\n            {\n                \"lat\": 40.537783105484,\n                \"long\": -3.598227980925\n            },\n            {\n                \"lat\": 40.537813213574,\n                \"long\": -3.5982940203552\n            },\n            {\n                \"lat\": 40.537927100651,\n                \"long\": -3.5984807766431\n            },\n            {\n                \"lat\": 40.537950467594,\n                \"long\": -3.5985437924711\n            },\n            {\n                \"lat\": 40.537960200453,\n                \"long\": -3.5986127209864\n            },\n            {\n                \"lat\": 40.53796634483,\n                \"long\": -3.598732629071\n            },\n            {\n                \"lat\": 40.537965646609,\n                \"long\": -3.5988673545996\n            },\n            {\n                \"lat\": 40.538006647584,\n                \"long\": -3.5991086074526\n            },\n            {\n                \"lat\": 40.538009480534,\n                \"long\": -3.5992224639646\n            },\n            {\n                \"lat\": 40.538000705156,\n                \"long\": -3.5996115847719\n            },\n            {\n                \"lat\": 40.538000114392,\n                \"long\": -3.5997254107626\n            },\n            {\n                \"lat\": 40.538009768698,\n                \"long\": -3.5998093352407\n            },\n            {\n                \"lat\": 40.538026205716,\n                \"long\": -3.5998882308987\n            },\n            {\n                \"lat\": 40.538044400167,\n                \"long\": -3.5999756560067\n            },\n            {\n                \"lat\": 40.538063922324,\n                \"long\": -3.6001196544436\n            },\n            {\n                \"lat\": 40.538062973424,\n                \"long\": -3.6003023193348\n            },\n            {\n                \"lat\": 40.538045322114,\n                \"long\": -3.600439845734\n            },\n            {\n                \"lat\": 40.538010871452,\n                \"long\": -3.6005682477905\n            },\n            {\n                \"lat\": 40.53794944129,\n                \"long\": -3.6006875525781\n            },\n            {\n                \"lat\": 40.537831413268,\n                \"long\": -3.6009843009813\n            },\n            {\n                \"lat\": 40.537797117419,\n                \"long\": -3.6010828290238\n            },\n            {\n                \"lat\": 40.537742665088,\n                \"long\": -3.6011422098056\n            },\n            {\n                \"lat\": 40.537698513712,\n                \"long\": -3.6011956604092\n            },\n            {\n                \"lat\": 40.53766776895,\n                \"long\": -3.6012523009203\n            },\n            {\n                \"lat\": 40.537664264385,\n                \"long\": -3.601285214362\n            },\n            {\n                \"lat\": 40.537714611197,\n                \"long\": -3.6013396160238\n            },\n            {\n                \"lat\": 40.537734740129,\n                \"long\": -3.6013667186421\n            },\n            {\n                \"lat\": 40.537727750239,\n                \"long\": -3.6014115271988\n            },\n            {\n                \"lat\": 40.537714097408,\n                \"long\": -3.6014383277391\n            },\n            {\n                \"lat\": 40.537680128194,\n                \"long\": -3.6014740388615\n            },\n            {\n                \"lat\": 40.537646253017,\n                \"long\": -3.6014916843059\n            },\n            {\n                \"lat\": 40.53760235044,\n                \"long\": -3.6014973138163\n            },\n            {\n                \"lat\": 40.537575278326,\n                \"long\": -3.6015060458837\n            },\n            {\n                \"lat\": 40.537558217624,\n                \"long\": -3.6015298638277\n            },\n            {\n                \"lat\": 40.537554784692,\n                \"long\": -3.6015507335361\n            },\n            {\n                \"lat\": 40.537554628544,\n                \"long\": -3.6015807248224\n            },\n            {\n                \"lat\": 40.537574492429,\n                \"long\": -3.6016587181875\n            },\n            {\n                \"lat\": 40.537587646646,\n                \"long\": -3.6017276773726\n            },\n            {\n                \"lat\": 40.537580703355,\n                \"long\": -3.6017635120185\n            },\n            {\n                \"lat\": 40.537553537129,\n                \"long\": -3.6017903095921\n            },\n            {\n                \"lat\": 40.537523026402,\n                \"long\": -3.6018019628005\n            },\n            {\n                \"lat\": 40.537474087065,\n                \"long\": -3.6018060119721\n            },\n            {\n                \"lat\": 40.537372776586,\n                \"long\": -3.6017811349606\n            },\n            {\n                \"lat\": 40.537305213093,\n                \"long\": -3.6017805304156\n            },\n            {\n                \"lat\": 40.537257700324,\n                \"long\": -3.6018220240038\n            },\n            {\n                \"lat\": 40.537213392404,\n                \"long\": -3.601905464908\n            },\n            {\n                \"lat\": 40.537196129237,\n                \"long\": -3.601968129394\n            },\n            {\n                \"lat\": 40.537169466102,\n                \"long\": -3.6022268418312\n            },\n            {\n                \"lat\": 40.537178708843,\n                \"long\": -3.6024066435206\n            },\n            {\n                \"lat\": 40.537174848511,\n                \"long\": -3.6024904462823\n            },\n            {\n                \"lat\": 40.53712364336,\n                \"long\": -3.6026007472389\n            },\n            {\n                \"lat\": 40.53704840214,\n                \"long\": -3.6027767215665\n            },\n            {\n                \"lat\": 40.537027804755,\n                \"long\": -3.6028394738684\n            },\n            {\n                \"lat\": 40.537020626382,\n                \"long\": -3.6029202946589\n            },\n            {\n                \"lat\": 40.537023396992,\n                \"long\": -3.603028115177\n            },\n            {\n                \"lat\": 40.53704685507,\n                \"long\": -3.6030731961105\n            },\n            {\n                \"lat\": 40.537077026235,\n                \"long\": -3.6031093631513\n            },\n            {\n                \"lat\": 40.537125883739,\n                \"long\": -3.603138258722\n            },\n            {\n                \"lat\": 40.537173049442,\n                \"long\": -3.6031806003684\n            },\n            {\n                \"lat\": 40.537182982967,\n                \"long\": -3.6032105638929\n            },\n            {\n                \"lat\": 40.53716892283,\n                \"long\": -3.6033152934897\n            },\n            {\n                \"lat\": 40.537155066086,\n                \"long\": -3.6033810582294\n            },\n            {\n                \"lat\": 40.537147981686,\n                \"long\": -3.6034438136084\n            },\n            {\n                \"lat\": 40.537157754835,\n                \"long\": -3.6035217164958\n            },\n            {\n                \"lat\": 40.537200921639,\n                \"long\": -3.6036569521341\n            },\n            {\n                \"lat\": 40.537244398022,\n                \"long\": -3.603750153933\n            },\n            {\n                \"lat\": 40.537294525165,\n                \"long\": -3.6038463675902\n            },\n            {\n                \"lat\": 40.537351529516,\n                \"long\": -3.6039367390948\n            },\n            {\n                \"lat\": 40.537433840165,\n                \"long\": -3.6040287550093\n            },\n            {\n                \"lat\": 40.537614977993,\n                \"long\": -3.6042758615475\n            },\n            {\n                \"lat\": 40.537685196982,\n                \"long\": -3.6044232679552\n            },\n            {\n                \"lat\": 40.537735385947,\n                \"long\": -3.6045075570473\n            },\n            {\n                \"lat\": 40.537795876004,\n                \"long\": -3.6045859166958\n            },\n            {\n                \"lat\": 40.53787654434,\n                \"long\": -3.6046645759877\n            },\n            {\n                \"lat\": 40.537911764535,\n                \"long\": -3.6047170849118\n            },\n            {\n                \"lat\": 40.537921477636,\n                \"long\": -3.6047890842245\n            },\n            {\n                \"lat\": 40.537924493524,\n                \"long\": -3.6048669274279\n            },\n            {\n                \"lat\": 40.537937786767,\n                \"long\": -3.6049089661279\n            },\n            {\n                \"lat\": 40.537954507094,\n                \"long\": -3.6049330871894\n            },\n            {\n                \"lat\": 40.538035347683,\n                \"long\": -3.6049788036835\n            },\n            {\n                \"lat\": 40.538102691639,\n                \"long\": -3.6050213287273\n            },\n            {\n                \"lat\": 40.538129576042,\n                \"long\": -3.6050484933791\n            },\n            {\n                \"lat\": 40.538176521494,\n                \"long\": -3.6051327543127\n            },\n            {\n                \"lat\": 40.53820983263,\n                \"long\": -3.605222903069\n            },\n            {\n                \"lat\": 40.538239203229,\n                \"long\": -3.6054117453243\n            },\n            {\n                \"lat\": 40.538266865968,\n                \"long\": -3.6056169858552\n            },\n            {\n                \"lat\": 40.538293027847,\n                \"long\": -3.6057819468293\n            },\n            {\n                \"lat\": 40.538299485781,\n                \"long\": -3.605838920872\n            },\n            {\n                \"lat\": 40.538285706237,\n                \"long\": -3.6058896903825\n            },\n            {\n                \"lat\": 40.538258445565,\n                \"long\": -3.6059343161926\n            },\n            {\n                \"lat\": 40.538231027576,\n                \"long\": -3.60600893353\n            },\n            {\n                \"lat\": 40.538223988197,\n                \"long\": -3.6060628338416\n            },\n            {\n                \"lat\": 40.538227097378,\n                \"long\": -3.6061227297361\n            },\n            {\n                \"lat\": 40.538263646636,\n                \"long\": -3.6062308686091\n            },\n            {\n                \"lat\": 40.538347313194,\n                \"long\": -3.6063903260933\n            },\n            {\n                \"lat\": 40.538387254483,\n                \"long\": -3.6065043882308\n            },\n            {\n                \"lat\": 40.538393491997,\n                \"long\": -3.6066032798577\n            },\n            {\n                \"lat\": 40.538372436819,\n                \"long\": -3.6067528189939\n            },\n            {\n                \"lat\": 40.538324308944,\n                \"long\": -3.6069110880142\n            },\n            {\n                \"lat\": 40.538283095392,\n                \"long\": -3.6070393081357\n            },\n            {\n                \"lat\": 40.538248652931,\n                \"long\": -3.6071647552475\n            },\n            {\n                \"lat\": 40.538241660174,\n                \"long\": -3.6072096815926\n            },\n            {\n                \"lat\": 40.538261457557,\n                \"long\": -3.6072996031542\n            },\n            {\n                \"lat\": 40.538311576817,\n                \"long\": -3.6074138874996\n            },\n            {\n                \"lat\": 40.538318081126,\n                \"long\": -3.607461887842\n            },\n            {\n                \"lat\": 40.538297355787,\n                \"long\": -3.6075484914325\n            },\n            {\n                \"lat\": 40.538266529071,\n                \"long\": -3.6076201252869\n            },\n            {\n                \"lat\": 40.538205092294,\n                \"long\": -3.6077393059165\n            },\n            {\n                \"lat\": 40.53817773588,\n                \"long\": -3.6078019966789\n            },\n            {\n                \"lat\": 40.538174151181,\n                \"long\": -3.6078497876924\n            },\n            {\n                \"lat\": 40.538187379966,\n                \"long\": -3.6079038709694\n            },\n            {\n                \"lat\": 40.538219033243,\n                \"long\": -3.6079833786863\n            },\n            {\n                \"lat\": 40.53825578582,\n                \"long\": -3.6080525531196\n            },\n            {\n                \"lat\": 40.538268982815,\n                \"long\": -3.6081126584303\n            },\n            {\n                \"lat\": 40.538251664664,\n                \"long\": -3.6082022446342\n            },\n            {\n                \"lat\": 40.538145382523,\n                \"long\": -3.6084888142142\n            },\n            {\n                \"lat\": 40.53813810566,\n                \"long\": -3.6085875833681\n            },\n            {\n                \"lat\": 40.53814440484,\n                \"long\": -3.6086744309649\n            },\n            {\n                \"lat\": 40.538160662646,\n                \"long\": -3.6088032879981\n            },\n            {\n                \"lat\": 40.5381514228,\n                \"long\": -3.6089513978315\n            },\n            {\n                \"lat\": 40.538127241394,\n                \"long\": -3.6090439916499\n            },\n            {\n                \"lat\": 40.538061964497,\n                \"long\": -3.6092590187678\n            },\n            {\n                \"lat\": 40.53801391236,\n                \"long\": -3.6094022776926\n            },\n            {\n                \"lat\": 40.538006129528,\n                \"long\": -3.6095968066262\n            },\n            {\n                \"lat\": 40.538001695075,\n                \"long\": -3.6097884138194\n            },\n            {\n                \"lat\": 40.537995434303,\n                \"long\": -3.6099846096263\n            },\n            {\n                \"lat\": 40.537991772941,\n                \"long\": -3.6100979352986\n            },\n            {\n                \"lat\": 40.537980424923,\n                \"long\": -3.6107282729319\n            },\n            {\n                \"lat\": 40.537979163999,\n                \"long\": -3.6107963830696\n            },\n            {\n                \"lat\": 40.537977245911,\n                \"long\": -3.6109035842318\n            },\n            {\n                \"lat\": 40.538009109691,\n                \"long\": -3.6109769665505\n            },\n            {\n                \"lat\": 40.538022282974,\n                \"long\": -3.6110071971923\n            },\n            {\n                \"lat\": 40.538096048777,\n                \"long\": -3.6111126064141\n            },\n            {\n                \"lat\": 40.538146084918,\n                \"long\": -3.6112418890197\n            },\n            {\n                \"lat\": 40.538172444938,\n                \"long\": -3.6113678864412\n            },\n            {\n                \"lat\": 40.538164848784,\n                \"long\": -3.6115265202224\n            },\n            {\n                \"lat\": 40.538143597213,\n                \"long\": -3.61171195256\n            },\n            {\n                \"lat\": 40.538127715853,\n                \"long\": -3.6118359127099\n            },\n            {\n                \"lat\": 40.538120939596,\n                \"long\": -3.6118736374266\n            },\n            {\n                \"lat\": 40.53811686211,\n                \"long\": -3.6119120951852\n            },\n            {\n                \"lat\": 40.538115666688,\n                \"long\": -3.6119506972462\n            },\n            {\n                \"lat\": 40.538117263247,\n                \"long\": -3.6119894427948\n            },\n            {\n                \"lat\": 40.538121654914,\n                \"long\": -3.6120277414523\n            },\n            {\n                \"lat\": 40.538133340356,\n                \"long\": -3.6120836889661\n            },\n            {\n                \"lat\": 40.538151075757,\n                \"long\": -3.6121369874788\n            },\n            {\n                \"lat\": 40.538174327556,\n                \"long\": -3.6121863214302\n            },\n            {\n                \"lat\": 40.538374173109,\n                \"long\": -3.612520898012\n            },\n            {\n                \"lat\": 40.538383090163,\n                \"long\": -3.6125382193227\n            },\n            {\n                \"lat\": 40.538462714817,\n                \"long\": -3.6126937513479\n            },\n            {\n                \"lat\": 40.538486041968,\n                \"long\": -3.6127628062729\n            },\n            {\n                \"lat\": 40.538495845235,\n                \"long\": -3.6128168595459\n            },\n            {\n                \"lat\": 40.538482046976,\n                \"long\": -3.6128705796688\n            },\n            {\n                \"lat\": 40.538444471175,\n                \"long\": -3.6129571462909\n            },\n            {\n                \"lat\": 40.538399906673,\n                \"long\": -3.6130704539223\n            },\n            {\n                \"lat\": 40.538392895959,\n                \"long\": -3.6131183316541\n            },\n            {\n                \"lat\": 40.538399270687,\n                \"long\": -3.6131903022401\n            },\n            {\n                \"lat\": 40.538415894011,\n                \"long\": -3.6132323732383\n            },\n            {\n                \"lat\": 40.538442850873,\n                \"long\": -3.6132624940289\n            },\n            {\n                \"lat\": 40.538490002374,\n                \"long\": -3.6132898351218\n            },\n            {\n                \"lat\": 40.538557326907,\n                \"long\": -3.6133354387564\n            },\n            {\n                \"lat\": 40.538590775099,\n                \"long\": -3.6133985640713\n            },\n            {\n                \"lat\": 40.538597006705,\n                \"long\": -3.6134974565634\n            },\n            {\n                \"lat\": 40.538599306427,\n                \"long\": -3.6136920786924\n            },\n            {\n                \"lat\": 40.53858862801,\n                \"long\": -3.6138028613757\n            },\n            {\n                \"lat\": 40.53857309385,\n                \"long\": -3.6138610526843\n            },\n            {\n                \"lat\": 40.538607032844,\n                \"long\": -3.6138826174564\n            },\n            {\n                \"lat\": 40.538635529752,\n                \"long\": -3.6139110994862\n            },\n            {\n                \"lat\": 40.538638213463,\n                \"long\": -3.6139146664834\n            },\n            {\n                \"lat\": 40.538687773273,\n                \"long\": -3.6139804190054\n            },\n            {\n                \"lat\": 40.538751773601,\n                \"long\": -3.6140751158471\n            },\n            {\n                \"lat\": 40.538858585016,\n                \"long\": -3.6142170830615\n            },\n            {\n                \"lat\": 40.5389298258,\n                \"long\": -3.6143054699842\n            },\n            {\n                \"lat\": 40.538948740376,\n                \"long\": -3.6143401232399\n            },\n            {\n                \"lat\": 40.53895800616,\n                \"long\": -3.6143934636996\n            },\n            {\n                \"lat\": 40.538964706578,\n                \"long\": -3.6144718027052\n            },\n            {\n                \"lat\": 40.538985819758,\n                \"long\": -3.6145504033253\n            },\n            {\n                \"lat\": 40.539018007351,\n                \"long\": -3.6146132819585\n            },\n            {\n                \"lat\": 40.539021306556,\n                \"long\": -3.6146196886443\n            },\n            {\n                \"lat\": 40.539031019342,\n                \"long\": -3.6146228475954\n            },\n            {\n                \"lat\": 40.539088123073,\n                \"long\": -3.6146421448533\n            },\n            {\n                \"lat\": 40.539145390008,\n                \"long\": -3.614664631909\n            },\n            {\n                \"lat\": 40.539278498178,\n                \"long\": -3.6147912541624\n            },\n            {\n                \"lat\": 40.539721331623,\n                \"long\": -3.6151023240339\n            },\n            {\n                \"lat\": 40.539746891637,\n                \"long\": -3.6151578217115\n            },\n            {\n                \"lat\": 40.539750631803,\n                \"long\": -3.6151660038061\n            },\n            {\n                \"lat\": 40.53980944882,\n                \"long\": -3.6152357398531\n            },\n            {\n                \"lat\": 40.539872825143,\n                \"long\": -3.6163768952236\n            },\n            {\n                \"lat\": 40.539902471105,\n                \"long\": -3.6170018274338\n            },\n            {\n                \"lat\": 40.539897232891,\n                \"long\": -3.6174595968126\n            },\n            {\n                \"lat\": 40.539869562626,\n                \"long\": -3.6180012368267\n            },\n            {\n                \"lat\": 40.53986645194,\n                \"long\": -3.6185825310075\n            },\n            {\n                \"lat\": 40.539876348452,\n                \"long\": -3.6190727947281\n            },\n            {\n                \"lat\": 40.539895381646,\n                \"long\": -3.6197907997535\n            },\n            {\n                \"lat\": 40.539925047764,\n                \"long\": -3.6201383627074\n            },\n            {\n                \"lat\": 40.540005691266,\n                \"long\": -3.6206223129269\n            },\n            {\n                \"lat\": 40.540064845596,\n                \"long\": -3.6208466313897\n            },\n            {\n                \"lat\": 40.540121662921,\n                \"long\": -3.6211201586616\n            },\n            {\n                \"lat\": 40.540173144237,\n                \"long\": -3.6213974276467\n            },\n            {\n                \"lat\": 40.540186069948,\n                \"long\": -3.621690872662\n            },\n            {\n                \"lat\": 40.540207104893,\n                \"long\": -3.6221680047373\n            },\n            {\n                \"lat\": 40.540228865559,\n                \"long\": -3.6224766468358\n            },\n            {\n                \"lat\": 40.540236231196,\n                \"long\": -3.6225809850116\n            },\n            {\n                \"lat\": 40.540236821064,\n                \"long\": -3.6225885479809\n            },\n            {\n                \"lat\": 40.540237428112,\n                \"long\": -3.6225929227855\n            },\n            {\n                \"lat\": 40.540240256724,\n                \"long\": -3.6226029862896\n            },\n            {\n                \"lat\": 40.540279359335,\n                \"long\": -3.6227359590528\n            },\n            {\n                \"lat\": 40.540285182521,\n                \"long\": -3.622909127274\n            },\n            {\n                \"lat\": 40.540294590836,\n                \"long\": -3.6232209619009\n            },\n            {\n                \"lat\": 40.540289498952,\n                \"long\": -3.6233465583817\n            },\n            {\n                \"lat\": 40.540249959033,\n                \"long\": -3.6235619233393\n            },\n            {\n                \"lat\": 40.540207176255,\n                \"long\": -3.623777151685\n            },\n            {\n                \"lat\": 40.540124182814,\n                \"long\": -3.6241148159383\n            },\n            {\n                \"lat\": 40.540094274183,\n                \"long\": -3.6242647435122\n            },\n            {\n                \"lat\": 40.540056983385,\n                \"long\": -3.6246136949705\n            },\n            {\n                \"lat\": 40.540038088675,\n                \"long\": -3.6250257448749\n            },\n            {\n                \"lat\": 40.540043344925,\n                \"long\": -3.625203158476\n            },\n            {\n                \"lat\": 40.540052252876,\n                \"long\": -3.6253549814594\n            },\n            {\n                \"lat\": 40.540083792908,\n                \"long\": -3.6254864680681\n            },\n            {\n                \"lat\": 40.54009520216,\n                \"long\": -3.625692043492\n            },\n            {\n                \"lat\": 40.540394611026,\n                \"long\": -3.6262825331575\n            },\n            {\n                \"lat\": 40.540629492134,\n                \"long\": -3.6267440780807\n            },\n            {\n                \"lat\": 40.540835399111,\n                \"long\": -3.6271491465299\n            },\n            {\n                \"lat\": 40.54089405144,\n                \"long\": -3.6272644742958\n            },\n            {\n                \"lat\": 40.540936926163,\n                \"long\": -3.627348822475\n            },\n            {\n                \"lat\": 40.541283846365,\n                \"long\": -3.6280308281626\n            },\n            {\n                \"lat\": 40.541541228442,\n                \"long\": -3.6279465551451\n            },\n            {\n                \"lat\": 40.541761690424,\n                \"long\": -3.6279272398333\n            },\n            {\n                \"lat\": 40.541876156971,\n                \"long\": -3.6279173264625\n            },\n            {\n                \"lat\": 40.542365777557,\n                \"long\": -3.6278199870895\n            },\n            {\n                \"lat\": 40.542561870296,\n                \"long\": -3.6277907602476\n            },\n            {\n                \"lat\": 40.542671669766,\n                \"long\": -3.6277776145326\n            },\n            {\n                \"lat\": 40.542813822528,\n                \"long\": -3.6277789416959\n            },\n            {\n                \"lat\": 40.542949276594,\n                \"long\": -3.6278027616728\n            },\n            {\n                \"lat\": 40.543037420442,\n                \"long\": -3.627829092288\n            },\n            {\n                \"lat\": 40.543176968858,\n                \"long\": -3.6278952155262\n            },\n            {\n                \"lat\": 40.543239197569,\n                \"long\": -3.6279325230232\n            },\n            {\n                \"lat\": 40.543296631912,\n                \"long\": -3.6279734466484\n            },\n            {\n                \"lat\": 40.543338770553,\n                \"long\": -3.6280108028306\n            },\n            {\n                \"lat\": 40.543389965954,\n                \"long\": -3.6280559196067\n            },\n            {\n                \"lat\": 40.543446879856,\n                \"long\": -3.6281097105627\n            },\n            {\n                \"lat\": 40.543494798804,\n                \"long\": -3.6281609376509\n            },\n            {\n                \"lat\": 40.543533455738,\n                \"long\": -3.628207354605\n            },\n            {\n                \"lat\": 40.543560826926,\n                \"long\": -3.6282433921702\n            },\n            {\n                \"lat\": 40.543571740135,\n                \"long\": -3.6282576651647\n            },\n            {\n                \"lat\": 40.543603834392,\n                \"long\": -3.6283031942607\n            },\n            {\n                \"lat\": 40.543647540664,\n                \"long\": -3.6283670180878\n            },\n            {\n                \"lat\": 40.543700980641,\n                \"long\": -3.6284466392244\n            },\n            {\n                \"lat\": 40.543732923714,\n                \"long\": -3.6285033858432\n            },\n            {\n                \"lat\": 40.543764882176,\n                \"long\": -3.6285572984461\n            },\n            {\n                \"lat\": 40.543816114382,\n                \"long\": -3.6286452837881\n            },\n            {\n                \"lat\": 40.543860921512,\n                \"long\": -3.6287219904063\n            },\n            {\n                \"lat\": 40.543892818818,\n                \"long\": -3.6287871214285\n            },\n            {\n                \"lat\": 40.543927028605,\n                \"long\": -3.6288411734428\n            },\n            {\n                \"lat\": 40.543978856531,\n                \"long\": -3.6289355299783\n            },\n            {\n                \"lat\": 40.543990989046,\n                \"long\": -3.6289574906013\n            },\n            {\n                \"lat\": 40.544022824498,\n                \"long\": -3.6290339581815\n            },\n            {\n                \"lat\": 40.544063184514,\n                \"long\": -3.6291331794041\n            },\n            {\n                \"lat\": 40.544103559879,\n                \"long\": -3.6292295666615\n            },\n            {\n                \"lat\": 40.544154606958,\n                \"long\": -3.6293514438968\n            },\n            {\n                \"lat\": 40.544207679519,\n                \"long\": -3.6294818429768\n            },\n            {\n                \"lat\": 40.544230910302,\n                \"long\": -3.6295667331851\n            },\n            {\n                \"lat\": 40.544264691771,\n                \"long\": -3.6296827807437\n            },\n            {\n                \"lat\": 40.544292092601,\n                \"long\": -3.629795934417\n            },\n            {\n                \"lat\": 40.544332144207,\n                \"long\": -3.6299516021703\n            },\n            {\n                \"lat\": 40.544483775124,\n                \"long\": -3.630577017045\n            },\n            {\n                \"lat\": 40.544607690723,\n                \"long\": -3.6311134979808\n            },\n            {\n                \"lat\": 40.544616668359,\n                \"long\": -3.6311521988977\n            },\n            {\n                \"lat\": 40.544703001793,\n                \"long\": -3.6315261741593\n            },\n            {\n                \"lat\": 40.5448870815,\n                \"long\": -3.6322292646078\n            },\n            {\n                \"lat\": 40.544929369379,\n                \"long\": -3.632370784902\n            },\n            {\n                \"lat\": 40.544980167871,\n                \"long\": -3.6325210063245\n            },\n            {\n                \"lat\": 40.545043815463,\n                \"long\": -3.6326937750207\n            },\n            {\n                \"lat\": 40.545103277765,\n                \"long\": -3.6328411261246\n            },\n            {\n                \"lat\": 40.545162832392,\n                \"long\": -3.632971590819\n            },\n            {\n                \"lat\": 40.545240273603,\n                \"long\": -3.6331259612264\n            },\n            {\n                \"lat\": 40.545314869458,\n                \"long\": -3.6332734556829\n            },\n            {\n                \"lat\": 40.545402225972,\n                \"long\": -3.6334267392499\n            },\n            {\n                \"lat\": 40.545487634031,\n                \"long\": -3.6335574486623\n            },\n            {\n                \"lat\": 40.545566633614,\n                \"long\": -3.6336739265611\n            },\n            {\n                \"lat\": 40.545596564328,\n                \"long\": -3.6337193211108\n            },\n            {\n                \"lat\": 40.545641430288,\n                \"long\": -3.633784684721\n            },\n            {\n                \"lat\": 40.545684180774,\n                \"long\": -3.6338415374019\n            },\n            {\n                \"lat\": 40.545737589026,\n                \"long\": -3.633909827825\n            },\n            {\n                \"lat\": 40.545771752944,\n                \"long\": -3.6339553806067\n            },\n            {\n                \"lat\": 40.545810362711,\n                \"long\": -3.6339951886632\n            },\n            {\n                \"lat\": 40.545878759222,\n                \"long\": -3.6340721235947\n            },\n            {\n                \"lat\": 40.545933713676,\n                \"long\": -3.6341212974266\n            },\n            {\n                \"lat\": 40.546003564989,\n                \"long\": -3.6341974196786\n            },\n            {\n                \"lat\": 40.546095053877,\n                \"long\": -3.6342869730034\n            },\n            {\n                \"lat\": 40.546161105381,\n                \"long\": -3.6343495967669\n            },\n            {\n                \"lat\": 40.546219207462,\n                \"long\": -3.6343997455074\n            },\n            {\n                \"lat\": 40.546286892086,\n                \"long\": -3.6344602591704\n            },\n            {\n                \"lat\": 40.546348661617,\n                \"long\": -3.6345151665836\n            },\n            {\n                \"lat\": 40.546752435891,\n                \"long\": -3.6348109024049\n            },\n            {\n                \"lat\": 40.546964845242,\n                \"long\": -3.6350111942823\n            },\n            {\n                \"lat\": 40.547130294203,\n                \"long\": -3.6351830544849\n            },\n            {\n                \"lat\": 40.547272492885,\n                \"long\": -3.6353545777155\n            },\n            {\n                \"lat\": 40.547356202886,\n                \"long\": -3.6354660271267\n            },\n            {\n                \"lat\": 40.547456858511,\n                \"long\": -3.6356085788761\n            },\n            {\n                \"lat\": 40.547585500538,\n                \"long\": -3.6358222432501\n            },\n            {\n                \"lat\": 40.547679850311,\n                \"long\": -3.6360137474946\n            },\n            {\n                \"lat\": 40.547798171574,\n                \"long\": -3.6362855504491\n            },\n            {\n                \"lat\": 40.547877954905,\n                \"long\": -3.6365045533149\n            },\n            {\n                \"lat\": 40.547896438257,\n                \"long\": -3.6365672029296\n            },\n            {\n                \"lat\": 40.547910554966,\n                \"long\": -3.6366211899653\n            },\n            {\n                \"lat\": 40.547916694902,\n                \"long\": -3.636651363481\n            },\n            {\n                \"lat\": 40.547920380812,\n                \"long\": -3.636669113313\n            },\n            {\n                \"lat\": 40.547933539469,\n                \"long\": -3.6367007705034\n            },\n            {\n                \"lat\": 40.547940888873,\n                \"long\": -3.6367239876183\n            },\n            {\n                \"lat\": 40.547999069287,\n                \"long\": -3.63675973234\n            },\n            {\n                \"lat\": 40.548033935923,\n                \"long\": -3.6367756517423\n            },\n            {\n                \"lat\": 40.548036633883,\n                \"long\": -3.6367765039948\n            },\n            {\n                \"lat\": 40.548082865407,\n                \"long\": -3.636789932868\n            },\n            {\n                \"lat\": 40.54813230545,\n                \"long\": -3.6368096514458\n            },\n            {\n                \"lat\": 40.548196729678,\n                \"long\": -3.6368403653823\n            },\n            {\n                \"lat\": 40.548447557072,\n                \"long\": -3.6369673373938\n            },\n            {\n                \"lat\": 40.549040639659,\n                \"long\": -3.6372380946138\n            },\n            {\n                \"lat\": 40.549308681803,\n                \"long\": -3.6373145672196\n            },\n            {\n                \"lat\": 40.549502322256,\n                \"long\": -3.6373726196715\n            },\n            {\n                \"lat\": 40.549578236268,\n                \"long\": -3.6374434922636\n            },\n            {\n                \"lat\": 40.549679250699,\n                \"long\": -3.6375532226017\n            },\n            {\n                \"lat\": 40.549875329203,\n                \"long\": -3.6377554910829\n            },\n            {\n                \"lat\": 40.549944929928,\n                \"long\": -3.6378276037382\n            },\n            {\n                \"lat\": 40.549945377087,\n                \"long\": -3.6378281984962\n            },\n            {\n                \"lat\": 40.550241158588,\n                \"long\": -3.6381344130232\n            },\n            {\n                \"lat\": 40.550614800471,\n                \"long\": -3.6385176650695\n            },\n            {\n                \"lat\": 40.551005875508,\n                \"long\": -3.6389249324753\n            },\n            {\n                \"lat\": 40.551120795422,\n                \"long\": -3.6390433031541\n            },\n            {\n                \"lat\": 40.551123572342,\n                \"long\": -3.6390461640762\n            },\n            {\n                \"lat\": 40.551360686072,\n                \"long\": -3.6392902983943\n            },\n            {\n                \"lat\": 40.551698588517,\n                \"long\": -3.639635653654\n            },\n            {\n                \"lat\": 40.551755118177,\n                \"long\": -3.6396927644543\n            },\n            {\n                \"lat\": 40.551825868944,\n                \"long\": -3.6397196573622\n            },\n            {\n                \"lat\": 40.552956859781,\n                \"long\": -3.6399097096085\n            },\n            {\n                \"lat\": 40.553090769925,\n                \"long\": -3.6399677946741\n            },\n            {\n                \"lat\": 40.553358624573,\n                \"long\": -3.6401427841467\n            },\n            {\n                \"lat\": 40.553417150422,\n                \"long\": -3.6401810183491\n            },\n            {\n                \"lat\": 40.553564801973,\n                \"long\": -3.6402613099038\n            },\n            {\n                \"lat\": 40.553569112903,\n                \"long\": -3.6402637131561\n            },\n            {\n                \"lat\": 40.553775064208,\n                \"long\": -3.6403758713919\n            },\n            {\n                \"lat\": 40.553862939594,\n                \"long\": -3.6404175746453\n            },\n            {\n                \"lat\": 40.554076704403,\n                \"long\": -3.6406478005196\n            },\n            {\n                \"lat\": 40.554085134288,\n                \"long\": -3.6406547312675\n            },\n            {\n                \"lat\": 40.554102747831,\n                \"long\": -3.6406788755547\n            },\n            {\n                \"lat\": 40.554325466048,\n                \"long\": -3.6409839525697\n            },\n            {\n                \"lat\": 40.554467111317,\n                \"long\": -3.6413201362476\n            },\n            {\n                \"lat\": 40.554507838418,\n                \"long\": -3.6414486753591\n            },\n            {\n                \"lat\": 40.554553154625,\n                \"long\": -3.6415943845477\n            },\n            {\n                \"lat\": 40.554580097102,\n                \"long\": -3.6416581855554\n            },\n            {\n                \"lat\": 40.55464981083,\n                \"long\": -3.6418230258198\n            },\n            {\n                \"lat\": 40.554655232729,\n                \"long\": -3.6419173304335\n            },\n            {\n                \"lat\": 40.554651492752,\n                \"long\": -3.6419905237338\n            },\n            {\n                \"lat\": 40.554648054485,\n                \"long\": -3.6420580505648\n            },\n            {\n                \"lat\": 40.554637081395,\n                \"long\": -3.6422007422989\n            },\n            {\n                \"lat\": 40.554600203665,\n                \"long\": -3.6423684622228\n            },\n            {\n                \"lat\": 40.554506973397,\n                \"long\": -3.6426418132868\n            },\n            {\n                \"lat\": 40.554510171736,\n                \"long\": -3.6426498754196\n            },\n            {\n                \"lat\": 40.554588256677,\n                \"long\": -3.6428481039563\n            },\n            {\n                \"lat\": 40.554611620084,\n                \"long\": -3.6429073830354\n            },\n            {\n                \"lat\": 40.55474984369,\n                \"long\": -3.6432584332993\n            },\n            {\n                \"lat\": 40.554764235358,\n                \"long\": -3.6432948312694\n            },\n            {\n                \"lat\": 40.554823575304,\n                \"long\": -3.6434455190815\n            },\n            {\n                \"lat\": 40.555108103191,\n                \"long\": -3.6441678882855\n            },\n            {\n                \"lat\": 40.555108812665,\n                \"long\": -3.6441699029912\n            },\n            {\n                \"lat\": 40.555201270955,\n                \"long\": -3.644423431293\n            },\n            {\n                \"lat\": 40.555146870274,\n                \"long\": -3.6444857453825\n            },\n            {\n                \"lat\": 40.555097338968,\n                \"long\": -3.6445795238851\n            },\n            {\n                \"lat\": 40.555069032146,\n                \"long\": -3.6446475211775\n            },\n            {\n                \"lat\": 40.554998080795,\n                \"long\": -3.6448182210614\n            },\n            {\n                \"lat\": 40.554912111387,\n                \"long\": -3.6450809036461\n            },\n            {\n                \"lat\": 40.554884350331,\n                \"long\": -3.6452124380718\n            },\n            {\n                \"lat\": 40.555108046894,\n                \"long\": -3.6454047459815\n            },\n            {\n                \"lat\": 40.555276083984,\n                \"long\": -3.6455620317226\n            },\n            {\n                \"lat\": 40.555279032985,\n                \"long\": -3.6455663120944\n            },\n            {\n                \"lat\": 40.555296463338,\n                \"long\": -3.645590810676\n            },\n            {\n                \"lat\": 40.555305654832,\n                \"long\": -3.6456064898081\n            },\n            {\n                \"lat\": 40.555321594996,\n                \"long\": -3.6456397144191\n            },\n            {\n                \"lat\": 40.555328252921,\n                \"long\": -3.6456573771379\n            },\n            {\n                \"lat\": 40.555334188194,\n                \"long\": -3.6456753872555\n            },\n            {\n                \"lat\": 40.555343167475,\n                \"long\": -3.645712915186\n            },\n            {\n                \"lat\": 40.555348536797,\n                \"long\": -3.6457515895682\n            },\n            {\n                \"lat\": 40.555338191945,\n                \"long\": -3.64579719972\n            },\n            {\n                \"lat\": 40.555403642758,\n                \"long\": -3.6458210967905\n            },\n            {\n                \"lat\": 40.555409845984,\n                \"long\": -3.6458234005365\n            },\n            {\n                \"lat\": 40.555402902204,\n                \"long\": -3.6458568778007\n            },\n            {\n                \"lat\": 40.555401975618,\n                \"long\": -3.6458614752892\n            },\n            {\n                \"lat\": 40.55538721238,\n                \"long\": -3.6458916883609\n            },\n            {\n                \"lat\": 40.555372404893,\n                \"long\": -3.6459298145366\n            },\n            {\n                \"lat\": 40.555348172565,\n                \"long\": -3.6459778896783\n            },\n            {\n                \"lat\": 40.555274662475,\n                \"long\": -3.6461063981297\n            },\n            {\n                \"lat\": 40.555185124234,\n                \"long\": -3.6462979422412\n            },\n            {\n                \"lat\": 40.555084183969,\n                \"long\": -3.6465790114162\n            },\n            {\n                \"lat\": 40.554996207265,\n                \"long\": -3.6468133258932\n            },\n            {\n                \"lat\": 40.554951304888,\n                \"long\": -3.6470309282149\n            },\n            {\n                \"lat\": 40.554898633334,\n                \"long\": -3.6472506995513\n            },\n            {\n                \"lat\": 40.554871441848,\n                \"long\": -3.6474891414199\n            },\n            {\n                \"lat\": 40.554836308046,\n                \"long\": -3.6477943577333\n            },\n            {\n                \"lat\": 40.554790382744,\n                \"long\": -3.6480478431123\n            },\n            {\n                \"lat\": 40.554790565402,\n                \"long\": -3.6481598146161\n            },\n            {\n                \"lat\": 40.554793827828,\n                \"long\": -3.6484935111996\n            },\n            {\n                \"lat\": 40.554779711155,\n                \"long\": -3.6487293618173\n            },\n            {\n                \"lat\": 40.554774461107,\n                \"long\": -3.6490545902476\n            },\n            {\n                \"lat\": 40.554771994762,\n                \"long\": -3.6493331796629\n            },\n            {\n                \"lat\": 40.55479350694,\n                \"long\": -3.6496250048893\n            },\n            {\n                \"lat\": 40.554808320851,\n                \"long\": -3.6498903085395\n            },\n            {\n                \"lat\": 40.554809705606,\n                \"long\": -3.6500925289362\n            },\n            {\n                \"lat\": 40.554804964332,\n                \"long\": -3.6503266983021\n            },\n            {\n                \"lat\": 40.554795356496,\n                \"long\": -3.6505131034659\n            },\n            {\n                \"lat\": 40.554795521466,\n                \"long\": -3.6506277913704\n            },\n            {\n                \"lat\": 40.554809566969,\n                \"long\": -3.6508851625139\n            },\n            {\n                \"lat\": 40.554823315359,\n                \"long\": -3.6510352973725\n            },\n            {\n                \"lat\": 40.55487440104,\n                \"long\": -3.6513875287802\n            },\n            {\n                \"lat\": 40.554952768881,\n                \"long\": -3.6517725060173\n            },\n            {\n                \"lat\": 40.554978809344,\n                \"long\": -3.6518993744521\n            },\n            {\n                \"lat\": 40.554983987116,\n                \"long\": -3.6520354777335\n            },\n            {\n                \"lat\": 40.555010548521,\n                \"long\": -3.6523412909331\n            },\n            {\n                \"lat\": 40.555057355911,\n                \"long\": -3.6526990340198\n            },\n            {\n                \"lat\": 40.555099131195,\n                \"long\": -3.6528949151751\n            },\n            {\n                \"lat\": 40.55515319723,\n                \"long\": -3.6531795001227\n            },\n            {\n                \"lat\": 40.555162313497,\n                \"long\": -3.6532401684527\n            },\n            {\n                \"lat\": 40.555165253817,\n                \"long\": -3.653325592138\n            },\n            {\n                \"lat\": 40.555133056671,\n                \"long\": -3.6537141042837\n            },\n            {\n                \"lat\": 40.555118279657,\n                \"long\": -3.6540488083564\n            },\n            {\n                \"lat\": 40.555135670658,\n                \"long\": -3.6541435854053\n            },\n            {\n                \"lat\": 40.557248817029,\n                \"long\": -3.6555651012117\n            },\n            {\n                \"lat\": 40.558484425425,\n                \"long\": -3.656396290849\n            },\n            {\n                \"lat\": 40.559260622434,\n                \"long\": -3.6569185184047\n            },\n            {\n                \"lat\": 40.559687718954,\n                \"long\": -3.6572058155574\n            },\n            {\n                \"lat\": 40.559689603985,\n                \"long\": -3.6572070151937\n            },\n            {\n                \"lat\": 40.561290587044,\n                \"long\": -3.6582615524132\n            },\n            {\n                \"lat\": 40.568777936643,\n                \"long\": -3.6631938967973\n            },\n            {\n                \"lat\": 40.569685734472,\n                \"long\": -3.6637920113812\n            },\n            {\n                \"lat\": 40.569734378256,\n                \"long\": -3.6638240348243\n            },\n            {\n                \"lat\": 40.577627388377,\n                \"long\": -3.6680741466209\n            },\n            {\n                \"lat\": 40.5824967327,\n                \"long\": -3.6706957308191\n            },\n            {\n                \"lat\": 40.586150534471,\n                \"long\": -3.6726560773814\n            },\n            {\n                \"lat\": 40.588856338396,\n                \"long\": -3.6741185928176\n            },\n            {\n                \"lat\": 40.588569380402,\n                \"long\": -3.6747405869599\n            },\n            {\n                \"lat\": 40.58830226483,\n                \"long\": -3.6752810133152\n            },\n            {\n                \"lat\": 40.58805680903,\n                \"long\": -3.6757851389054\n            },\n            {\n                \"lat\": 40.587788265207,\n                \"long\": -3.6763070963433\n            },\n            {\n                \"lat\": 40.587493954198,\n                \"long\": -3.6768751238828\n            },\n            {\n                \"lat\": 40.58725488043,\n                \"long\": -3.677365121758\n            },\n            {\n                \"lat\": 40.587039086985,\n                \"long\": -3.6778007575168\n            },\n            {\n                \"lat\": 40.586881617828,\n                \"long\": -3.6781069832154\n            },\n            {\n                \"lat\": 40.586809992262,\n                \"long\": -3.6782460522098\n            },\n            {\n                \"lat\": 40.586705503061,\n                \"long\": -3.6784601797404\n            },\n            {\n                \"lat\": 40.586580812264,\n                \"long\": -3.6787224328341\n            },\n            {\n                \"lat\": 40.586562582604,\n                \"long\": -3.6787585259049\n            },\n            {\n                \"lat\": 40.586350682272,\n                \"long\": -3.6792052997801\n            },\n            {\n                \"lat\": 40.586209742418,\n                \"long\": -3.6795035446638\n            },\n            {\n                \"lat\": 40.586130522,\n                \"long\": -3.6796776175444\n            },\n            {\n                \"lat\": 40.586035830715,\n                \"long\": -3.6798796687686\n            },\n            {\n                \"lat\": 40.585943974108,\n                \"long\": -3.6800730038374\n            },\n            {\n                \"lat\": 40.585849946155,\n                \"long\": -3.6802678525355\n            },\n            {\n                \"lat\": 40.585748204072,\n                \"long\": -3.6804875555032\n            },\n            {\n                \"lat\": 40.585606187854,\n                \"long\": -3.6807997276524\n            },\n            {\n                \"lat\": 40.585381888218,\n                \"long\": -3.6812548708158\n            },\n            {\n                \"lat\": 40.585174942497,\n                \"long\": -3.6816863060278\n            },\n            {\n                \"lat\": 40.58496399254,\n                \"long\": -3.6821380340095\n            },\n            {\n                \"lat\": 40.584703501719,\n                \"long\": -3.6825577057026\n            },\n            {\n                \"lat\": 40.584216680049,\n                \"long\": -3.6833645258597\n            },\n            {\n                \"lat\": 40.583875545089,\n                \"long\": -3.6839077920446\n            },\n            {\n                \"lat\": 40.583651708928,\n                \"long\": -3.6842537360076\n            },\n            {\n                \"lat\": 40.583409191137,\n                \"long\": -3.684770809898\n            },\n            {\n                \"lat\": 40.583286897257,\n                \"long\": -3.6850062402149\n            },\n            {\n                \"lat\": 40.58324650131,\n                \"long\": -3.6851035476164\n            },\n            {\n                \"lat\": 40.58315656073,\n                \"long\": -3.6853217009525\n            },\n            {\n                \"lat\": 40.583039513176,\n                \"long\": -3.6855700625061\n            },\n            {\n                \"lat\": 40.582932380997,\n                \"long\": -3.6858006821745\n            },\n            {\n                \"lat\": 40.582742972718,\n                \"long\": -3.6865814313627\n            },\n            {\n                \"lat\": 40.582588395043,\n                \"long\": -3.6872609266596\n            },\n            {\n                \"lat\": 40.582616470462,\n                \"long\": -3.6885687644298\n            },\n            {\n                \"lat\": 40.582225508503,\n                \"long\": -3.6891697325843\n            },\n            {\n                \"lat\": 40.58215814835,\n                \"long\": -3.6892711310517\n            },\n            {\n                \"lat\": 40.582108220186,\n                \"long\": -3.689334779106\n            },\n            {\n                \"lat\": 40.582046443312,\n                \"long\": -3.6894063284338\n            },\n            {\n                \"lat\": 40.581801435538,\n                \"long\": -3.6897044091538\n            },\n            {\n                \"lat\": 40.581586970091,\n                \"long\": -3.6899551836744\n            },\n            {\n                \"lat\": 40.581477289059,\n                \"long\": -3.6900832037378\n            },\n            {\n                \"lat\": 40.581312643067,\n                \"long\": -3.6902734003238\n            },\n            {\n                \"lat\": 40.580976681422,\n                \"long\": -3.6906707367824\n            },\n            {\n                \"lat\": 40.580803479812,\n                \"long\": -3.6910711621899\n            },\n            {\n                \"lat\": 40.580701160676,\n                \"long\": -3.6912935321565\n            },\n            {\n                \"lat\": 40.580625658387,\n                \"long\": -3.6914605375615\n            },\n            {\n                \"lat\": 40.580546735799,\n                \"long\": -3.6916420406344\n            },\n            {\n                \"lat\": 40.580483479042,\n                \"long\": -3.6917949926334\n            },\n            {\n                \"lat\": 40.580323169631,\n                \"long\": -3.6923600186349\n            },\n            {\n                \"lat\": 40.580195304551,\n                \"long\": -3.6928158342448\n            },\n            {\n                \"lat\": 40.580031089884,\n                \"long\": -3.6933687631633\n            },\n            {\n                \"lat\": 40.579892568905,\n                \"long\": -3.6942644877135\n            },\n            {\n                \"lat\": 40.579672300747,\n                \"long\": -3.6958071832013\n            },\n            {\n                \"lat\": 40.579346755296,\n                \"long\": -3.6969390389392\n            },\n            {\n                \"lat\": 40.579313148116,\n                \"long\": -3.6970592077274\n            },\n            {\n                \"lat\": 40.578973567159,\n                \"long\": -3.6982739557573\n            },\n            {\n                \"lat\": 40.578614420475,\n                \"long\": -3.6994610761276\n            },\n            {\n                \"lat\": 40.57863454747,\n                \"long\": -3.701564402238\n            },\n            {\n                \"lat\": 40.578309973717,\n                \"long\": -3.7015637289902\n            },\n            {\n                \"lat\": 40.578309726686,\n                \"long\": -3.7015154019556\n            },\n            {\n                \"lat\": 40.578308811816,\n                \"long\": -3.7012951557695\n            },\n            {\n                \"lat\": 40.578303330855,\n                \"long\": -3.700430102685\n            },\n            {\n                \"lat\": 40.578301469975,\n                \"long\": -3.7002912656816\n            },\n            {\n                \"lat\": 40.578294692643,\n                \"long\": -3.7002649651144\n            },\n            {\n                \"lat\": 40.578277077097,\n                \"long\": -3.7002135031811\n            },\n            {\n                \"lat\": 40.578244649086,\n                \"long\": -3.7001237235554\n            },\n            {\n                \"lat\": 40.578208095836,\n                \"long\": -3.7000308290494\n            },\n            {\n                \"lat\": 40.578187390183,\n                \"long\": -3.6999838248298\n            },\n            {\n                \"lat\": 40.578144455068,\n                \"long\": -3.699918275329\n            },\n            {\n                \"lat\": 40.578102133418,\n                \"long\": -3.6998406807665\n            },\n            {\n                \"lat\": 40.578041873271,\n                \"long\": -3.6997500207919\n            },\n            {\n                \"lat\": 40.577995078499,\n                \"long\": -3.6996836043059\n            },\n            {\n                \"lat\": 40.577978553537,\n                \"long\": -3.699660274322\n            },\n            {\n                \"lat\": 40.577915444239,\n                \"long\": -3.6995640318532\n            },\n            {\n                \"lat\": 40.577911606475,\n                \"long\": -3.6995580842755\n            },\n            {\n                \"lat\": 40.577843324541,\n                \"long\": -3.6994531630371\n            },\n            {\n                \"lat\": 40.577839040652,\n                \"long\": -3.6994465019145\n            },\n            {\n                \"lat\": 40.577717593048,\n                \"long\": -3.6992843144654\n            },\n            {\n                \"lat\": 40.577695162621,\n                \"long\": -3.6992543066965\n            },\n            {\n                \"lat\": 40.577618654241,\n                \"long\": -3.6991540383403\n            },\n            {\n                \"lat\": 40.577561963221,\n                \"long\": -3.6990838569818\n            },\n            {\n                \"lat\": 40.577515954776,\n                \"long\": -3.6990348178655\n            },\n            {\n                \"lat\": 40.577472588726,\n                \"long\": -3.6989957310228\n            },\n            {\n                \"lat\": 40.577423332274,\n                \"long\": -3.6989474852874\n            },\n            {\n                \"lat\": 40.577399223805,\n                \"long\": -3.6989267942376\n            },\n            {\n                \"lat\": 40.577388916523,\n                \"long\": -3.6989180619386\n            },\n            {\n                \"lat\": 40.577350133192,\n                \"long\": -3.6988809133524\n            },\n            {\n                \"lat\": 40.577305534524,\n                \"long\": -3.6988370878428\n            },\n            {\n                \"lat\": 40.577265888222,\n                \"long\": -3.6987936683743\n            },\n            {\n                \"lat\": 40.577229736531,\n                \"long\": -3.6987533572381\n            },\n            {\n                \"lat\": 40.577224098508,\n                \"long\": -3.6987471547356\n            },\n            {\n                \"lat\": 40.577188822569,\n                \"long\": -3.6986961010437\n            },\n            {\n                \"lat\": 40.577140212176,\n                \"long\": -3.6986154891765\n            },\n            {\n                \"lat\": 40.577107856677,\n                \"long\": -3.6985582040137\n            },\n            {\n                \"lat\": 40.577098943467,\n                \"long\": -3.6985423972752\n            },\n            {\n                \"lat\": 40.577059764535,\n                \"long\": -3.6984812603999\n            },\n            {\n                \"lat\": 40.577014081705,\n                \"long\": -3.6984081227653\n            },\n            {\n                \"lat\": 40.577012922778,\n                \"long\": -3.698406102156\n            },\n            {\n                \"lat\": 40.576995009801,\n                \"long\": -3.6983738971164\n            },\n            {\n                \"lat\": 40.576987707333,\n                \"long\": -3.6983598794342\n            },\n            {\n                \"lat\": 40.57693391896,\n                \"long\": -3.6982565293598\n            },\n            {\n                \"lat\": 40.576924912769,\n                \"long\": -3.6982411943369\n            },\n            {\n                \"lat\": 40.57690342216,\n                \"long\": -3.698204698781\n            },\n            {\n                \"lat\": 40.576873945559,\n                \"long\": -3.6981629334356\n            },\n            {\n                \"lat\": 40.57684082788,\n                \"long\": -3.69812738042\n            },\n            {\n                \"lat\": 40.57678353659,\n                \"long\": -3.6980818878648\n            },\n            {\n                \"lat\": 40.576720308415,\n                \"long\": -3.6980349158829\n            },\n            {\n                \"lat\": 40.576656278045,\n                \"long\": -3.6979865178555\n            },\n            {\n                \"lat\": 40.576517047324,\n                \"long\": -3.6978761369586\n            },\n            {\n                \"lat\": 40.576478486072,\n                \"long\": -3.6978469077858\n            },\n            {\n                \"lat\": 40.576443883438,\n                \"long\": -3.6978185468242\n            },\n            {\n                \"lat\": 40.576304496199,\n                \"long\": -3.6976430648027\n            },\n            {\n                \"lat\": 40.576195830733,\n                \"long\": -3.6974970853599\n            },\n            {\n                \"lat\": 40.576132089925,\n                \"long\": -3.6974156095492\n            },\n            {\n                \"lat\": 40.576083782106,\n                \"long\": -3.6973593416792\n            },\n            {\n                \"lat\": 40.576040566877,\n                \"long\": -3.6973100975389\n            },\n            {\n                \"lat\": 40.57600732889,\n                \"long\": -3.6972795063849\n            },\n            {\n                \"lat\": 40.575977269198,\n                \"long\": -3.6972745865061\n            },\n            {\n                \"lat\": 40.575941603007,\n                \"long\": -3.697273152882\n            },\n            {\n                \"lat\": 40.575928453123,\n                \"long\": -3.6972726619144\n            },\n            {\n                \"lat\": 40.575903220795,\n                \"long\": -3.6972739358832\n            },\n            {\n                \"lat\": 40.575861587062,\n                \"long\": -3.6972761029075\n            },\n            {\n                \"lat\": 40.575852488745,\n                \"long\": -3.6972760084487\n            },\n            {\n                \"lat\": 40.575788978549,\n                \"long\": -3.6972757035313\n            },\n            {\n                \"lat\": 40.575755290603,\n                \"long\": -3.6972748811912\n            },\n            {\n                \"lat\": 40.575721333123,\n                \"long\": -3.6972739379057\n            },\n            {\n                \"lat\": 40.575695576701,\n                \"long\": -3.6972724890235\n            },\n            {\n                \"lat\": 40.575650997989,\n                \"long\": -3.6972700295106\n            },\n            {\n                \"lat\": 40.575527193941,\n                \"long\": -3.6972589379314\n            },\n            {\n                \"lat\": 40.575521613827,\n                \"long\": -3.697258052966\n            },\n            {\n                \"lat\": 40.575472561016,\n                \"long\": -3.6972505730034\n            },\n            {\n                \"lat\": 40.575411548643,\n                \"long\": -3.6972394244673\n            },\n            {\n                \"lat\": 40.575349631617,\n                \"long\": -3.6972303932161\n            },\n            {\n                \"lat\": 40.575307723118,\n                \"long\": -3.6972183797099\n            },\n            {\n                \"lat\": 40.575292614238,\n                \"long\": -3.6972140877062\n            },\n            {\n                \"lat\": 40.575185317579,\n                \"long\": -3.6971696138463\n            },\n            {\n                \"lat\": 40.575161507071,\n                \"long\": -3.697159206032\n            },\n            {\n                \"lat\": 40.575132215797,\n                \"long\": -3.6971463783931\n            },\n            {\n                \"lat\": 40.575027020944,\n                \"long\": -3.6970969643945\n            },\n            {\n                \"lat\": 40.574967903587,\n                \"long\": -3.6970703585101\n            },\n            {\n                \"lat\": 40.574941491373,\n                \"long\": -3.6970581515622\n            },\n            {\n                \"lat\": 40.574906544144,\n                \"long\": -3.6970420753502\n            },\n            {\n                \"lat\": 40.574856449266,\n                \"long\": -3.6970132002636\n            },\n            {\n                \"lat\": 40.574829276913,\n                \"long\": -3.6969925970625\n            },\n            {\n                \"lat\": 40.574809906796,\n                \"long\": -3.6969778640242\n            },\n            {\n                \"lat\": 40.574773135976,\n                \"long\": -3.6969355404414\n            },\n            {\n                \"lat\": 40.574732959545,\n                \"long\": -3.6968753414588\n            },\n            {\n                \"lat\": 40.57457510185,\n                \"long\": -3.6966701377811\n            },\n            {\n                \"lat\": 40.574559638005,\n                \"long\": -3.6966500106878\n            },\n            {\n                \"lat\": 40.574420498851,\n                \"long\": -3.6964629603413\n            },\n            {\n                \"lat\": 40.574358748268,\n                \"long\": -3.6963799842419\n            },\n            {\n                \"lat\": 40.5742883099,\n                \"long\": -3.6962736317241\n            },\n            {\n                \"lat\": 40.574265455302,\n                \"long\": -3.6962391325766\n            },\n            {\n                \"lat\": 40.574201967002,\n                \"long\": -3.6961156031463\n            },\n            {\n                \"lat\": 40.574194496187,\n                \"long\": -3.6960995760781\n            },\n            {\n                \"lat\": 40.574116589071,\n                \"long\": -3.6959319474348\n            },\n            {\n                \"lat\": 40.574021757488,\n                \"long\": -3.6957188942601\n            },\n            {\n                \"lat\": 40.573955680936,\n                \"long\": -3.6955613131884\n            },\n            {\n                \"lat\": 40.573859051029,\n                \"long\": -3.6953311114215\n            },\n            {\n                \"lat\": 40.573759833076,\n                \"long\": -3.6950967602832\n            },\n            {\n                \"lat\": 40.573707762679,\n                \"long\": -3.6949768953441\n            },\n            {\n                \"lat\": 40.573691945486,\n                \"long\": -3.6949405794361\n            },\n            {\n                \"lat\": 40.573683414836,\n                \"long\": -3.6949209973177\n            },\n            {\n                \"lat\": 40.573636192257,\n                \"long\": -3.6948788037373\n            },\n            {\n                \"lat\": 40.573568987867,\n                \"long\": -3.6948186818501\n            },\n            {\n                \"lat\": 40.57352355766,\n                \"long\": -3.6947780428307\n            },\n            {\n                \"lat\": 40.573520689944,\n                \"long\": -3.6947755321369\n            },\n            {\n                \"lat\": 40.573482330052,\n                \"long\": -3.6947426456818\n            },\n            {\n                \"lat\": 40.573443701324,\n                \"long\": -3.6947095201956\n            },\n            {\n                \"lat\": 40.573398798784,\n                \"long\": -3.6946710133778\n            },\n            {\n                \"lat\": 40.573367519854,\n                \"long\": -3.6946441074745\n            },\n            {\n                \"lat\": 40.573336867942,\n                \"long\": -3.6946177988006\n            },\n            {\n                \"lat\": 40.573320826297,\n                \"long\": -3.694603810064\n            },\n            {\n                \"lat\": 40.573274494476,\n                \"long\": -3.6945632801627\n            },\n            {\n                \"lat\": 40.573227983895,\n                \"long\": -3.6945225121819\n            },\n            {\n                \"lat\": 40.57319204763,\n                \"long\": -3.6944910688006\n            },\n            {\n                \"lat\": 40.573183893452,\n                \"long\": -3.6944837777238\n            },\n            {\n                \"lat\": 40.573151812966,\n                \"long\": -3.6944553278402\n            },\n            {\n                \"lat\": 40.573091505634,\n                \"long\": -3.6944017760141\n            },\n            {\n                \"lat\": 40.573041951362,\n                \"long\": -3.6943577869199\n            },\n            {\n                \"lat\": 40.573008079136,\n                \"long\": -3.6943276646286\n            },\n            {\n                \"lat\": 40.572964794395,\n                \"long\": -3.6942897657584\n            },\n            {\n                \"lat\": 40.572887187612,\n                \"long\": -3.6942216337764\n            },\n            {\n                \"lat\": 40.572797123285,\n                \"long\": -3.6941427285248\n            },\n            {\n                \"lat\": 40.572676653674,\n                \"long\": -3.6940414166012\n            },\n            {\n                \"lat\": 40.572656036913,\n                \"long\": -3.6940241910144\n            },\n            {\n                \"lat\": 40.571813211342,\n                \"long\": -3.6933442039068\n            },\n            {\n                \"lat\": 40.57149261816,\n                \"long\": -3.6927385069617\n            },\n            {\n                \"lat\": 40.57157385615,\n                \"long\": -3.6926369166122\n            },\n            {\n                \"lat\": 40.571578898122,\n                \"long\": -3.692577307451\n            },\n            {\n                \"lat\": 40.571015989607,\n                \"long\": -3.6925250746964\n            },\n            {\n                \"lat\": 40.570873885844,\n                \"long\": -3.6924858049949\n            },\n            {\n                \"lat\": 40.57067735656,\n                \"long\": -3.6923734368994\n            },\n            {\n                \"lat\": 40.570354394628,\n                \"long\": -3.6921021812726\n            },\n            {\n                \"lat\": 40.570268259844,\n                \"long\": -3.6920287567378\n            },\n            {\n                \"lat\": 40.570191707235,\n                \"long\": -3.6919648821722\n            },\n            {\n                \"lat\": 40.570072002992,\n                \"long\": -3.691872328257\n            },\n            {\n                \"lat\": 40.569894732331,\n                \"long\": -3.6917632332347\n            },\n            {\n                \"lat\": 40.569784846583,\n                \"long\": -3.6916392384126\n            },\n            {\n                \"lat\": 40.569709444196,\n                \"long\": -3.6913831667095\n            },\n            {\n                \"lat\": 40.569636232774,\n                \"long\": -3.6911522932186\n            },\n            {\n                \"lat\": 40.569576544179,\n                \"long\": -3.6910854040421\n            },\n            {\n                \"lat\": 40.569164910923,\n                \"long\": -3.6907273501179\n            },\n            {\n                \"lat\": 40.569179497504,\n                \"long\": -3.6906834351164\n            },\n            {\n                \"lat\": 40.569160852696,\n                \"long\": -3.6906075178308\n            },\n            {\n                \"lat\": 40.569193640454,\n                \"long\": -3.6905479595885\n            },\n            {\n                \"lat\": 40.569280596055,\n                \"long\": -3.6904842325797\n            },\n            {\n                \"lat\": 40.56980366339,\n                \"long\": -3.6902690457526\n            },\n            {\n                \"lat\": 40.569960615887,\n                \"long\": -3.6901603175747\n            },\n            {\n                \"lat\": 40.570088892156,\n                \"long\": -3.6900261308676\n            },\n            {\n                \"lat\": 40.570168989392,\n                \"long\": -3.6899039715258\n            },\n            {\n                \"lat\": 40.570266270437,\n                \"long\": -3.6897252936315\n            },\n            {\n                \"lat\": 40.570329117873,\n                \"long\": -3.689549912249\n            },\n            {\n                \"lat\": 40.570352406563,\n                \"long\": -3.6894667453507\n            },\n            {\n                \"lat\": 40.570401675379,\n                \"long\": -3.6893324546224\n            },\n            {\n                \"lat\": 40.570169168714,\n                \"long\": -3.6894665185956\n            },\n            {\n                \"lat\": 40.569933004826,\n                \"long\": -3.6895642757391\n            },\n            {\n                \"lat\": 40.569509824858,\n                \"long\": -3.6895567421293\n            },\n            {\n                \"lat\": 40.568625829817,\n                \"long\": -3.6895199064494\n            },\n            {\n                \"lat\": 40.568510355844,\n                \"long\": -3.6894563456936\n            },\n            {\n                \"lat\": 40.568421714462,\n                \"long\": -3.6893814832481\n            },\n            {\n                \"lat\": 40.567515513117,\n                \"long\": -3.6889745578309\n            },\n            {\n                \"lat\": 40.567141675465,\n                \"long\": -3.6888807066031\n            },\n            {\n                \"lat\": 40.564948316443,\n                \"long\": -3.6878980748068\n            },\n            {\n                \"lat\": 40.563143857821,\n                \"long\": -3.6869444203299\n            },\n            {\n                \"lat\": 40.562816199184,\n                \"long\": -3.6868093605839\n            },\n            {\n                \"lat\": 40.562391132742,\n                \"long\": -3.6866340893206\n            },\n            {\n                \"lat\": 40.561815516485,\n                \"long\": -3.6864441705802\n            },\n            {\n                \"lat\": 40.559641639214,\n                \"long\": -3.6857270765577\n            },\n            {\n                \"lat\": 40.558089165769,\n                \"long\": -3.6849069872682\n            },\n            {\n                \"lat\": 40.554878604743,\n                \"long\": -3.6830067251908\n            },\n            {\n                \"lat\": 40.553826277731,\n                \"long\": -3.6823839990113\n            },\n            {\n                \"lat\": 40.552963400369,\n                \"long\": -3.6821432744801\n            },\n            {\n                \"lat\": 40.552903590012,\n                \"long\": -3.6821266047982\n            },\n            {\n                \"lat\": 40.552820942894,\n                \"long\": -3.682147970379\n            },\n            {\n                \"lat\": 40.55141677063,\n                \"long\": -3.6825110677383\n            },\n            {\n                \"lat\": 40.550700510746,\n                \"long\": -3.682047806824\n            },\n            {\n                \"lat\": 40.550415173104,\n                \"long\": -3.6819761753841\n            },\n            {\n                \"lat\": 40.550231847477,\n                \"long\": -3.6819464431455\n            },\n            {\n                \"lat\": 40.550189410697,\n                \"long\": -3.6819473117819\n            },\n            {\n                \"lat\": 40.550147087701,\n                \"long\": -3.6819441660611\n            },\n            {\n                \"lat\": 40.550105058653,\n                \"long\": -3.6819370078183\n            },\n            {\n                \"lat\": 40.550063592409,\n                \"long\": -3.6819260759946\n            },\n            {\n                \"lat\": 40.550022690361,\n                \"long\": -3.6819111344047\n            },\n            {\n                \"lat\": 40.549982800832,\n                \"long\": -3.6818925419119\n            },\n            {\n                \"lat\": 40.549944014599,\n                \"long\": -3.6818701813399\n            },\n            {\n                \"lat\": 40.5498943142,\n                \"long\": -3.6818348368858\n            },\n            {\n                \"lat\": 40.549870467802,\n                \"long\": -3.6818149899582\n            },\n            {\n                \"lat\": 40.549836247034,\n                \"long\": -3.681782282734\n            },\n            {\n                \"lat\": 40.549659011413,\n                \"long\": -3.6815891593427\n            },\n            {\n                \"lat\": 40.549204304552,\n                \"long\": -3.6811207759432\n            },\n            {\n                \"lat\": 40.549167009338,\n                \"long\": -3.6810746927785\n            },\n            {\n                \"lat\": 40.548953409892,\n                \"long\": -3.6806940145515\n            },\n            {\n                \"lat\": 40.548832915286,\n                \"long\": -3.6804265949491\n            },\n            {\n                \"lat\": 40.548768028468,\n                \"long\": -3.6802928385587\n            },\n            {\n                \"lat\": 40.548709409793,\n                \"long\": -3.6801961231846\n            },\n            {\n                \"lat\": 40.548634675672,\n                \"long\": -3.6801129328085\n            },\n            {\n                \"lat\": 40.548480029851,\n                \"long\": -3.6800455864278\n            },\n            {\n                \"lat\": 40.548415971868,\n                \"long\": -3.6800005327597\n            },\n            {\n                \"lat\": 40.54804840241,\n                \"long\": -3.6797417197734\n            },\n            {\n                \"lat\": 40.547810743427,\n                \"long\": -3.6795742142072\n            },\n            {\n                \"lat\": 40.54764281416,\n                \"long\": -3.679453945464\n            },\n            {\n                \"lat\": 40.547520392659,\n                \"long\": -3.6793298974266\n            },\n            {\n                \"lat\": 40.547443347656,\n                \"long\": -3.6792412536217\n            },\n            {\n                \"lat\": 40.547307792352,\n                \"long\": -3.6790679329807\n            },\n            {\n                \"lat\": 40.547222659782,\n                \"long\": -3.6789757832345\n            },\n            {\n                \"lat\": 40.547142705212,\n                \"long\": -3.6789223040521\n            },\n            {\n                \"lat\": 40.546820570169,\n                \"long\": -3.6787039956142\n            },\n            {\n                \"lat\": 40.546705966833,\n                \"long\": -3.6786291460229\n            },\n            {\n                \"lat\": 40.54660448976,\n                \"long\": -3.6785895039919\n            },\n            {\n                \"lat\": 40.546521618964,\n                \"long\": -3.6785570175865\n            },\n            {\n                \"lat\": 40.546501105419,\n                \"long\": -3.6785984987409\n            },\n            {\n                \"lat\": 40.545377119557,\n                \"long\": -3.678716007582\n            },\n            {\n                \"lat\": 40.543446135628,\n                \"long\": -3.6781390176323\n            },\n            {\n                \"lat\": 40.542982653357,\n                \"long\": -3.6779523655145\n            },\n            {\n                \"lat\": 40.541810678109,\n                \"long\": -3.6769728249113\n            },\n            {\n                \"lat\": 40.541743703319,\n                \"long\": -3.6769025965083\n            },\n            {\n                \"lat\": 40.541611502369,\n                \"long\": -3.6767404294792\n            },\n            {\n                \"lat\": 40.541461940304,\n                \"long\": -3.6765430162694\n            },\n            {\n                \"lat\": 40.541326250717,\n                \"long\": -3.676345743471\n            },\n            {\n                \"lat\": 40.541213066083,\n                \"long\": -3.6761359561092\n            },\n            {\n                \"lat\": 40.54115233612,\n                \"long\": -3.6760145419892\n            },\n            {\n                \"lat\": 40.541101323844,\n                \"long\": -3.67592593597\n            },\n            {\n                \"lat\": 40.541030576057,\n                \"long\": -3.6758229612649\n            },\n            {\n                \"lat\": 40.540952891681,\n                \"long\": -3.6757507378148\n            },\n            {\n                \"lat\": 40.540811404543,\n                \"long\": -3.6756357164312\n            },\n            {\n                \"lat\": 40.540669021616,\n                \"long\": -3.6755352111924\n            },\n            {\n                \"lat\": 40.54056727445,\n                \"long\": -3.6754645180634\n            },\n            {\n                \"lat\": 40.540414736831,\n                \"long\": -3.6753611955918\n            },\n            {\n                \"lat\": 40.540282439137,\n                \"long\": -3.6752768643072\n            },\n            {\n                \"lat\": 40.540136002123,\n                \"long\": -3.6751763199295\n            },\n            {\n                \"lat\": 40.539983412046,\n                \"long\": -3.6750649684513\n            },\n            {\n                \"lat\": 40.539861415417,\n                \"long\": -3.6749752979669\n            },\n            {\n                \"lat\": 40.539733790095,\n                \"long\": -3.674893010677\n            },\n            {\n                \"lat\": 40.539599451904,\n                \"long\": -3.6748032170022\n            },\n            {\n                \"lat\": 40.539420314191,\n                \"long\": -3.6747023466132\n            },\n            {\n                \"lat\": 40.539182157121,\n                \"long\": -3.6745740796525\n            },\n            {\n                \"lat\": 40.539049796142,\n                \"long\": -3.6745004846758\n            },\n            {\n                \"lat\": 40.538943791207,\n                \"long\": -3.6744645868102\n            },\n            {\n                \"lat\": 40.538631839205,\n                \"long\": -3.6743677120675\n            },\n            {\n                \"lat\": 40.538522987577,\n                \"long\": -3.6743101769348\n            },\n            {\n                \"lat\": 40.538394823983,\n                \"long\": -3.6742274148516\n            },\n            {\n                \"lat\": 40.538308315709,\n                \"long\": -3.6741696318067\n            },\n            {\n                \"lat\": 40.538227213094,\n                \"long\": -3.6741117850143\n            },\n            {\n                \"lat\": 40.538103093266,\n                \"long\": -3.6739859642313\n            },\n            {\n                \"lat\": 40.538035758431,\n                \"long\": -3.6738999161224\n            },\n            {\n                \"lat\": 40.537960433892,\n                \"long\": -3.6737781274083\n            },\n            {\n                \"lat\": 40.537887963765,\n                \"long\": -3.673645740202\n            },\n            {\n                \"lat\": 40.537793921737,\n                \"long\": -3.673473945967\n            },\n            {\n                \"lat\": 40.537678508574,\n                \"long\": -3.6732591809865\n            },\n            {\n                \"lat\": 40.537633256813,\n                \"long\": -3.6731092370429\n            },\n            {\n                \"lat\": 40.537604074758,\n                \"long\": -3.6729843692452\n            },\n            {\n                \"lat\": 40.537567144679,\n                \"long\": -3.6728131362097\n            },\n            {\n                \"lat\": 40.537501438556,\n                \"long\": -3.672431667396\n            },\n            {\n                \"lat\": 40.537480225248,\n                \"long\": -3.6723460827017\n            },\n            {\n                \"lat\": 40.537458970588,\n                \"long\": -3.6722675943165\n            },\n            {\n                \"lat\": 40.537437592293,\n                \"long\": -3.6722103475113\n            },\n            {\n                \"lat\": 40.537421646552,\n                \"long\": -3.6721639004026\n            },\n            {\n                \"lat\": 40.537386664921,\n                \"long\": -3.672106635797\n            },\n            {\n                \"lat\": 40.537354344558,\n                \"long\": -3.6720564826938\n            },\n            {\n                \"lat\": 40.537273592435,\n                \"long\": -3.6719381854756\n            },\n            {\n                \"lat\": 40.537212866601,\n                \"long\": -3.6718617710332\n            },\n            {\n                \"lat\": 40.537164303501,\n                \"long\": -3.6718007106029\n            },\n            {\n                \"lat\": 40.53712106933,\n                \"long\": -3.671768278947\n            },\n            {\n                \"lat\": 40.537088735244,\n                \"long\": -3.6717359562027\n            },\n            {\n                \"lat\": 40.53703732474,\n                \"long\": -3.6716997824764\n            },\n            {\n                \"lat\": 40.536996813633,\n                \"long\": -3.6716638357367\n            },\n            {\n                \"lat\": 40.536942831865,\n                \"long\": -3.6716205516322\n            },\n            {\n                \"lat\": 40.536824001621,\n                \"long\": -3.6715126207499\n            },\n            {\n                \"lat\": 40.536753818301,\n                \"long\": -3.67145134508\n            },\n            {\n                \"lat\": 40.536605253279,\n                \"long\": -3.671328830372\n            },\n            {\n                \"lat\": 40.53645386263,\n                \"long\": -3.6712135026519\n            },\n            {\n                \"lat\": 40.536367415188,\n                \"long\": -3.6711449805905\n            },\n            {\n                \"lat\": 40.536300029049,\n                \"long\": -3.6710829070836\n            },\n            {\n                \"lat\": 40.536059287813,\n                \"long\": -3.6709319621689\n            },\n            {\n                \"lat\": 40.535944129615,\n                \"long\": -3.6708586675226\n            },\n            {\n                \"lat\": 40.535841356273,\n                \"long\": -3.6707935259644\n            },\n            {\n                \"lat\": 40.535784478068,\n                \"long\": -3.670768044217\n            },\n            {\n                \"lat\": 40.535697719851,\n                \"long\": -3.6707530096195\n            },\n            {\n                \"lat\": 40.535600206836,\n                \"long\": -3.6707128353265\n            },\n            {\n                \"lat\": 40.53548146577,\n                \"long\": -3.6706049091217\n            },\n            {\n                \"lat\": 40.535316718684,\n                \"long\": -3.6704608653405\n            },\n            {\n                \"lat\": 40.535154620518,\n                \"long\": -3.6703276054812\n            },\n            {\n                \"lat\": 40.535030474062,\n                \"long\": -3.6702196268181\n            },\n            {\n                \"lat\": 40.534979104137,\n                \"long\": -3.6701763711828\n            },\n            {\n                \"lat\": 40.534930588414,\n                \"long\": -3.6701225171597\n            },\n            {\n                \"lat\": 40.53488477517,\n                \"long\": -3.6700686901379\n            },\n            {\n                \"lat\": 40.534839078581,\n                \"long\": -3.6699792052746\n            },\n            {\n                \"lat\": 40.534763757043,\n                \"long\": -3.6698717140353\n            },\n            {\n                \"lat\": 40.534667857436,\n                \"long\": -3.6697241083987\n            },\n            {\n                \"lat\": 40.534565660232,\n                \"long\": -3.669559437557\n            },\n            {\n                \"lat\": 40.534458099501,\n                \"long\": -3.6693875112175\n            },\n            {\n                \"lat\": 40.534395545937,\n                \"long\": -3.6692841746806\n            },\n            {\n                \"lat\": 40.532058663511,\n                \"long\": -3.6709786156292\n            },\n            {\n                \"lat\": 40.530864726682,\n                \"long\": -3.6723113875074\n            },\n            {\n                \"lat\": 40.528376558793,\n                \"long\": -3.6756992982059\n            },\n            {\n                \"lat\": 40.527240536312,\n                \"long\": -3.6765034563191\n            },\n            {\n                \"lat\": 40.526987825606,\n                \"long\": -3.6771821364824\n            },\n            {\n                \"lat\": 40.526113654692,\n                \"long\": -3.6755574477285\n            },\n            {\n                \"lat\": 40.525571007461,\n                \"long\": -3.6750421092684\n            },\n            {\n                \"lat\": 40.524361884003,\n                \"long\": -3.6720044113733\n            },\n            {\n                \"lat\": 40.524716358394,\n                \"long\": -3.6700230553521\n            },\n            {\n                \"lat\": 40.525003369357,\n                \"long\": -3.6676267271289\n            },\n            {\n                \"lat\": 40.524475015084,\n                \"long\": -3.6659533452972\n            },\n            {\n                \"lat\": 40.524463274111,\n                \"long\": -3.6659115545395\n            }\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\",\n        \"id\": \"561e04ed6aa918910c8b4592\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5d9ee7bcde2efef4018b4569\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"64cb9cebaddc18074d0e4193\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"64cb9e98addc18074d0e4195\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletas\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"64cb9edb24ab2d777a0ca313\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"64df24ef07a26e434d01f893\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"667031dac97737f437009da6\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png\",\n                \"id\": \"5c9b55579650e67d42985e80\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas\",\n                \"is_main\": true\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png\",\n                \"id\": \"65c27852911e73e22d02f413\",\n                \"name\": \"prueba\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba S y G\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/667b22cc072a7815151459.png\",\n                \"id\": \"65ea13f79f912150be097e22\",\n                \"name\": \"prueba_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba_copy\",\n                \"position\": {\n                    \"address_string\": \"7CMF9HRJ+C9\",\n                    \"lat\": 23.391075815349,\n                    \"long\": -10.419070926826\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png\",\n                \"id\": \"65ea172b751882bcdd08f9c2\",\n                \"name\": \"prueba_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba_copy_copy\",\n                \"position\": {\n                    \"lat\": 23.391075815349,\n                    \"long\": -10.419070926826\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png\",\n                \"id\": \"65ea1744b312b50dec003e12\",\n                \"name\": \"prueba_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba_copy_copy_copy\",\n                \"position\": {\n                    \"lat\": 23.391075815349,\n                    \"long\": -10.419070926826\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/661016786f01f245765540.png\",\n                \"id\": \"66102b1ef3a7a40d9e07dcb2\",\n                \"name\": \"prueba 66102b1e0f1ce0.98388817\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 66102b1e0f1d69.43217378\",\n                \"position\": {\n                    \"address_string\": \"C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.5417604,\n                    \"long\": -3.6488851\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png\",\n                \"id\": \"6622699b678cd8206600a642\",\n                \"name\": \"prueba 6622699b459009.72981868\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 6622699b459072.064512034\",\n                \"position\": {\n                    \"address_string\": \"C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain4\",\n                    \"lat\": 40.5417604,\n                    \"long\": -3.6488851\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a753e68c729442026.png\",\n                \"id\": \"662274499a752fef9c0d3fd2\",\n                \"name\": \"prueba_copy 66227449a7bc29.71828875\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba_copy 66227449a7bc97.76088342\",\n                \"position\": {\n                    \"address_string\": \"7CMF9HRJ+C9\",\n                    \"lat\": 23.391075815349,\n                    \"long\": -10.419070926826\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/665f158dd7a2f696134412.png\",\n                \"id\": \"6622747196f67a49700e3773\",\n                \"name\": \"PruebaRed\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba Redireccion\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758676e710fb864221721.png\",\n                \"id\": \"663d17ac964ad414110d9154\",\n                \"name\": \"prueba - rutas\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba - rutas\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"663d50f27849b9e1d40dac0a\",\n                \"name\": \"prueba-redirect\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba-redirect\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"663d519e5827e05956040922\",\n                \"name\": \"prueba-redirect 663d519e05b6c2.37692593\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba-redirect 663d519e05b745.04573792\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7f8c00d8bf483509589.png\",\n                \"id\": \"66a7f8c05adb7591e20f34a3\",\n                \"name\": \"dsfdsf\",\n                \"type\": \"city\",\n                \"visible_name\": \"sdfdsf\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7fbae44082397700839.png\",\n                \"id\": \"66a7fbaece27438232094fb3\",\n                \"name\": \"sdfsdffds\",\n                \"type\": \"city\",\n                \"visible_name\": \"sfdfsdf\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83602dcee520229024.png\",\n                \"id\": \"66ab8360fe792921890d0b93\",\n                \"name\": \"xczxczxc\",\n                \"type\": \"city\",\n                \"visible_name\": \"zxczxc\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83991030e165490436.png\",\n                \"id\": \"66ab8399fe792921890d0b95\",\n                \"name\": \"asdsad\",\n                \"type\": \"city\",\n                \"visible_name\": \"sdasd\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.6383701014039476,\n                    40.53726099591145,\n                    -3.636267202837841,\n                    40.53737383778608\n                ],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab8630cd7f2176146195.png\",\n                \"id\": \"66ab8630a7ae91e5dd0513ad\",\n                \"name\": \"dasdasd\",\n                \"type\": \"city\",\n                \"visible_name\": \"asdasdads\",\n                \"position\": {\n                    \"address_string\": \"Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.5372512,\n                    \"long\": -3.6372245\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66feab42f3863925866863.png\",\n                \"id\": \"66acd7c67dcac6466406e973\",\n                \"name\": \"prueba copy21\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba48\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66d8ab81aded9310723592.png\",\n                \"id\": \"66d8aaac847ce6c01b051c6a\",\n                \"name\": \"Pruebas_00\",\n                \"type\": \"city\",\n                \"visible_name\": \"Subproyecto de Prueba 00\",\n                \"position\": {\n                    \"address_string\": \"Av. de la Zaporra, 30, 28108 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.536950952219,\n                    \"long\": -3.6375723972414\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"66ec8a415944e6a1d70d294a\",\n                \"name\": \"sdfsdf\",\n                \"type\": \"city\",\n                \"visible_name\": \"sdfsdf\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e93a7fca30a7b0d7e04\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e94a7fca30a7b0d7e0c\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e94a7fca30a7b0d7e0d\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletass\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e94a7fca30a7b0d7e0e\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e94a7fca30a7b0d7e0f\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e94a7fca30a7b0d7e11\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n                \"id\": \"66f55e93a7fca30a7b0d7e03\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 2\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604\",\n                \"position\": {\n                    \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.537075706835,\n                    \"long\": -3.6352928421438\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e9cfc8304ec890065d6\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e9cfc8304ec890065de\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e9cfc8304ec890065df\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletas\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e9cfc8304ec890065e0\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e9cfc8304ec890065e1\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55e9cfc8304ec890065e3\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"id\": \"66f55e9cfc8304ec890065d5\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 66f55e9c25b230.62445164\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 66f55e9c25b292.93160889\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55eb3a7fca30a7b0d7e13\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55eb3a7fca30a7b0d7e1b\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55eb3a7fca30a7b0d7e1c\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletas\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55eb3a7fca30a7b0d7e1d\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55eb3a7fca30a7b0d7e1e\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"66f55eb3a7fca30a7b0d7e20\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"id\": \"66f55eb3a7fca30a7b0d7e12\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 66f55eb3782408.06642050\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 66f55eb3782462.71960258\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66fd515dd2918569942317.png\",\n                \"id\": \"66fd515e402343afa9009794\",\n                \"name\": \"AlcobendasTest\",\n                \"type\": \"city\",\n                \"visible_name\": \"AlcobendasTest\",\n                \"position\": {\n                    \"address_string\": \"Av. de Peñalara, 14, 28108 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.534024499598,\n                    \"long\": -3.6633100275929\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"66fd51c6768fcce869009695\",\n                \"name\": \"TestOne\",\n                \"type\": \"building\",\n                \"visible_name\": \"TestOne\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"66fd6717b2e794c2750311ef\",\n                \"name\": \"sadas\",\n                \"type\": \"building\",\n                \"visible_name\": \"dsds\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"66fe916a7ecd831d99057fae\",\n                \"name\": \"fdgdfgg\",\n                \"type\": \"city\",\n                \"visible_name\": \"sadasdsf\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/663d17acab642804466040.png\",\n                \"id\": \"66febaa95704247b9101f8d4\",\n                \"name\": \"prueba - rutas 66febaa9e601d7.81700930\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba - rutas 66febaa9e60247.16727571\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": true,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6707f0f2a56ab960053749.png\",\n                \"id\": \"6707cc6602f036033f087a1d\",\n                \"name\": \"Documentación 2\",\n                \"type\": \"building\",\n                \"visible_name\": \"Prueba Documentación 2\",\n                \"position\": {\n                    \"address_string\": \"C. de Embajadores, 77, Arganzuela, 28012 Madrid, Spain\",\n                    \"lat\": 40.402644829153,\n                    \"long\": -3.7004203901125\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"670802e62f9d4a71cd06a755\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"670802e62f9d4a71cd06a75d\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"670802e62f9d4a71cd06a75e\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletas\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"670802e62f9d4a71cd06a75f\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"670802e62f9d4a71cd06a760\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"670802e62f9d4a71cd06a762\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"id\": \"670802e62f9d4a71cd06a754\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 670802e6be8658.12404683\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 670802e6be86b5.23732963\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67096bc2ffc05a02a10aeb01\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67096bc2ffc05a02a10aeb09\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67096bc2ffc05a02a10aeb0a\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletas\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67096bc2ffc05a02a10aeb0b\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67096bc3ffc05a02a10aeb0c\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67096bc3ffc05a02a10aeb0e\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"id\": \"67096bc2ffc05a02a10aeb00\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 67096bc2dbe5c3.49134378\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 67096bc2dbe626.22009007\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"67478f9898e9bea6e70a90b8\",\n                \"name\": \"sasdda\",\n                \"type\": \"city\",\n                \"visible_name\": \"pruebas\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/675947afec6a2469197916.png\",\n                \"id\": \"675947b0f044affc53005ba8\",\n                \"name\": \"Prueba QA\",\n                \"type\": \"building\",\n                \"visible_name\": \"Prueba QA\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678832b021303145868051.png\",\n                \"id\": \"678832b0deaa23504a049c36\",\n                \"name\": \"bvnbvn\",\n                \"type\": \"building\",\n                \"visible_name\": \"vnbn\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"6788340c943dcdca3d0b7994\",\n                \"name\": \"xcxcv\",\n                \"type\": \"building\",\n                \"visible_name\": \"xcvx\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834b8890a3779c2073c94\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834b8890a3779c2073c9c\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834b8890a3779c2073c9d\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletass\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834b8890a3779c2073c9e\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834b8890a3779c2073c9f\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834b8890a3779c2073ca1\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n                \"id\": \"678834b8890a3779c2073c93\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 66f55e93e28df4.433383312 678834b8c3dcd9.23960367\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 678834b8c3dd25.76718740\",\n                \"position\": {\n                    \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.537075706835,\n                    \"long\": -3.6352928421438\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834e03ccfc90eab0a4843\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834e03ccfc90eab0a484b\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834e03ccfc90eab0a484c\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletas\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834e03ccfc90eab0a484d\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834e03ccfc90eab0a484e\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678834e03ccfc90eab0a4850\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n                \"id\": \"678834e03ccfc90eab0a4842\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 678834e037e4b0.37687067\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 678834e037e531.71607018\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"6788372e67c09c2f2f0909c3\",\n                \"name\": \"xzcxzc\",\n                \"type\": \"building\",\n                \"visible_name\": \"xczxczxcxz\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678837b72bdfe4fd820c4af3\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678837b72bdfe4fd820c4afb\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678837b72bdfe4fd820c4afc\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletass\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678837b72bdfe4fd820c4afd\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678837b72bdfe4fd820c4afe\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"678837b72bdfe4fd820c4b00\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.694952001222114,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886136999999\n                ],\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n                \"id\": \"678837b72bdfe4fd820c4af2\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 66f55e93e28df4.433383312 678837b7995d51.94642502\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 678837b7995da7.96927208\",\n                \"position\": {\n                    \"address_string\": \"C. Clz8 G17 María Teresa, 10, 28108 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.537085389425,\n                    \"long\": -3.634876818277\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fa592bdfe4fd820c4b04\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fa592bdfe4fd820c4b0c\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fa592bdfe4fd820c4b0d\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletass\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fa592bdfe4fd820c4b0e\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fa592bdfe4fd820c4b0f\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fa592bdfe4fd820c4b11\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n                \"id\": \"6788fa592bdfe4fd820c4b03\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 2 6788fa592cb379.01808297\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fa592cb3b6.23533051\",\n                \"position\": {\n                    \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.537075706835,\n                    \"long\": -3.6352928421438\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fab5deaa23504a049c38\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fab5deaa23504a049c40\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fab5deaa23504a049c41\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletass\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fab5deaa23504a049c42\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fab6deaa23504a049c43\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fab6deaa23504a049c45\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n                \"id\": \"6788fab5deaa23504a049c37\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 2 6788fab5d845e1.14038314\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fab5d84645.20456436\",\n                \"position\": {\n                    \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.537075706835,\n                    \"long\": -3.6352928421438\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe6867c09c2f2f0909c5\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe6867c09c2f2f0909cd\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe6867c09c2f2f0909ce\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletass\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe6867c09c2f2f0909cf\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe6867c09c2f2f0909d0\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe6867c09c2f2f0909d2\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n                \"id\": \"6788fe6867c09c2f2f0909c4\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 2 6788fe686b90d8.11238269\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fe686b9136.06999346\",\n                \"position\": {\n                    \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.537075706835,\n                    \"long\": -3.6352928421438\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe7fe05c80a755015855\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe7fe05c80a75501585d\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe7fe05c80a75501585e\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletass\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe7fe05c80a75501585f\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe7fe05c80a755015860\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788fe7fe05c80a755015862\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n                \"id\": \"6788fe7fe05c80a755015854\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 2 6788fe7f6fa3d3.89895977\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fe7f6fa465.61898122\",\n                \"position\": {\n                    \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.537075706835,\n                    \"long\": -3.6352928421438\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788feb7f9371c00d10b1b93\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788feb7f9371c00d10b1b9b\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788feb7f9371c00d10b1b9c\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletas\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788feb7f9371c00d10b1b9d\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788feb7f9371c00d10b1b9e\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"6788feb7f9371c00d10b1ba0\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n                \"id\": \"6788feb7f9371c00d10b1b92\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendass 6788feb77346e1.9556351oo\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 6788feb7734735.49508202\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"6788ff26890a3779c2073ca7\",\n                \"name\": \"vbcb\",\n                \"type\": \"building\",\n                \"visible_name\": \"bcvbcv\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"6788ff3df9371c00d10b1ba3\",\n                \"name\": \"zxczxcxz\",\n                \"type\": \"building\",\n                \"visible_name\": \"xcxzcxz\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"678abbbde8f9deafd60f708e\",\n                \"name\": \"fdgdfgdfg\",\n                \"type\": \"city\",\n                \"visible_name\": \"fgdfg\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678e5cd089f0c939082671.png\",\n                \"id\": \"678e5cd054203c217a055dc6\",\n                \"name\": \"nestor\",\n                \"type\": \"building\",\n                \"visible_name\": \"testNestor\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b47abce50676616067.png\",\n                \"id\": \"67b4b47b42839b62430b8483\",\n                \"name\": \"jurisdictionElement prueba\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba jurisdictionElement\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b51484af1723070026.png\",\n                \"id\": \"67b4b51572ed11bc700c2824\",\n                \"name\": \"prueba 1\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 1\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.6664793853892252,\n                    40.531531171052336,\n                    -3.6064955047159155,\n                    40.56840696769418\n                ],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67e890bb58e39372179361.png\",\n                \"id\": \"67c6f7e7af404fd6bc04f153\",\n                \"name\": \"Alcobendas 1 subproyecto\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 1 subproyecto\",\n                \"position\": {\n                    \"address_string\": \"P.º de la Chopera, 2, 28100 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.5375258,\n                    \"long\": -3.6371678\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"67d197cde42d705904084ce3\",\n                \"name\": \"preuab2\",\n                \"type\": \"city\",\n                \"visible_name\": \"pruebaaaa\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"67d19967a06bdf23380a9a76\",\n                \"name\": \"prueba1\",\n                \"type\": \"city\",\n                \"visible_name\": \"crack\",\n                \"position\": {\n                    \"address_string\": \"canino Canterac Park, C. Canterac, 28B, 47013 Valladolid, Spain\",\n                    \"lat\": 41.638658052263,\n                    \"long\": -4.7141842143906\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"67d42f3d0f0b22f66907dbec\",\n                \"name\": \"prueba3\",\n                \"type\": \"building\",\n                \"visible_name\": \"dasdasdasd\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"67d4549cc0c8e0cbca03a8f3\",\n                \"name\": \"joseprueba\",\n                \"type\": \"building\",\n                \"visible_name\": \"jose\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67d455457febe717149554.png\",\n                \"id\": \"67d45545a906d3ff900946b5\",\n                \"name\": \"crackfut\",\n                \"type\": \"building\",\n                \"visible_name\": \"crackmes\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67e7425479962014f00e34e3\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Alc_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67e7425479962014f00e34eb\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                        \"name\": \"Aparcapatinetes\",\n                        \"description\": \"Aparcapatinetes\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67e7425479962014f00e34ec\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                        \"level\": 8,\n                        \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                        \"name\": \"Aparcabicicletas\",\n                        \"description\": \"Aparcabicicletas\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\",\n                        \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67e7425479962014f00e34ed\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                        \"name\": \"Aparcamientos (PMR)\",\n                        \"description\": \"Aparcamientos (PMR)\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67e7425479962014f00e34ee\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                        \"name\": \"Puntos de Recarga\",\n                        \"description\": \"Puntos de Recarga\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"67e7425479962014f00e34f0\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                        \"name\": \"MAINTENANCE PRUEBA\",\n                        \"description\": \"MAINTENANCE PRUEBA\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"MAINTENANCE ASSET\"\n                    }\n                ],\n                \"extent\": [\n                    -3.70038574,\n                    40.50117283,\n                    -3.55027416,\n                    40.58886137\n                ],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/689afb53e097c133825380.png\",\n                \"id\": \"67e7425479962014f00e34e2\",\n                \"location_additional_data\": {},\n                \"name\": \"org.alcobendas 67e74254a71995.25767502\",\n                \"type\": \"building\",\n                \"visible_name\": \"Alcobendas 67e74254a719f4.11715944\",\n                \"is_main\": true\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"67e7467679962014f00e34f3\",\n                \"name\": \"Alcobendas 1 subproyecto 67e74676ee0f33.56206097\",\n                \"type\": \"city\",\n                \"visible_name\": \"Alcobendas 1 subproyecto 67e74676ee0f91.76578534\",\n                \"position\": {\n                    \"address_string\": \"P.º de la Chopera, 2, 28100 Alcobendas, Madrid, Spain\",\n                    \"lat\": 40.5375258,\n                    \"long\": -3.6371678\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67f6c2cd32a22461808825.png\",\n                \"id\": \"67f6c29287bcd0a4720254ca\",\n                \"name\": \"QA Externo\",\n                \"type\": \"building\",\n                \"visible_name\": \"QA\",\n                \"position\": {\n                    \"address_string\": \"Av. de los Montes de Oca, 14, 28703 San Sebastián de los Reyes, Madrid, Spain\",\n                    \"lat\": 40.551773662072,\n                    \"long\": -3.6149869900721\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.6364172109596353,\n                    40.53630460226685,\n                    -3.6354953216164216,\n                    40.5367605591301\n                ],\n                \"guided_module\": false,\n                \"id\": \"68a89596da168ede230eae43\",\n                \"name\": \"prueba palomino\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba palomino\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.636484806398722,\n                    40.5361976274601,\n                    -3.6349743395421803,\n                    40.53675343031418\n                ],\n                \"guided_module\": false,\n                \"id\": \"68a8d218e05a6efce8071d84\",\n                \"name\": \"palominoo\",\n                \"type\": \"city\",\n                \"visible_name\": \"palomino\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.6264635364355704,\n                    40.54572226159695,\n                    -3.6256815675974927,\n                    40.54624886263457\n                ],\n                \"guided_module\": false,\n                \"id\": \"68dd31d10cc6fbfdba0e4973\",\n                \"name\": \"prueba_principal\",\n                \"type\": \"city\",\n                \"visible_name\": \"principal de prueba\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.6286929719797625,\n                    40.5437731040285,\n                    -3.6280609025671957,\n                    40.54414322936694\n                ],\n                \"guided_module\": false,\n                \"id\": \"68dd339197d82fed2001cc33\",\n                \"name\": \"prueba_#\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.633987562442894,\n                    40.536512105867445,\n                    -3.6329365753912812,\n                    40.53708537841831\n                ],\n                \"guided_module\": false,\n                \"id\": \"68dd34790a583c63c9026a84\",\n                \"name\": \"para_otra_prueba\",\n                \"type\": \"city\",\n                \"visible_name\": \"para otra pueba\",\n                \"position\": {},\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"key_name\": \"Alcobendas, Madrid\",\n        \"locales\": [\n            \"en\",\n            \"es\"\n        ],\n        \"name\": \"Alcobendas\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17715\",\n                \"options\": []\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17717\",\n                \"options\": [\n                    \"ios\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17718\",\n                \"options\": [\n                    \"android\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17719\",\n                \"options\": [\n                    \"inperson\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771a\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771b\",\n                \"options\": [\n                    \"inperson\",\n                    \"email\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771c\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771d\",\n                \"options\": [\n                    \"facebook\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771e\",\n                \"options\": [\n                    \"twitter\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17722\",\n                \"options\": [\n                    \"web_channel\"\n                ]\n            },\n            {\n                \"id\": \"59c3ad5e626fae16048b4567\",\n                \"options\": [\n                    \"internal\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5fd0d60b00674b94038b456b\",\n                \"options\": [\n                    \"android\",\n                    \"ios\",\n                    \"facebook\",\n                    \"twitter\",\n                    \"inperson\",\n                    \"web_channel\",\n                    \"internal\",\n                    \"email\"\n                ]\n            },\n            {\n                \"id\": \"60c09cdccdf34808168b4573\",\n                \"options\": [\n                    \"android\"\n                ]\n            }\n        ],\n        \"lat\": 40.5367233,\n        \"long\": -3.6370633,\n        \"tags\": [\n            {\n                \"name\": \"Alcobendas\",\n                \"color\": \"#0271b8\",\n                \"id\": \"Alcobendas\"\n            },\n            {\n                \"name\": \"Cultura\",\n                \"color\": \"#000000\",\n                \"id\": \"Cultura\"\n            },\n            {\n                \"name\": \"Entretenimiento\",\n                \"color\": \"#000000\",\n                \"id\": \"Entretenimiento\"\n            },\n            {\n                \"name\": \"Social\",\n                \"color\": \"#000000\",\n                \"id\": \"Social\"\n            },\n            {\n                \"name\": \"Deportes\",\n                \"color\": \"#000000\",\n                \"id\": \"Deportes\"\n            },\n            {\n                \"name\": \"TACA\",\n                \"color\": \"#000000\",\n                \"id\": \"TACA\"\n            },\n            {\n                \"name\": \"Teatro\",\n                \"color\": \"#000000\",\n                \"id\": \"Teatro\"\n            },\n            {\n                \"name\": \"Ayuntamiento\",\n                \"color\": \"#000000\",\n                \"id\": \"Ayuntamiento\"\n            },\n            {\n                \"name\": \"Trámites\",\n                \"color\": \"#000000\",\n                \"id\": \"Trámites\"\n            },\n            {\n                \"name\": \"censo\",\n                \"color\": \"#000000\",\n                \"id\": \"censo\"\n            },\n            {\n                \"name\": \"consulta\",\n                \"color\": \"#000000\",\n                \"id\": \"consulta\"\n            },\n            {\n                \"name\": \"electoral\",\n                \"color\": \"#000000\",\n                \"id\": \"electoral\"\n            },\n            {\n                \"name\": \"elecciones\",\n                \"color\": \"#000000\",\n                \"id\": \"elecciones\"\n            },\n            {\n                \"name\": \"contrato,\",\n                \"color\": \"#000000\",\n                \"id\": \"contrato,\"\n            },\n            {\n                \"name\": \"bolsa,empleo,\",\n                \"color\": \"#000000\",\n                \"id\": \"bolsa,empleo,\"\n            },\n            {\n                \"name\": \"movilidad, transporte, desplazamiento, coche, autobús, metro, tren, patinete, bicicleta, car,\",\n                \"color\": \"#000000\",\n                \"id\": \"movilidad, transporte, desplazamiento, coche, autobús, metro, tren, patinete, bicicleta, car,\"\n            },\n            {\n                \"name\": \"Rutas biosaludables\",\n                \"color\": \"#000000\",\n                \"id\": \"Rutas biosaludables\"\n            },\n            {\n                \"name\": \"ruta, nadar, bici,\",\n                \"color\": \"#000000\",\n                \"id\": \"ruta, nadar, bici,\"\n            },\n            {\n                \"name\": \"Alumbrado\",\n                \"color\": \"#000000\",\n                \"id\": \"Alumbrado\"\n            },\n            {\n                \"name\": \"armarios de alumbrado\",\n                \"color\": \"#000000\",\n                \"id\": \"armarios de alumbrado\"\n            },\n            {\n                \"name\": \"adsa\",\n                \"color\": \"#000000\",\n                \"id\": \"adsa\"\n            },\n            {\n                \"name\": \"et\",\n                \"color\": \"#000000\",\n                \"id\": \"et\"\n            },\n            {\n                \"name\": \"noticias\",\n                \"color\": \"#000000\",\n                \"id\": \"noticias\"\n            },\n            {\n                \"name\": \"dadasda\",\n                \"color\": \"#000000\",\n                \"id\": \"dadasda\"\n            },\n            {\n                \"name\": \"no\",\n                \"color\": \"#000000\",\n                \"id\": \"no\"\n            }\n        ],\n        \"third_emails\": [\n            \"comentarios.alcobendas@mejoratuciudad.org\"\n        ],\n        \"timezone\": \"Europe/Madrid\",\n        \"typologies\": [\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            }\n        ],\n        \"typology_nodes\": [\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c59\",\n                \"color\": \"#f1c40f\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"64ac2229512893e6a20abfb2\",\n                \"color\": \"#ff0000\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Prueba\"\n            },\n            {\n                \"id\": \"6183cd316ac0f4001e8b4573\",\n                \"color\": \"#337ab7\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"6183cc553c69dc0b1e8b4572\",\n                    \"color\": \"#6c8ce0\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En ejecución\"\n            },\n            {\n                \"id\": \"62137c48dc539fcf0d8b4567\",\n                \"color\": \"#337ab7\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"6183cc553c69dc0b1e8b4572\",\n                    \"color\": \"#6c8ce0\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"No Solucionado\"\n            },\n            {\n                \"id\": \"6183d57e6ac0f4021e8b4589\",\n                \"color\": \"#b290e0\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"6183cc553c69dc0b1e8b4572\",\n                    \"color\": \"#6c8ce0\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"59c3693622a293ad018b45d1\",\n                \"color\": \"#b39ddb\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"En consulta\"\n            },\n            {\n                \"id\": \"6183cd683c69dc091e8b4593\",\n                \"color\": \"#ef6c00\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"6183cc553c69dc0b1e8b4572\",\n                    \"color\": \"#6c8ce0\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte validar ejecución\"\n            },\n            {\n                \"id\": \"62137d02648cf0e70d8b456e\",\n                \"color\": \"#ef6c00\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"6183cc553c69dc0b1e8b4572\",\n                    \"color\": \"#6c8ce0\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte Validar Solucionado\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c5a\",\n                \"color\": \"#0c98f5\",\n                \"order\": 20,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"En ejecución\"\n            },\n            {\n                \"id\": \"6183cddb8baf53bc208b4599\",\n                \"color\": \"#e91e63\",\n                \"order\": 20,\n                \"typology\": {\n                    \"id\": \"6183cc553c69dc0b1e8b4572\",\n                    \"color\": \"#6c8ce0\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"6038dd859c1bc3f1088b45d2\",\n                \"color\": \"#084a87\",\n                \"order\": 25,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Pte validar ejecución\"\n            },\n            {\n                \"id\": \"59c36970626faeab018b456c\",\n                \"color\": \"#993399\",\n                \"order\": 30,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Consultado\"\n            },\n            {\n                \"id\": \"6183cce0d27499861d8b4567\",\n                \"color\": \"#33691e\",\n                \"order\": 30,\n                \"typology\": {\n                    \"id\": \"6183cc553c69dc0b1e8b4572\",\n                    \"color\": \"#6c8ce0\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En consulta\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c5b\",\n                \"color\": \"#21618c\",\n                \"order\": 40,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"59c36995626fae09028b456c\",\n                \"color\": \"#3abdaa\",\n                \"order\": 50,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"6183ce11390a87c71e8b4567\",\n                \"color\": \"#486634\",\n                \"order\": 50,\n                \"typology\": {\n                    \"id\": \"6183cc553c69dc0b1e8b4572\",\n                    \"color\": \"#6c8ce0\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"59c3724d22a293ab018b45cd\",\n                \"color\": \"#8cbc2d\",\n                \"order\": 60,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Validado\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c5d\",\n                \"color\": \"#d35400\",\n                \"order\": 70,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"6183ce283c69dc0d1e8b4567\",\n                \"color\": \"#b71b1c\",\n                \"order\": 70,\n                \"typology\": {\n                    \"id\": \"6183cc553c69dc0b1e8b4572\",\n                    \"color\": \"#6c8ce0\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"59c369576b53f325138b4571\",\n                \"color\": \"#b71b1c\",\n                \"order\": 100,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c5c\",\n                \"color\": \"#2e7d32\",\n                \"order\": 110,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"650328c7f946773c920854d2\",\n                \"color\": \"#66a5db\",\n                \"order\": 115,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Pendiente de planificar\"\n            },\n            {\n                \"id\": \"601937683dfd4806068b4568\",\n                \"color\": \"#978c8c\",\n                \"order\": 120,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Planificado en ejecución\"\n            }\n        ],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": true,\n            \"requests_process\": true,\n            \"requests_comments\": true,\n            \"requests_worknotes\": true,\n            \"requests_reiterations\": true,\n            \"requests_complaints\": true,\n            \"user_evaluation\": true,\n            \"service_survey\": true,\n            \"alerts\": true,\n            \"inventory\": false,\n            \"backoffice_admin\": true,\n            \"app_configuration\": true,\n            \"notifications\": true,\n            \"planned_requests\": true,\n            \"planning\": true,\n            \"users\": true,\n            \"predetermined_response\": true,\n            \"predetermined_response_external_source\": true,\n            \"company_enquiry\": true,\n            \"layer\": true,\n            \"jurisdiction_element\": true,\n            \"webhook\": true,\n            \"user_guide\": true,\n            \"worklog\": true,\n            \"calendar\": true\n        },\n        \"app_urls\": {\n            \"web_url\": \"https://mapa-canary.mejoratuciudad.org/\",\n            \"google_play_manager\": \"https://play.google.com/store/apps/details?id=com.radmas.iycp.production\",\n            \"google_play_citizens\": \"https://play.google.com/store/apps/details?id=com.alcobendas.ayuntamiento\",\n            \"app_store\": \"https://apps.apple.com/app/id1309506191\"\n        }\n    },\n    {\n        \"only_registered_users\": true,\n        \"max_upload_files\": 5,\n        \"automatic_typology\": false,\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5d9ee7bfde2efef4018b4570\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Gua_MX_7Z_Trabajo\",\n                \"name\": \"7-Z Trabajo\",\n                \"description\": \"7-Z Trabajo\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"WORK\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5ee08c7b7f2473c60c8b4568\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Gua_MX_Distritos_2\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": true,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5ee091edbc8905cc0c8b4588\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Gua_MX_Colonias\",\n                \"name\": \"Colonias\",\n                \"description\": \"Colonias\",\n                \"preset\": true,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            }\n        ],\n        \"accepted_id_documents\": [],\n        \"buttons\": [],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5cb6e8833f960e8b457a\",\n                \"name\": \"Gestores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5d2101394ad80d8b45f5\",\n                \"name\": \"Técnicos Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e21fee15c120d8b457b\",\n                \"name\": \"Solicitantes Internos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f61effee15c140d8b456b\",\n                \"name\": \"Gerentes de la ciudad\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e5f8c5e3b5399d7048b45ee\",\n                \"name\": \"Gestores de la plataforma\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e73bd8502be88c10f8b4568\",\n                \"name\": \"Comunicación\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e94d7c102be88f82b8b4575\",\n                \"name\": \"Supervisores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5ec3e7299094c891038b4583\",\n                \"name\": \"Creadores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5f05cb27265b64fb018b456b\",\n                \"name\": \"Consultor Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6102c4756aa4f784108b4587\",\n                \"name\": \"Supervisores Mediación\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6102c49091d51304108b4572\",\n                \"name\": \"Supervisores Juzgados\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116bf2c69819736098b4588\",\n                \"name\": \"Gestores Avisos Empresa\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116d0d45fc66aa7088b4586\",\n                \"name\": \"Coordinación Servicios Municipales\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116d8625fc66aab088b458f\",\n                \"name\": \"Patrullas\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116d8788fc7c77d098b4592\",\n                \"name\": \"Técnicos Juzgados\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116d8848fc7c779098b457e\",\n                \"name\": \"Técnicos Mediación\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116d92a5fc66ab4088b4567\",\n                \"name\": \"Gestores Avisos C5\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116da8f8fc7c785098b4575\",\n                \"name\": \"Gestores Juzgados\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116dad48bec50c9088b4567\",\n                \"name\": \"Gestores Mediación\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116e3b597366e68098b4568\",\n                \"name\": \"Oficina Digital\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116e69f9744510f098b4577\",\n                \"name\": \"Participación Ciudadana\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            }\n        ],\n        \"company_emails\": [\n            \"comentarios.ciudappguadalajara@mejoratuciudad.org\"\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": 20.752655462,\n                \"long\": -103.263761708\n            },\n            {\n                \"lat\": 20.604872631,\n                \"long\": -103.406618585\n            }\n        ],\n        \"geo_perimeter\": [\n            {\n                \"lat\": 20.750980738,\n                \"long\": -103.311643815\n            },\n            {\n                \"lat\": 20.747673354,\n                \"long\": -103.306784985\n            },\n            {\n                \"lat\": 20.744932292,\n                \"long\": -103.302291723\n            },\n            {\n                \"lat\": 20.741553631,\n                \"long\": -103.295433585\n            },\n            {\n                \"lat\": 20.739001169,\n                \"long\": -103.291411862\n            },\n            {\n                \"lat\": 20.736653215,\n                \"long\": -103.285992262\n            },\n            {\n                \"lat\": 20.732463877,\n                \"long\": -103.284862708\n            },\n            {\n                \"lat\": 20.730311185,\n                \"long\": -103.283261769\n            },\n            {\n                \"lat\": 20.726877523,\n                \"long\": -103.280764262\n            },\n            {\n                \"lat\": 20.724155231,\n                \"long\": -103.279715462\n            },\n            {\n                \"lat\": 20.721216369,\n                \"long\": -103.280558631\n            },\n            {\n                \"lat\": 20.719639908,\n                \"long\": -103.280331585\n            },\n            {\n                \"lat\": 20.717312431,\n                \"long\": -103.277860415\n            },\n            {\n                \"lat\": 20.715081385,\n                \"long\": -103.276817492\n            },\n            {\n                \"lat\": 20.712365015,\n                \"long\": -103.275162508\n            },\n            {\n                \"lat\": 20.710382846,\n                \"long\": -103.273300492\n            },\n            {\n                \"lat\": 20.708499785,\n                \"long\": -103.271333446\n            },\n            {\n                \"lat\": 20.707016369,\n                \"long\": -103.269010138\n            },\n            {\n                \"lat\": 20.706186123,\n                \"long\": -103.266596046\n            },\n            {\n                \"lat\": 20.705121138,\n                \"long\": -103.265991123\n            },\n            {\n                \"lat\": 20.704184246,\n                \"long\": -103.2674216\n            },\n            {\n                \"lat\": 20.7029538,\n                \"long\": -103.267771985\n            },\n            {\n                \"lat\": 20.702301692,\n                \"long\": -103.268061677\n            },\n            {\n                \"lat\": 20.7012432,\n                \"long\": -103.268328662\n            },\n            {\n                \"lat\": 20.700565969,\n                \"long\": -103.268391508\n            },\n            {\n                \"lat\": 20.69987,\n                \"long\": -103.268946\n            },\n            {\n                \"lat\": 20.698521615,\n                \"long\": -103.269293\n            },\n            {\n                \"lat\": 20.697396354,\n                \"long\": -103.270222785\n            },\n            {\n                \"lat\": 20.6965778,\n                \"long\": -103.270233046\n            },\n            {\n                \"lat\": 20.695594354,\n                \"long\": -103.270392769\n            },\n            {\n                \"lat\": 20.694800231,\n                \"long\": -103.2697738\n            },\n            {\n                \"lat\": 20.6936462,\n                \"long\": -103.269984231\n            },\n            {\n                \"lat\": 20.692001769,\n                \"long\": -103.270335492\n            },\n            {\n                \"lat\": 20.690461938,\n                \"long\": -103.2706148\n            },\n            {\n                \"lat\": 20.688405492,\n                \"long\": -103.269339508\n            },\n            {\n                \"lat\": 20.686746446,\n                \"long\": -103.268944523\n            },\n            {\n                \"lat\": 20.684826308,\n                \"long\": -103.268387308\n            },\n            {\n                \"lat\": 20.683300538,\n                \"long\": -103.267940108\n            },\n            {\n                \"lat\": 20.682082015,\n                \"long\": -103.267567769\n            },\n            {\n                \"lat\": 20.681855738,\n                \"long\": -103.266445862\n            },\n            {\n                \"lat\": 20.681320492,\n                \"long\": -103.2673428\n            },\n            {\n                \"lat\": 20.680583062,\n                \"long\": -103.267549292\n            },\n            {\n                \"lat\": 20.680219585,\n                \"long\": -103.267267985\n            },\n            {\n                \"lat\": 20.679678508,\n                \"long\": -103.267291708\n            },\n            {\n                \"lat\": 20.679137385,\n                \"long\": -103.267711031\n            },\n            {\n                \"lat\": 20.6770238,\n                \"long\": -103.267557862\n            },\n            {\n                \"lat\": 20.676894738,\n                \"long\": -103.266468969\n            },\n            {\n                \"lat\": 20.675449292,\n                \"long\": -103.264699169\n            },\n            {\n                \"lat\": 20.673538046,\n                \"long\": -103.264543692\n            },\n            {\n                \"lat\": 20.670489308,\n                \"long\": -103.2641538\n            },\n            {\n                \"lat\": 20.668778077,\n                \"long\": -103.263761708\n            },\n            {\n                \"lat\": 20.667499477,\n                \"long\": -103.264401231\n            },\n            {\n                \"lat\": 20.664410615,\n                \"long\": -103.267564354\n            },\n            {\n                \"lat\": 20.6610208,\n                \"long\": -103.267884523\n            },\n            {\n                \"lat\": 20.659316338,\n                \"long\": -103.267913862\n            },\n            {\n                \"lat\": 20.657227923,\n                \"long\": -103.267523954\n            },\n            {\n                \"lat\": 20.655150492,\n                \"long\": -103.267430292\n            },\n            {\n                \"lat\": 20.653669631,\n                \"long\": -103.268691585\n            },\n            {\n                \"lat\": 20.650840892,\n                \"long\": -103.269597369\n            },\n            {\n                \"lat\": 20.6490392,\n                \"long\": -103.270087615\n            },\n            {\n                \"lat\": 20.647952554,\n                \"long\": -103.2701218\n            },\n            {\n                \"lat\": 20.646320862,\n                \"long\": -103.270126985\n            },\n            {\n                \"lat\": 20.645063354,\n                \"long\": -103.270077015\n            },\n            {\n                \"lat\": 20.645869723,\n                \"long\": -103.272292477\n            },\n            {\n                \"lat\": 20.645945185,\n                \"long\": -103.272931323\n            },\n            {\n                \"lat\": 20.645619523,\n                \"long\": -103.273254262\n            },\n            {\n                \"lat\": 20.645413877,\n                \"long\": -103.273526646\n            },\n            {\n                \"lat\": 20.6452724,\n                \"long\": -103.273946262\n            },\n            {\n                \"lat\": 20.6450982,\n                \"long\": -103.274387123\n            },\n            {\n                \"lat\": 20.644894323,\n                \"long\": -103.274671277\n            },\n            {\n                \"lat\": 20.644604646,\n                \"long\": -103.274918385\n            },\n            {\n                \"lat\": 20.644398738,\n                \"long\": -103.2751014\n            },\n            {\n                \"lat\": 20.644171538,\n                \"long\": -103.275399815\n            },\n            {\n                \"lat\": 20.644027108,\n                \"long\": -103.275906585\n            },\n            {\n                \"lat\": 20.643946277,\n                \"long\": -103.276625492\n            },\n            {\n                \"lat\": 20.643912169,\n                \"long\": -103.277487262\n            },\n            {\n                \"lat\": 20.643509,\n                \"long\": -103.278149169\n            },\n            {\n                \"lat\": 20.643100985,\n                \"long\": -103.278585508\n            },\n            {\n                \"lat\": 20.642750477,\n                \"long\": -103.279001169\n            },\n            {\n                \"lat\": 20.641099754,\n                \"long\": -103.280666462\n            },\n            {\n                \"lat\": 20.6413308,\n                \"long\": -103.283985277\n            },\n            {\n                \"lat\": 20.641459569,\n                \"long\": -103.286750338\n            },\n            {\n                \"lat\": 20.6415294,\n                \"long\": -103.287982831\n            },\n            {\n                \"lat\": 20.6420178,\n                \"long\": -103.291474754\n            },\n            {\n                \"lat\": 20.642354862,\n                \"long\": -103.292455431\n            },\n            {\n                \"lat\": 20.642931831,\n                \"long\": -103.298307123\n            },\n            {\n                \"lat\": 20.6435124,\n                \"long\": -103.303726246\n            },\n            {\n                \"lat\": 20.643875708,\n                \"long\": -103.307738308\n            },\n            {\n                \"lat\": 20.644103262,\n                \"long\": -103.310319692\n            },\n            {\n                \"lat\": 20.6460222,\n                \"long\": -103.311233015\n            },\n            {\n                \"lat\": 20.646219431,\n                \"long\": -103.314951677\n            },\n            {\n                \"lat\": 20.645726677,\n                \"long\": -103.317863354\n            },\n            {\n                \"lat\": 20.6453472,\n                \"long\": -103.320009569\n            },\n            {\n                \"lat\": 20.642982046,\n                \"long\": -103.318242815\n            },\n            {\n                \"lat\": 20.641491662,\n                \"long\": -103.318823892\n            },\n            {\n                \"lat\": 20.638354415,\n                \"long\": -103.318718262\n            },\n            {\n                \"lat\": 20.635283123,\n                \"long\": -103.319782615\n            },\n            {\n                \"lat\": 20.632802323,\n                \"long\": -103.320031154\n            },\n            {\n                \"lat\": 20.631354738,\n                \"long\": -103.320657446\n            },\n            {\n                \"lat\": 20.629592862,\n                \"long\": -103.321973677\n            },\n            {\n                \"lat\": 20.626640508,\n                \"long\": -103.324304446\n            },\n            {\n                \"lat\": 20.6251588,\n                \"long\": -103.323474185\n            },\n            {\n                \"lat\": 20.624543231,\n                \"long\": -103.323837308\n            },\n            {\n                \"lat\": 20.626424123,\n                \"long\": -103.324623831\n            },\n            {\n                \"lat\": 20.626559477,\n                \"long\": -103.326957538\n            },\n            {\n                \"lat\": 20.625271385,\n                \"long\": -103.330924385\n            },\n            {\n                \"lat\": 20.623815185,\n                \"long\": -103.331455508\n            },\n            {\n                \"lat\": 20.623176985,\n                \"long\": -103.332442369\n            },\n            {\n                \"lat\": 20.621780923,\n                \"long\": -103.331974323\n            },\n            {\n                \"lat\": 20.620544831,\n                \"long\": -103.329592231\n            },\n            {\n                \"lat\": 20.617360923,\n                \"long\": -103.331126677\n            },\n            {\n                \"lat\": 20.615559785,\n                \"long\": -103.333384708\n            },\n            {\n                \"lat\": 20.6129778,\n                \"long\": -103.335801262\n            },\n            {\n                \"lat\": 20.614791154,\n                \"long\": -103.339325908\n            },\n            {\n                \"lat\": 20.612089292,\n                \"long\": -103.339795985\n            },\n            {\n                \"lat\": 20.609168662,\n                \"long\": -103.341374554\n            },\n            {\n                \"lat\": 20.609048108,\n                \"long\": -103.342632077\n            },\n            {\n                \"lat\": 20.608462477,\n                \"long\": -103.345730185\n            },\n            {\n                \"lat\": 20.609475385,\n                \"long\": -103.346703292\n            },\n            {\n                \"lat\": 20.610895508,\n                \"long\": -103.346970969\n            },\n            {\n                \"lat\": 20.611867154,\n                \"long\": -103.348646585\n            },\n            {\n                \"lat\": 20.613113,\n                \"long\": -103.350520754\n            },\n            {\n                \"lat\": 20.613828815,\n                \"long\": -103.350485415\n            },\n            {\n                \"lat\": 20.6142882,\n                \"long\": -103.350451462\n            },\n            {\n                \"lat\": 20.615071462,\n                \"long\": -103.352508169\n            },\n            {\n                \"lat\": 20.614197354,\n                \"long\": -103.353131908\n            },\n            {\n                \"lat\": 20.613860938,\n                \"long\": -103.353493446\n            },\n            {\n                \"lat\": 20.613789969,\n                \"long\": -103.354740846\n            },\n            {\n                \"lat\": 20.611762646,\n                \"long\": -103.354971738\n            },\n            {\n                \"lat\": 20.611894523,\n                \"long\": -103.357216031\n            },\n            {\n                \"lat\": 20.612148308,\n                \"long\": -103.365222231\n            },\n            {\n                \"lat\": 20.611921569,\n                \"long\": -103.366866631\n            },\n            {\n                \"lat\": 20.610984985,\n                \"long\": -103.367948954\n            },\n            {\n                \"lat\": 20.610950062,\n                \"long\": -103.369539508\n            },\n            {\n                \"lat\": 20.6117074,\n                \"long\": -103.370741123\n            },\n            {\n                \"lat\": 20.612041323,\n                \"long\": -103.372155662\n            },\n            {\n                \"lat\": 20.612251431,\n                \"long\": -103.372954262\n            },\n            {\n                \"lat\": 20.612552477,\n                \"long\": -103.3739984\n            },\n            {\n                \"lat\": 20.611743477,\n                \"long\": -103.375550477\n            },\n            {\n                \"lat\": 20.609950231,\n                \"long\": -103.377118369\n            },\n            {\n                \"lat\": 20.609787492,\n                \"long\": -103.379936262\n            },\n            {\n                \"lat\": 20.610029523,\n                \"long\": -103.381246738\n            },\n            {\n                \"lat\": 20.610784215,\n                \"long\": -103.382938277\n            },\n            {\n                \"lat\": 20.607265323,\n                \"long\": -103.385817892\n            },\n            {\n                \"lat\": 20.604872631,\n                \"long\": -103.389226785\n            },\n            {\n                \"lat\": 20.606930646,\n                \"long\": -103.3885568\n            },\n            {\n                \"lat\": 20.611921108,\n                \"long\": -103.389317723\n            },\n            {\n                \"lat\": 20.613004308,\n                \"long\": -103.389731554\n            },\n            {\n                \"lat\": 20.612858215,\n                \"long\": -103.390484569\n            },\n            {\n                \"lat\": 20.612427369,\n                \"long\": -103.391786846\n            },\n            {\n                \"lat\": 20.612051677,\n                \"long\": -103.392613385\n            },\n            {\n                \"lat\": 20.611495554,\n                \"long\": -103.394466846\n            },\n            {\n                \"lat\": 20.612985969,\n                \"long\": -103.395747277\n            },\n            {\n                \"lat\": 20.614823862,\n                \"long\": -103.394791538\n            },\n            {\n                \"lat\": 20.618216062,\n                \"long\": -103.392087462\n            },\n            {\n                \"lat\": 20.6215128,\n                \"long\": -103.3910684\n            },\n            {\n                \"lat\": 20.624263215,\n                \"long\": -103.395646323\n            },\n            {\n                \"lat\": 20.625250431,\n                \"long\": -103.397305262\n            },\n            {\n                \"lat\": 20.627399292,\n                \"long\": -103.398753123\n            },\n            {\n                \"lat\": 20.629590662,\n                \"long\": -103.398183077\n            },\n            {\n                \"lat\": 20.631427477,\n                \"long\": -103.397644062\n            },\n            {\n                \"lat\": 20.632820862,\n                \"long\": -103.397272923\n            },\n            {\n                \"lat\": 20.634903908,\n                \"long\": -103.395995969\n            },\n            {\n                \"lat\": 20.636013215,\n                \"long\": -103.396244815\n            },\n            {\n                \"lat\": 20.637341246,\n                \"long\": -103.397036677\n            },\n            {\n                \"lat\": 20.639689215,\n                \"long\": -103.396188954\n            },\n            {\n                \"lat\": 20.642170862,\n                \"long\": -103.395121846\n            },\n            {\n                \"lat\": 20.6420072,\n                \"long\": -103.396294215\n            },\n            {\n                \"lat\": 20.642526846,\n                \"long\": -103.399241031\n            },\n            {\n                \"lat\": 20.645112708,\n                \"long\": -103.398716446\n            },\n            {\n                \"lat\": 20.648955338,\n                \"long\": -103.398363431\n            },\n            {\n                \"lat\": 20.652753923,\n                \"long\": -103.395266215\n            },\n            {\n                \"lat\": 20.657019769,\n                \"long\": -103.398341954\n            },\n            {\n                \"lat\": 20.659905785,\n                \"long\": -103.398147908\n            },\n            {\n                \"lat\": 20.663431,\n                \"long\": -103.401403538\n            },\n            {\n                \"lat\": 20.665961692,\n                \"long\": -103.402111338\n            },\n            {\n                \"lat\": 20.666421615,\n                \"long\": -103.402041831\n            },\n            {\n                \"lat\": 20.666857354,\n                \"long\": -103.402468169\n            },\n            {\n                \"lat\": 20.667818385,\n                \"long\": -103.402559092\n            },\n            {\n                \"lat\": 20.669981215,\n                \"long\": -103.401200169\n            },\n            {\n                \"lat\": 20.671393738,\n                \"long\": -103.399980615\n            },\n            {\n                \"lat\": 20.6729078,\n                \"long\": -103.399948031\n            },\n            {\n                \"lat\": 20.674622892,\n                \"long\": -103.401448338\n            },\n            {\n                \"lat\": 20.677944908,\n                \"long\": -103.403614446\n            },\n            {\n                \"lat\": 20.680884123,\n                \"long\": -103.403618277\n            },\n            {\n                \"lat\": 20.681321723,\n                \"long\": -103.401915923\n            },\n            {\n                \"lat\": 20.681595615,\n                \"long\": -103.401485138\n            },\n            {\n                \"lat\": 20.683904708,\n                \"long\": -103.401025892\n            },\n            {\n                \"lat\": 20.687590938,\n                \"long\": -103.400385077\n            },\n            {\n                \"lat\": 20.689972969,\n                \"long\": -103.398472785\n            },\n            {\n                \"lat\": 20.691010969,\n                \"long\": -103.398460508\n            },\n            {\n                \"lat\": 20.691768154,\n                \"long\": -103.400800046\n            },\n            {\n                \"lat\": 20.691082754,\n                \"long\": -103.403053938\n            },\n            {\n                \"lat\": 20.691942969,\n                \"long\": -103.403510831\n            },\n            {\n                \"lat\": 20.693024585,\n                \"long\": -103.404676\n            },\n            {\n                \"lat\": 20.694220369,\n                \"long\": -103.402247646\n            },\n            {\n                \"lat\": 20.695095785,\n                \"long\": -103.402516692\n            },\n            {\n                \"lat\": 20.697802354,\n                \"long\": -103.399881462\n            },\n            {\n                \"lat\": 20.699113554,\n                \"long\": -103.399448092\n            },\n            {\n                \"lat\": 20.699522031,\n                \"long\": -103.400285215\n            },\n            {\n                \"lat\": 20.699234754,\n                \"long\": -103.401190523\n            },\n            {\n                \"lat\": 20.699726523,\n                \"long\": -103.4018024\n            },\n            {\n                \"lat\": 20.700988708,\n                \"long\": -103.401878154\n            },\n            {\n                \"lat\": 20.703258908,\n                \"long\": -103.402819538\n            },\n            {\n                \"lat\": 20.706130492,\n                \"long\": -103.404261877\n            },\n            {\n                \"lat\": 20.708836138,\n                \"long\": -103.406267831\n            },\n            {\n                \"lat\": 20.711306723,\n                \"long\": -103.406618585\n            },\n            {\n                \"lat\": 20.712173585,\n                \"long\": -103.405153831\n            },\n            {\n                \"lat\": 20.711181569,\n                \"long\": -103.401880954\n            },\n            {\n                \"lat\": 20.712129677,\n                \"long\": -103.395085154\n            },\n            {\n                \"lat\": 20.710660215,\n                \"long\": -103.393020385\n            },\n            {\n                \"lat\": 20.709967708,\n                \"long\": -103.388343908\n            },\n            {\n                \"lat\": 20.711155708,\n                \"long\": -103.382422031\n            },\n            {\n                \"lat\": 20.7115596,\n                \"long\": -103.377959785\n            },\n            {\n                \"lat\": 20.713127846,\n                \"long\": -103.374246677\n            },\n            {\n                \"lat\": 20.713895969,\n                \"long\": -103.371264662\n            },\n            {\n                \"lat\": 20.713295369,\n                \"long\": -103.369474508\n            },\n            {\n                \"lat\": 20.713067262,\n                \"long\": -103.365658046\n            },\n            {\n                \"lat\": 20.712858677,\n                \"long\": -103.362422431\n            },\n            {\n                \"lat\": 20.713278385,\n                \"long\": -103.361058508\n            },\n            {\n                \"lat\": 20.714079031,\n                \"long\": -103.358456892\n            },\n            {\n                \"lat\": 20.715362508,\n                \"long\": -103.356676031\n            },\n            {\n                \"lat\": 20.715419185,\n                \"long\": -103.354469477\n            },\n            {\n                \"lat\": 20.715343477,\n                \"long\": -103.352996723\n            },\n            {\n                \"lat\": 20.7167344,\n                \"long\": -103.350187338\n            },\n            {\n                \"lat\": 20.717228538,\n                \"long\": -103.347622262\n            },\n            {\n                \"lat\": 20.7162892,\n                \"long\": -103.346413692\n            },\n            {\n                \"lat\": 20.716277385,\n                \"long\": -103.344989077\n            },\n            {\n                \"lat\": 20.716918785,\n                \"long\": -103.344099662\n            },\n            {\n                \"lat\": 20.717862569,\n                \"long\": -103.343577446\n            },\n            {\n                \"lat\": 20.719096277,\n                \"long\": -103.343229308\n            },\n            {\n                \"lat\": 20.719412062,\n                \"long\": -103.342253015\n            },\n            {\n                \"lat\": 20.719961769,\n                \"long\": -103.341452708\n            },\n            {\n                \"lat\": 20.720823,\n                \"long\": -103.341467862\n            },\n            {\n                \"lat\": 20.721665554,\n                \"long\": -103.341500631\n            },\n            {\n                \"lat\": 20.722272769,\n                \"long\": -103.340998631\n            },\n            {\n                \"lat\": 20.723849923,\n                \"long\": -103.339566169\n            },\n            {\n                \"lat\": 20.724333631,\n                \"long\": -103.337912185\n            },\n            {\n                \"lat\": 20.724885354,\n                \"long\": -103.336412815\n            },\n            {\n                \"lat\": 20.725478385,\n                \"long\": -103.335378231\n            },\n            {\n                \"lat\": 20.727060615,\n                \"long\": -103.334680385\n            },\n            {\n                \"lat\": 20.727950585,\n                \"long\": -103.334749615\n            },\n            {\n                \"lat\": 20.728056646,\n                \"long\": -103.333739169\n            },\n            {\n                \"lat\": 20.727641046,\n                \"long\": -103.333241754\n            },\n            {\n                \"lat\": 20.728190846,\n                \"long\": -103.332363262\n            },\n            {\n                \"lat\": 20.728645985,\n                \"long\": -103.3308196\n            },\n            {\n                \"lat\": 20.729854569,\n                \"long\": -103.329619462\n            },\n            {\n                \"lat\": 20.7317938,\n                \"long\": -103.328748446\n            },\n            {\n                \"lat\": 20.736951508,\n                \"long\": -103.324304431\n            },\n            {\n                \"lat\": 20.743419862,\n                \"long\": -103.326124062\n            },\n            {\n                \"lat\": 20.744798538,\n                \"long\": -103.3267192\n            },\n            {\n                \"lat\": 20.746104646,\n                \"long\": -103.324193846\n            },\n            {\n                \"lat\": 20.746683092,\n                \"long\": -103.323160646\n            },\n            {\n                \"lat\": 20.747762138,\n                \"long\": -103.321815585\n            },\n            {\n                \"lat\": 20.7476208,\n                \"long\": -103.320085308\n            },\n            {\n                \"lat\": 20.748521554,\n                \"long\": -103.318716985\n            },\n            {\n                \"lat\": 20.749407615,\n                \"long\": -103.317095738\n            },\n            {\n                \"lat\": 20.750783385,\n                \"long\": -103.314482031\n            },\n            {\n                \"lat\": 20.751320123,\n                \"long\": -103.313254677\n            },\n            {\n                \"lat\": 20.752655462,\n                \"long\": -103.312346569\n            },\n            {\n                \"lat\": 20.750980738,\n                \"long\": -103.311643815\n            }\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/56968dfe929a7.png\",\n        \"id\": \"5644c5816aa918ea028b4797\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5d9ee7bfde2efef4018b4570\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Gua_MX_7Z_Trabajo\",\n                        \"name\": \"7-Z Trabajo\",\n                        \"description\": \"7-Z Trabajo\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5ee08c7b7f2473c60c8b4568\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Gua_MX_Distritos_2\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": true,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5ee091edbc8905cc0c8b4588\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Gua_MX_Colonias\",\n                        \"name\": \"Colonias\",\n                        \"description\": \"Colonias\",\n                        \"preset\": true,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    }\n                ],\n                \"extent\": [\n                    -103.406618585,\n                    20.604872631,\n                    -103.263761708,\n                    20.752655462\n                ],\n                \"id\": \"5c9b55599650e67d42985e81\",\n                \"location_additional_data\": {},\n                \"name\": \"mx.guadalajara\",\n                \"type\": \"city\",\n                \"visible_name\": \"Guadalajara\",\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"mx.guadalajara\",\n        \"key_name\": \"Guadalajara, Jal., México\",\n        \"locales\": [\n            \"es_MX\"\n        ],\n        \"name\": \"Ciudapp Guadalajara\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17716\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17717\",\n                \"options\": [\n                    \"ios\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17718\",\n                \"options\": [\n                    \"android\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17719\",\n                \"options\": [\n                    \"inperson\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771a\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771b\",\n                \"options\": [\n                    \"inperson\",\n                    \"email\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771c\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771d\",\n                \"options\": [\n                    \"facebook\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771e\",\n                \"options\": [\n                    \"twitter\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17720\",\n                \"options\": []\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17721\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17722\",\n                \"options\": [\n                    \"web_channel\"\n                ]\n            },\n            {\n                \"id\": \"60c09cdccdf34808168b4573\",\n                \"options\": [\n                    \"android\"\n                ]\n            }\n        ],\n        \"lat\": 20.6598119,\n        \"long\": -103.3495576,\n        \"tags\": [\n            {\n                \"name\": \"Cultura\",\n                \"color\": \"#000000\",\n                \"id\": \"Cultura\"\n            },\n            {\n                \"name\": \"Entretenimiento\",\n                \"color\": \"#000000\",\n                \"id\": \"Entretenimiento\"\n            },\n            {\n                \"name\": \"Deportes\",\n                \"color\": \"#000000\",\n                \"id\": \"Deportes\"\n            },\n            {\n                \"name\": \"Social\",\n                \"color\": \"#000000\",\n                \"id\": \"Social\"\n            },\n            {\n                \"name\": \"General\",\n                \"color\": \"#000000\",\n                \"id\": \"General\"\n            },\n            {\n                \"name\": \"Dependencias\",\n                \"color\": \"#00bcd4\",\n                \"id\": \"Dependencias\"\n            },\n            {\n                \"name\": \"Ciudadano\",\n                \"color\": \"#9e9e9e\",\n                \"id\": \"Ciudadano\"\n            },\n            {\n                \"name\": \"Turismo\",\n                \"color\": \"#880e4f\",\n                \"id\": \"Turismo\"\n            },\n            {\n                \"name\": \"Juventud\",\n                \"color\": \"#ad1457\",\n                \"id\": \"Juventud\"\n            }\n        ],\n        \"timezone\": \"America/Mexico_City\",\n        \"typologies\": [\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c10\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            }\n        ],\n        \"typology_nodes\": [\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c5e\",\n                \"color\": \"#f1c40f\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"5b3505822dbc34bc038b458d\",\n                \"color\": \"#c12c22\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"5b3505328ec5416f088b463c\",\n                    \"color\": \"#0971ab\",\n                    \"description_legend\": \"Reporta incidencias relacionadas con lluvias\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Reporta cualquier problema relacionado con lluvias como luminarias apagadas, árboles y ramas con peligro de caída, cortocircuitos, vehículos inundados...\",\n                    \"visible_name\": \"Temporada de lluvias\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Acción Urgente\"\n            },\n            {\n                \"id\": \"59a3fd52b9f93c11168b457c\",\n                \"color\": \"#b39ddb\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. de Consultar\"\n            },\n            {\n                \"id\": \"5b3505af8ec5419e088b459c\",\n                \"color\": \"#7d7575\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"5b3505328ec5416f088b463c\",\n                    \"color\": \"#0971ab\",\n                    \"description_legend\": \"Reporta incidencias relacionadas con lluvias\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Reporta cualquier problema relacionado con lluvias como luminarias apagadas, árboles y ramas con peligro de caída, cortocircuitos, vehículos inundados...\",\n                    \"visible_name\": \"Temporada de lluvias\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Planificado en Progreso\"\n            },\n            {\n                \"id\": \"59a3fd6c0b2be16d158b456a\",\n                \"color\": \"#993399\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Consultado\"\n            },\n            {\n                \"id\": \"5b3551b18ec541ce098b45d2\",\n                \"color\": \"#469be3\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"5b3505328ec5416f088b463c\",\n                    \"color\": \"#0971ab\",\n                    \"description_legend\": \"Reporta incidencias relacionadas con lluvias\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Reporta cualquier problema relacionado con lluvias como luminarias apagadas, árboles y ramas con peligro de caída, cortocircuitos, vehículos inundados...\",\n                    \"visible_name\": \"Temporada de lluvias\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"En Progreso\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c5f\",\n                \"color\": \"#0c98f5\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En Ejecución\"\n            },\n            {\n                \"id\": \"5b35522cd1e8c5e4048b45d5\",\n                \"color\": \"#55dff2\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"5b3505328ec5416f088b463c\",\n                    \"color\": \"#0971ab\",\n                    \"description_legend\": \"Reporta incidencias relacionadas con lluvias\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Reporta cualquier problema relacionado con lluvias como luminarias apagadas, árboles y ramas con peligro de caída, cortocircuitos, vehículos inundados...\",\n                    \"visible_name\": \"Temporada de lluvias\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c60\",\n                \"color\": \"#21618c\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Validar Ejecución\"\n            },\n            {\n                \"id\": \"5b3552798ec541250a8b4567\",\n                \"color\": \"#3732f0\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"5b3505328ec5416f088b463c\",\n                    \"color\": \"#0971ab\",\n                    \"description_legend\": \"Reporta incidencias relacionadas con lluvias\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Reporta cualquier problema relacionado con lluvias como luminarias apagadas, árboles y ramas con peligro de caída, cortocircuitos, vehículos inundados...\",\n                    \"visible_name\": \"Temporada de lluvias\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"59a3fd9ad6ca40cd168b4567\",\n                \"color\": \"#347871\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"5b3552b08ec541a3098b45fa\",\n                \"color\": \"#f5ac22\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"5b3505328ec5416f088b463c\",\n                    \"color\": \"#0971ab\",\n                    \"description_legend\": \"Reporta incidencias relacionadas con lluvias\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Reporta cualquier problema relacionado con lluvias como luminarias apagadas, árboles y ramas con peligro de caída, cortocircuitos, vehículos inundados...\",\n                    \"visible_name\": \"Temporada de lluvias\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"59a3fdec0b2be16c158b456b\",\n                \"color\": \"#8cbc2d\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Solucionado\"\n            },\n            {\n                \"id\": \"5b3552e92dbc34ab048b45e8\",\n                \"color\": \"#a9cc76\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"5b3505328ec5416f088b463c\",\n                    \"color\": \"#0971ab\",\n                    \"description_legend\": \"Reporta incidencias relacionadas con lluvias\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Reporta cualquier problema relacionado con lluvias como luminarias apagadas, árboles y ramas con peligro de caída, cortocircuitos, vehículos inundados...\",\n                    \"visible_name\": \"Temporada de lluvias\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Validado\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c62\",\n                \"color\": \"#e30000\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"5b362178d59359b3018b46a1\",\n                \"color\": \"#33691e\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"5b3505328ec5416f088b463c\",\n                    \"color\": \"#0971ab\",\n                    \"description_legend\": \"Reporta incidencias relacionadas con lluvias\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Reporta cualquier problema relacionado con lluvias como luminarias apagadas, árboles y ramas con peligro de caída, cortocircuitos, vehículos inundados...\",\n                    \"visible_name\": \"Temporada de lluvias\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"59a3fdfd19f8815f158b4572\",\n                \"color\": \"#ea8b3f\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Cancelado\"\n            },\n            {\n                \"id\": \"5b3621a30f3b7ca5018b46b1\",\n                \"color\": \"#b71b1c\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"5b3505328ec5416f088b463c\",\n                    \"color\": \"#0971ab\",\n                    \"description_legend\": \"Reporta incidencias relacionadas con lluvias\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Reporta cualquier problema relacionado con lluvias como luminarias apagadas, árboles y ramas con peligro de caída, cortocircuitos, vehículos inundados...\",\n                    \"visible_name\": \"Temporada de lluvias\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c61\",\n                \"color\": \"#2e7d32\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"59cb679eda4282514d8b457e\",\n                \"color\": \"#964848\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Acción Urgente\"\n            },\n            {\n                \"id\": \"5f156effbde32e00068b458a\",\n                \"color\": \"#b38b8b\",\n                \"order\": 12,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificar Ejecución\"\n            },\n            {\n                \"id\": \"5f156f33bde32e04068b4567\",\n                \"color\": \"#966262\",\n                \"order\": 13,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificado por Contingencias\"\n            },\n            {\n                \"id\": \"5fda3e4bd5dc1bc1078b4575\",\n                \"color\": \"#b26eac\",\n                \"order\": 14,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Consultar por Contingencia\"\n            },\n            {\n                \"id\": \"5fda3f23aeb54409088b4567\",\n                \"color\": \"#dcaaec\",\n                \"order\": 15,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Consultar por Causas Diversas\"\n            },\n            {\n                \"id\": \"60fae97a5d66ce6e0c8b4567\",\n                \"color\": \"#2ce8ac\",\n                \"order\": 16,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Apercibimiento\"\n            },\n            {\n                \"id\": \"60faea196aa4f791088b4567\",\n                \"color\": \"#a37b0a\",\n                \"order\": 17,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Procedimiento\"\n            },\n            {\n                \"id\": \"60faeb856aa4f7b9088b4567\",\n                \"color\": \"#b4a7d6\",\n                \"order\": 18,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resolución\"\n            },\n            {\n                \"id\": \"60faea86dfcbe6a10c8b4567\",\n                \"color\": \"#7d1f4f\",\n                \"order\": 19,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Citatorio\"\n            },\n            {\n                \"id\": \"60faeda5dfcbe6dc0c8b4585\",\n                \"color\": \"#d108d1\",\n                \"order\": 20,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Juzgados\"\n            },\n            {\n                \"id\": \"60faee85dfcbe6e50c8b456c\",\n                \"color\": \"#c27ba0\",\n                \"order\": 21,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Mediación\"\n            },\n            {\n                \"id\": \"60faef35630b02790b8b4567\",\n                \"color\": \"#999999\",\n                \"order\": 22,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto C5\"\n            },\n            {\n                \"id\": \"60ff3fec630b02ce0f8b457d\",\n                \"color\": \"#0b5394\",\n                \"order\": 23,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c10\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Validar Comparecencia\"\n            }\n        ],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": true,\n            \"requests_process\": true,\n            \"requests_comments\": true,\n            \"requests_worknotes\": true,\n            \"requests_reiterations\": true,\n            \"requests_complaints\": true,\n            \"user_evaluation\": true,\n            \"service_survey\": false,\n            \"alerts\": true,\n            \"inventory\": false,\n            \"backoffice_admin\": true,\n            \"app_configuration\": true,\n            \"notifications\": true,\n            \"planned_requests\": true,\n            \"planning\": false,\n            \"users\": false,\n            \"predetermined_response\": true,\n            \"predetermined_response_external_source\": false,\n            \"company_enquiry\": true,\n            \"layer\": false,\n            \"jurisdiction_element\": false,\n            \"webhook\": false,\n            \"user_guide\": false,\n            \"worklog\": false,\n            \"calendar\": false\n        },\n        \"app_urls\": {\n            \"web_url\": null,\n            \"google_play_manager\": null,\n            \"google_play_citizens\": null,\n            \"app_store\": null\n        }\n    },\n    {\n        \"only_registered_users\": true,\n        \"max_upload_files\": 5,\n        \"automatic_typology\": false,\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5de927dc0007544c098b4577\",\n                \"is_default\": true,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Tlj_MX_Distritos_1\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": true,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5de9282500075448098b459b\",\n                \"is_default\": true,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Tlj_MX_Colonias_1\",\n                \"name\": \"Colonias\",\n                \"description\": \"Colonias\",\n                \"preset\": true,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            }\n        ],\n        \"max_export_requests\": 10000,\n        \"accepted_id_documents\": [],\n        \"buttons\": [],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5cb6e8833f960e8b457a\",\n                \"name\": \"Gestores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5d2101394ad80d8b45f5\",\n                \"name\": \"Técnicos Avisos\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"5e2f5d97e8833f980e8b456a\",\n                \"name\": \"Atención Ciudadana 02\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e21fee15c120d8b457b\",\n                \"name\": \"Solicitantes Internos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f61effee15c140d8b456b\",\n                \"name\": \"Gerentes de la ciudad\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e5f8c5e3b5399d7048b45ee\",\n                \"name\": \"Gestores de la plataforma\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e73bd8502be88c10f8b4568\",\n                \"name\": \"Comunicación\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e94d7c102be88f82b8b4575\",\n                \"name\": \"Supervisores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5ec3e7299094c891038b4583\",\n                \"name\": \"Creadores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116bf2c69819736098b4588\",\n                \"name\": \"Gestores Avisos Empresa\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116d0d45fc66aa7088b4586\",\n                \"name\": \"Coordinación Servicios Municipales\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116e3b597366e68098b4568\",\n                \"name\": \"Oficina Digital\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"62990af6b332ddcb118b4580\",\n                \"name\": \"Trámites\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"651a3873cd5cbdd59909b8a1\",\n                \"name\": \"Prueba QA\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"651a38cd921b21b108013003\",\n                \"name\": \"Canal de prueba\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            }\n        ],\n        \"company_emails\": [\n            \"comentarios.tlajoapp@mejoratuciudad.org\"\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": 20.60409367,\n                \"long\": -103.21871977\n            },\n            {\n                \"lat\": 20.36175362,\n                \"long\": -103.596558\n            }\n        ],\n        \"geo_perimeter\": [\n            {\n                \"lat\": 20.53658856,\n                \"long\": -103.29477755\n            },\n            {\n                \"lat\": 20.53637072,\n                \"long\": -103.29462641\n            },\n            {\n                \"lat\": 20.5363448,\n                \"long\": -103.29460842\n            },\n            {\n                \"lat\": 20.53621389,\n                \"long\": -103.29444264\n            },\n            {\n                \"lat\": 20.5361348,\n                \"long\": -103.2944622\n            },\n            {\n                \"lat\": 20.53592882,\n                \"long\": -103.29413354\n            },\n            {\n                \"lat\": 20.53582402,\n                \"long\": -103.29356937\n            },\n            {\n                \"lat\": 20.53556545,\n                \"long\": -103.29217751\n            },\n            {\n                \"lat\": 20.53550307,\n                \"long\": -103.29187347\n            },\n            {\n                \"lat\": 20.53548315,\n                \"long\": -103.29177639\n            },\n            {\n                \"lat\": 20.53545634,\n                \"long\": -103.29164572\n            },\n            {\n                \"lat\": 20.53543727,\n                \"long\": -103.29155276\n            },\n            {\n                \"lat\": 20.53541193,\n                \"long\": -103.29147909\n            },\n            {\n                \"lat\": 20.53537766,\n                \"long\": -103.29137946\n            },\n            {\n                \"lat\": 20.53533537,\n                \"long\": -103.29125649\n            },\n            {\n                \"lat\": 20.53526979,\n                \"long\": -103.29106583\n            },\n            {\n                \"lat\": 20.53515392,\n                \"long\": -103.29072894\n            },\n            {\n                \"lat\": 20.5351005,\n                \"long\": -103.29057363\n            },\n            {\n                \"lat\": 20.5350963,\n                \"long\": -103.29055813\n            },\n            {\n                \"lat\": 20.53497038,\n                \"long\": -103.2901933\n            },\n            {\n                \"lat\": 20.53368986,\n                \"long\": -103.2864938\n            },\n            {\n                \"lat\": 20.53307286,\n                \"long\": -103.28471137\n            },\n            {\n                \"lat\": 20.53300657,\n                \"long\": -103.28451988\n            },\n            {\n                \"lat\": 20.53201286,\n                \"long\": -103.28164932\n            },\n            {\n                \"lat\": 20.53172132,\n                \"long\": -103.28080719\n            },\n            {\n                \"lat\": 20.53162238,\n                \"long\": -103.28052138\n            },\n            {\n                \"lat\": 20.5315484,\n                \"long\": -103.28026797\n            },\n            {\n                \"lat\": 20.53152955,\n                \"long\": -103.28019622\n            },\n            {\n                \"lat\": 20.53148129,\n                \"long\": -103.28001242\n            },\n            {\n                \"lat\": 20.5314211,\n                \"long\": -103.27975494\n            },\n            {\n                \"lat\": 20.53136788,\n                \"long\": -103.27949573\n            },\n            {\n                \"lat\": 20.53132169,\n                \"long\": -103.27923501\n            },\n            {\n                \"lat\": 20.53126398,\n                \"long\": -103.27842287\n            },\n            {\n                \"lat\": 20.53124937,\n                \"long\": -103.27821728\n            },\n            {\n                \"lat\": 20.53123769,\n                \"long\": -103.2780529\n            },\n            {\n                \"lat\": 20.53076592,\n                \"long\": -103.27648318\n            },\n            {\n                \"lat\": 20.5301864,\n                \"long\": -103.27575078\n            },\n            {\n                \"lat\": 20.53015815,\n                \"long\": -103.27571508\n            },\n            {\n                \"lat\": 20.52858567,\n                \"long\": -103.27453469\n            },\n            {\n                \"lat\": 20.52772565,\n                \"long\": -103.27358559\n            },\n            {\n                \"lat\": 20.52756587,\n                \"long\": -103.27340925\n            },\n            {\n                \"lat\": 20.52529509,\n                \"long\": -103.26963223\n            },\n            {\n                \"lat\": 20.52492268,\n                \"long\": -103.26926174\n            },\n            {\n                \"lat\": 20.52207016,\n                \"long\": -103.266424\n            },\n            {\n                \"lat\": 20.5218589,\n                \"long\": -103.26627695\n            },\n            {\n                \"lat\": 20.52171809,\n                \"long\": -103.26617894\n            },\n            {\n                \"lat\": 20.52115086,\n                \"long\": -103.26578414\n            },\n            {\n                \"lat\": 20.52031074,\n                \"long\": -103.26541413\n            },\n            {\n                \"lat\": 20.51960899,\n                \"long\": -103.26510507\n            },\n            {\n                \"lat\": 20.51970793,\n                \"long\": -103.26501695\n            },\n            {\n                \"lat\": 20.51968524,\n                \"long\": -103.26500694\n            },\n            {\n                \"lat\": 20.51955079,\n                \"long\": -103.26485002\n            },\n            {\n                \"lat\": 20.51929044,\n                \"long\": -103.26454615\n            },\n            {\n                \"lat\": 20.51766235,\n                \"long\": -103.26264595\n            },\n            {\n                \"lat\": 20.5175762,\n                \"long\": -103.2625453\n            },\n            {\n                \"lat\": 20.51594965,\n                \"long\": -103.26064465\n            },\n            {\n                \"lat\": 20.51497409,\n                \"long\": -103.25951083\n            },\n            {\n                \"lat\": 20.51488652,\n                \"long\": -103.25940906\n            },\n            {\n                \"lat\": 20.51225681,\n                \"long\": -103.25635288\n            },\n            {\n                \"lat\": 20.51216278,\n                \"long\": -103.2562436\n            },\n            {\n                \"lat\": 20.51118018,\n                \"long\": -103.25510169\n            },\n            {\n                \"lat\": 20.51078048,\n                \"long\": -103.25463446\n            },\n            {\n                \"lat\": 20.51072962,\n                \"long\": -103.25457501\n            },\n            {\n                \"lat\": 20.51064957,\n                \"long\": -103.25448143\n            },\n            {\n                \"lat\": 20.51062837,\n                \"long\": -103.25445665\n            },\n            {\n                \"lat\": 20.51061626,\n                \"long\": -103.25439575\n            },\n            {\n                \"lat\": 20.51061365,\n                \"long\": -103.25438433\n            },\n            {\n                \"lat\": 20.51060291,\n                \"long\": -103.25431029\n            },\n            {\n                \"lat\": 20.51059289,\n                \"long\": -103.25426245\n            },\n            {\n                \"lat\": 20.51057893,\n                \"long\": -103.25419578\n            },\n            {\n                \"lat\": 20.51057719,\n                \"long\": -103.25418746\n            },\n            {\n                \"lat\": 20.51057154,\n                \"long\": -103.25416051\n            },\n            {\n                \"lat\": 20.51056476,\n                \"long\": -103.25412811\n            },\n            {\n                \"lat\": 20.51055089,\n                \"long\": -103.25406189\n            },\n            {\n                \"lat\": 20.51053958,\n                \"long\": -103.25400784\n            },\n            {\n                \"lat\": 20.51052474,\n                \"long\": -103.25393842\n            },\n            {\n                \"lat\": 20.51051462,\n                \"long\": -103.25388768\n            },\n            {\n                \"lat\": 20.51051059,\n                \"long\": -103.25386748\n            },\n            {\n                \"lat\": 20.51050135,\n                \"long\": -103.25382116\n            },\n            {\n                \"lat\": 20.51049967,\n                \"long\": -103.25381273\n            },\n            {\n                \"lat\": 20.51049399,\n                \"long\": -103.2537851\n            },\n            {\n                \"lat\": 20.51048742,\n                \"long\": -103.25375316\n            },\n            {\n                \"lat\": 20.51047361,\n                \"long\": -103.25368602\n            },\n            {\n                \"lat\": 20.51046448,\n                \"long\": -103.25364164\n            },\n            {\n                \"lat\": 20.51046,\n                \"long\": -103.25363425\n            },\n            {\n                \"lat\": 20.5104456,\n                \"long\": -103.25354157\n            },\n            {\n                \"lat\": 20.51039025,\n                \"long\": -103.25326397\n            },\n            {\n                \"lat\": 20.51038211,\n                \"long\": -103.25322317\n            },\n            {\n                \"lat\": 20.51022246,\n                \"long\": -103.2524225\n            },\n            {\n                \"lat\": 20.5101007,\n                \"long\": -103.25222445\n            },\n            {\n                \"lat\": 20.51005725,\n                \"long\": -103.25215377\n            },\n            {\n                \"lat\": 20.50938826,\n                \"long\": -103.25106565\n            },\n            {\n                \"lat\": 20.50915639,\n                \"long\": -103.25107268\n            },\n            {\n                \"lat\": 20.50902959,\n                \"long\": -103.25107205\n            },\n            {\n                \"lat\": 20.50993102,\n                \"long\": -103.25071857\n            },\n            {\n                \"lat\": 20.50975547,\n                \"long\": -103.25008332\n            },\n            {\n                \"lat\": 20.50972831,\n                \"long\": -103.24998503\n            },\n            {\n                \"lat\": 20.50935972,\n                \"long\": -103.2486513\n            },\n            {\n                \"lat\": 20.50915599,\n                \"long\": -103.24791412\n            },\n            {\n                \"lat\": 20.50914139,\n                \"long\": -103.2478613\n            },\n            {\n                \"lat\": 20.50890331,\n                \"long\": -103.2470508\n            },\n            {\n                \"lat\": 20.50886608,\n                \"long\": -103.24704468\n            },\n            {\n                \"lat\": 20.50761667,\n                \"long\": -103.2468393\n            },\n            {\n                \"lat\": 20.50703085,\n                \"long\": -103.246743\n            },\n            {\n                \"lat\": 20.50694504,\n                \"long\": -103.24650554\n            },\n            {\n                \"lat\": 20.50703303,\n                \"long\": -103.24586419\n            },\n            {\n                \"lat\": 20.5068091,\n                \"long\": -103.2453524\n            },\n            {\n                \"lat\": 20.50662731,\n                \"long\": -103.24525433\n            },\n            {\n                \"lat\": 20.50660165,\n                \"long\": -103.24524048\n            },\n            {\n                \"lat\": 20.50616698,\n                \"long\": -103.24500597\n            },\n            {\n                \"lat\": 20.50587219,\n                \"long\": -103.24484218\n            },\n            {\n                \"lat\": 20.50582616,\n                \"long\": -103.2448166\n            },\n            {\n                \"lat\": 20.50582323,\n                \"long\": -103.24481577\n            },\n            {\n                \"lat\": 20.50508307,\n                \"long\": -103.24460574\n            },\n            {\n                \"lat\": 20.50503095,\n                \"long\": -103.24460579\n            },\n            {\n                \"lat\": 20.50469498,\n                \"long\": -103.24459281\n            },\n            {\n                \"lat\": 20.50460914,\n                \"long\": -103.24459899\n            },\n            {\n                \"lat\": 20.50432127,\n                \"long\": -103.24461972\n            },\n            {\n                \"lat\": 20.50364504,\n                \"long\": -103.24453325\n            },\n            {\n                \"lat\": 20.50360911,\n                \"long\": -103.24454362\n            },\n            {\n                \"lat\": 20.50357316,\n                \"long\": -103.24454808\n            },\n            {\n                \"lat\": 20.50352063,\n                \"long\": -103.24454813\n            },\n            {\n                \"lat\": 20.5034787,\n                \"long\": -103.24454659\n            },\n            {\n                \"lat\": 20.50342784,\n                \"long\": -103.2445354\n            },\n            {\n                \"lat\": 20.50340153,\n                \"long\": -103.24453168\n            },\n            {\n                \"lat\": 20.50336996,\n                \"long\": -103.24452235\n            },\n            {\n                \"lat\": 20.50333839,\n                \"long\": -103.24450741\n            },\n            {\n                \"lat\": 20.50330331,\n                \"long\": -103.24449059\n            },\n            {\n                \"lat\": 20.50327174,\n                \"long\": -103.24447377\n            },\n            {\n                \"lat\": 20.5032349,\n                \"long\": -103.24445321\n            },\n            {\n                \"lat\": 20.50319981,\n                \"long\": -103.24442517\n            },\n            {\n                \"lat\": 20.50316647,\n                \"long\": -103.24439899\n            },\n            {\n                \"lat\": 20.50313664,\n                \"long\": -103.24436719\n            },\n            {\n                \"lat\": 20.50309978,\n                \"long\": -103.24432604\n            },\n            {\n                \"lat\": 20.50307169,\n                \"long\": -103.24428114\n            },\n            {\n                \"lat\": 20.50304535,\n                \"long\": -103.24423623\n            },\n            {\n                \"lat\": 20.50302253,\n                \"long\": -103.24419507\n            },\n            {\n                \"lat\": 20.5030032,\n                \"long\": -103.24414455\n            },\n            {\n                \"lat\": 20.50298562,\n                \"long\": -103.24408279\n            },\n            {\n                \"lat\": 20.50297505,\n                \"long\": -103.24402476\n            },\n            {\n                \"lat\": 20.50297326,\n                \"long\": -103.24398545\n            },\n            {\n                \"lat\": 20.50296795,\n                \"long\": -103.24392436\n            },\n            {\n                \"lat\": 20.50297143,\n                \"long\": -103.24388879\n            },\n            {\n                \"lat\": 20.50297665,\n                \"long\": -103.24384011\n            },\n            {\n                \"lat\": 20.50298714,\n                \"long\": -103.24380079\n            },\n            {\n                \"lat\": 20.50309383,\n                \"long\": -103.24347496\n            },\n            {\n                \"lat\": 20.50311076,\n                \"long\": -103.24272439\n            },\n            {\n                \"lat\": 20.50228185,\n                \"long\": -103.24248742\n            },\n            {\n                \"lat\": 20.50219185,\n                \"long\": -103.24178487\n            },\n            {\n                \"lat\": 20.50148329,\n                \"long\": -103.24164554\n            },\n            {\n                \"lat\": 20.50130902,\n                \"long\": -103.24084253\n            },\n            {\n                \"lat\": 20.50106912,\n                \"long\": -103.24064858\n            },\n            {\n                \"lat\": 20.50091014,\n                \"long\": -103.24054569\n            },\n            {\n                \"lat\": 20.50078847,\n                \"long\": -103.2404665\n            },\n            {\n                \"lat\": 20.5006891,\n                \"long\": -103.24040183\n            },\n            {\n                \"lat\": 20.50058515,\n                \"long\": -103.24033417\n            },\n            {\n                \"lat\": 20.50058324,\n                \"long\": -103.24033323\n            },\n            {\n                \"lat\": 20.50037776,\n                \"long\": -103.24023216\n            },\n            {\n                \"lat\": 20.50018856,\n                \"long\": -103.24011295\n            },\n            {\n                \"lat\": 20.5000158,\n                \"long\": -103.23995661\n            },\n            {\n                \"lat\": 20.49950074,\n                \"long\": -103.23989327\n            },\n            {\n                \"lat\": 20.49881887,\n                \"long\": -103.23978594\n            },\n            {\n                \"lat\": 20.49790006,\n                \"long\": -103.24003049\n            },\n            {\n                \"lat\": 20.49727795,\n                \"long\": -103.24019606\n            },\n            {\n                \"lat\": 20.4972461,\n                \"long\": -103.24020454\n            },\n            {\n                \"lat\": 20.49692828,\n                \"long\": -103.2404645\n            },\n            {\n                \"lat\": 20.49678612,\n                \"long\": -103.24058077\n            },\n            {\n                \"lat\": 20.49675221,\n                \"long\": -103.24060852\n            },\n            {\n                \"lat\": 20.4966125,\n                \"long\": -103.24072279\n            },\n            {\n                \"lat\": 20.49660056,\n                \"long\": -103.24076515\n            },\n            {\n                \"lat\": 20.49653148,\n                \"long\": -103.24082147\n            },\n            {\n                \"lat\": 20.49632511,\n                \"long\": -103.24156229\n            },\n            {\n                \"lat\": 20.49594918,\n                \"long\": -103.24179953\n            },\n            {\n                \"lat\": 20.49577719,\n                \"long\": -103.24180519\n            },\n            {\n                \"lat\": 20.49540492,\n                \"long\": -103.24382807\n            },\n            {\n                \"lat\": 20.49288883,\n                \"long\": -103.24241427\n            },\n            {\n                \"lat\": 20.48901259,\n                \"long\": -103.23817089\n            },\n            {\n                \"lat\": 20.48801413,\n                \"long\": -103.23650009\n            },\n            {\n                \"lat\": 20.48001804,\n                \"long\": -103.23285622\n            },\n            {\n                \"lat\": 20.47469379,\n                \"long\": -103.23091521\n            },\n            {\n                \"lat\": 20.47232726,\n                \"long\": -103.22972763\n            },\n            {\n                \"lat\": 20.46322858,\n                \"long\": -103.22312874\n            },\n            {\n                \"lat\": 20.45686908,\n                \"long\": -103.21871977\n            },\n            {\n                \"lat\": 20.45650529,\n                \"long\": -103.22126537\n            },\n            {\n                \"lat\": 20.45153549,\n                \"long\": -103.24913239\n            },\n            {\n                \"lat\": 20.4317899,\n                \"long\": -103.24086229\n            },\n            {\n                \"lat\": 20.43168401,\n                \"long\": -103.24099894\n            },\n            {\n                \"lat\": 20.43167484,\n                \"long\": -103.24103254\n            },\n            {\n                \"lat\": 20.43167012,\n                \"long\": -103.24104983\n            },\n            {\n                \"lat\": 20.43163922,\n                \"long\": -103.24116312\n            },\n            {\n                \"lat\": 20.43161927,\n                \"long\": -103.24123201\n            },\n            {\n                \"lat\": 20.4316007,\n                \"long\": -103.24129614\n            },\n            {\n                \"lat\": 20.4315341,\n                \"long\": -103.24152614\n            },\n            {\n                \"lat\": 20.43150371,\n                \"long\": -103.24163107\n            },\n            {\n                \"lat\": 20.43150219,\n                \"long\": -103.24163631\n            },\n            {\n                \"lat\": 20.43143437,\n                \"long\": -103.24188414\n            },\n            {\n                \"lat\": 20.4314264,\n                \"long\": -103.24191326\n            },\n            {\n                \"lat\": 20.43141921,\n                \"long\": -103.24193953\n            },\n            {\n                \"lat\": 20.43140743,\n                \"long\": -103.24198258\n            },\n            {\n                \"lat\": 20.43135533,\n                \"long\": -103.24217295\n            },\n            {\n                \"lat\": 20.43132822,\n                \"long\": -103.242272\n            },\n            {\n                \"lat\": 20.43132759,\n                \"long\": -103.24227429\n            },\n            {\n                \"lat\": 20.43132504,\n                \"long\": -103.24228362\n            },\n            {\n                \"lat\": 20.43124333,\n                \"long\": -103.24257372\n            },\n            {\n                \"lat\": 20.43122482,\n                \"long\": -103.24263944\n            },\n            {\n                \"lat\": 20.43119238,\n                \"long\": -103.24275461\n            },\n            {\n                \"lat\": 20.43118799,\n                \"long\": -103.24277017\n            },\n            {\n                \"lat\": 20.43117462,\n                \"long\": -103.24281766\n            },\n            {\n                \"lat\": 20.43117235,\n                \"long\": -103.24282586\n            },\n            {\n                \"lat\": 20.43114487,\n                \"long\": -103.24292509\n            },\n            {\n                \"lat\": 20.43111124,\n                \"long\": -103.24304657\n            },\n            {\n                \"lat\": 20.43108811,\n                \"long\": -103.24312536\n            },\n            {\n                \"lat\": 20.43106647,\n                \"long\": -103.24319914\n            },\n            {\n                \"lat\": 20.43105429,\n                \"long\": -103.24324063\n            },\n            {\n                \"lat\": 20.43103074,\n                \"long\": -103.24332184\n            },\n            {\n                \"lat\": 20.43101069,\n                \"long\": -103.24339099\n            },\n            {\n                \"lat\": 20.43100685,\n                \"long\": -103.24340423\n            },\n            {\n                \"lat\": 20.43098273,\n                \"long\": -103.2434874\n            },\n            {\n                \"lat\": 20.43096596,\n                \"long\": -103.24354526\n            },\n            {\n                \"lat\": 20.43092132,\n                \"long\": -103.24370628\n            },\n            {\n                \"lat\": 20.43089474,\n                \"long\": -103.24380217\n            },\n            {\n                \"lat\": 20.4308563,\n                \"long\": -103.24394082\n            },\n            {\n                \"lat\": 20.43084591,\n                \"long\": -103.24397829\n            },\n            {\n                \"lat\": 20.43083364,\n                \"long\": -103.24402072\n            },\n            {\n                \"lat\": 20.43082128,\n                \"long\": -103.24406342\n            },\n            {\n                \"lat\": 20.43078901,\n                \"long\": -103.24417497\n            },\n            {\n                \"lat\": 20.43075738,\n                \"long\": -103.24428432\n            },\n            {\n                \"lat\": 20.43073247,\n                \"long\": -103.2443704\n            },\n            {\n                \"lat\": 20.43069524,\n                \"long\": -103.24449911\n            },\n            {\n                \"lat\": 20.43066985,\n                \"long\": -103.24458829\n            },\n            {\n                \"lat\": 20.43064585,\n                \"long\": -103.24467259\n            },\n            {\n                \"lat\": 20.43058592,\n                \"long\": -103.24488304\n            },\n            {\n                \"lat\": 20.43056958,\n                \"long\": -103.24494045\n            },\n            {\n                \"lat\": 20.43055994,\n                \"long\": -103.24497101\n            },\n            {\n                \"lat\": 20.43053756,\n                \"long\": -103.24504194\n            },\n            {\n                \"lat\": 20.43049589,\n                \"long\": -103.24517405\n            },\n            {\n                \"lat\": 20.43049289,\n                \"long\": -103.24518454\n            },\n            {\n                \"lat\": 20.43048571,\n                \"long\": -103.24520956\n            },\n            {\n                \"lat\": 20.43046773,\n                \"long\": -103.2452723\n            },\n            {\n                \"lat\": 20.43046283,\n                \"long\": -103.24528939\n            },\n            {\n                \"lat\": 20.43040778,\n                \"long\": -103.24548148\n            },\n            {\n                \"lat\": 20.43038857,\n                \"long\": -103.24554851\n            },\n            {\n                \"lat\": 20.43038634,\n                \"long\": -103.24555623\n            },\n            {\n                \"lat\": 20.43037496,\n                \"long\": -103.24559566\n            },\n            {\n                \"lat\": 20.43036565,\n                \"long\": -103.24562792\n            },\n            {\n                \"lat\": 20.43032001,\n                \"long\": -103.24578611\n            },\n            {\n                \"lat\": 20.43029093,\n                \"long\": -103.24589231\n            },\n            {\n                \"lat\": 20.43026998,\n                \"long\": -103.24596882\n            },\n            {\n                \"lat\": 20.4302689,\n                \"long\": -103.24597278\n            },\n            {\n                \"lat\": 20.43021956,\n                \"long\": -103.246153\n            },\n            {\n                \"lat\": 20.43019402,\n                \"long\": -103.24624629\n            },\n            {\n                \"lat\": 20.43019054,\n                \"long\": -103.24625899\n            },\n            {\n                \"lat\": 20.43018819,\n                \"long\": -103.24626757\n            },\n            {\n                \"lat\": 20.43015271,\n                \"long\": -103.24639716\n            },\n            {\n                \"lat\": 20.43015119,\n                \"long\": -103.24640269\n            },\n            {\n                \"lat\": 20.43014859,\n                \"long\": -103.24641218\n            },\n            {\n                \"lat\": 20.43014791,\n                \"long\": -103.24644393\n            },\n            {\n                \"lat\": 20.43014654,\n                \"long\": -103.24650803\n            },\n            {\n                \"lat\": 20.43014559,\n                \"long\": -103.24655222\n            },\n            {\n                \"lat\": 20.43014454,\n                \"long\": -103.24660164\n            },\n            {\n                \"lat\": 20.43014342,\n                \"long\": -103.24665365\n            },\n            {\n                \"lat\": 20.43014171,\n                \"long\": -103.24673339\n            },\n            {\n                \"lat\": 20.43014148,\n                \"long\": -103.24674422\n            },\n            {\n                \"lat\": 20.43014005,\n                \"long\": -103.24681098\n            },\n            {\n                \"lat\": 20.43014004,\n                \"long\": -103.24681384\n            },\n            {\n                \"lat\": 20.4301398,\n                \"long\": -103.24694273\n            },\n            {\n                \"lat\": 20.43013961,\n                \"long\": -103.2470407\n            },\n            {\n                \"lat\": 20.43013953,\n                \"long\": -103.24708105\n            },\n            {\n                \"lat\": 20.43013938,\n                \"long\": -103.24715623\n            },\n            {\n                \"lat\": 20.43013924,\n                \"long\": -103.24723241\n            },\n            {\n                \"lat\": 20.43013909,\n                \"long\": -103.24730786\n            },\n            {\n                \"lat\": 20.43013888,\n                \"long\": -103.24741836\n            },\n            {\n                \"lat\": 20.43013812,\n                \"long\": -103.24744958\n            },\n            {\n                \"lat\": 20.43013752,\n                \"long\": -103.24747409\n            },\n            {\n                \"lat\": 20.4301371,\n                \"long\": -103.24749133\n            },\n            {\n                \"lat\": 20.43013672,\n                \"long\": -103.2475069\n            },\n            {\n                \"lat\": 20.43013666,\n                \"long\": -103.24750919\n            },\n            {\n                \"lat\": 20.43013447,\n                \"long\": -103.24759934\n            },\n            {\n                \"lat\": 20.43013068,\n                \"long\": -103.2477548\n            },\n            {\n                \"lat\": 20.43012846,\n                \"long\": -103.24784575\n            },\n            {\n                \"lat\": 20.43012797,\n                \"long\": -103.24786584\n            },\n            {\n                \"lat\": 20.43012611,\n                \"long\": -103.24792825\n            },\n            {\n                \"lat\": 20.43012541,\n                \"long\": -103.24795167\n            },\n            {\n                \"lat\": 20.43012185,\n                \"long\": -103.24807104\n            },\n            {\n                \"lat\": 20.4301195,\n                \"long\": -103.24814992\n            },\n            {\n                \"lat\": 20.43011752,\n                \"long\": -103.24821645\n            },\n            {\n                \"lat\": 20.43011641,\n                \"long\": -103.24825366\n            },\n            {\n                \"lat\": 20.43012271,\n                \"long\": -103.24825566\n            },\n            {\n                \"lat\": 20.43007607,\n                \"long\": -103.25231362\n            },\n            {\n                \"lat\": 20.4289629,\n                \"long\": -103.25513257\n            },\n            {\n                \"lat\": 20.4327576,\n                \"long\": -103.25602866\n            },\n            {\n                \"lat\": 20.43626437,\n                \"long\": -103.25615686\n            },\n            {\n                \"lat\": 20.44189299,\n                \"long\": -103.26109054\n            },\n            {\n                \"lat\": 20.44192979,\n                \"long\": -103.26112408\n            },\n            {\n                \"lat\": 20.44191097,\n                \"long\": -103.26112402\n            },\n            {\n                \"lat\": 20.44189398,\n                \"long\": -103.26112396\n            },\n            {\n                \"lat\": 20.44185419,\n                \"long\": -103.26112383\n            },\n            {\n                \"lat\": 20.44183348,\n                \"long\": -103.26112376\n            },\n            {\n                \"lat\": 20.44180828,\n                \"long\": -103.26112367\n            },\n            {\n                \"lat\": 20.44179068,\n                \"long\": -103.26112361\n            },\n            {\n                \"lat\": 20.44177087,\n                \"long\": -103.2611234\n            },\n            {\n                \"lat\": 20.44167734,\n                \"long\": -103.2611224\n            },\n            {\n                \"lat\": 20.44167587,\n                \"long\": -103.26112238\n            },\n            {\n                \"lat\": 20.44162324,\n                \"long\": -103.26112182\n            },\n            {\n                \"lat\": 20.44159542,\n                \"long\": -103.26112152\n            },\n            {\n                \"lat\": 20.44154612,\n                \"long\": -103.26112099\n            },\n            {\n                \"lat\": 20.44152177,\n                \"long\": -103.26112073\n            },\n            {\n                \"lat\": 20.44136956,\n                \"long\": -103.2611191\n            },\n            {\n                \"lat\": 20.44129351,\n                \"long\": -103.26111829\n            },\n            {\n                \"lat\": 20.44126302,\n                \"long\": -103.26111932\n            },\n            {\n                \"lat\": 20.44122167,\n                \"long\": -103.26112072\n            },\n            {\n                \"lat\": 20.44121852,\n                \"long\": -103.26112083\n            },\n            {\n                \"lat\": 20.44111555,\n                \"long\": -103.26112432\n            },\n            {\n                \"lat\": 20.44108941,\n                \"long\": -103.2611252\n            },\n            {\n                \"lat\": 20.44106943,\n                \"long\": -103.26112588\n            },\n            {\n                \"lat\": 20.44101393,\n                \"long\": -103.26112776\n            },\n            {\n                \"lat\": 20.44099038,\n                \"long\": -103.26112856\n            },\n            {\n                \"lat\": 20.4409194,\n                \"long\": -103.26113097\n            },\n            {\n                \"lat\": 20.44089137,\n                \"long\": -103.26113191\n            },\n            {\n                \"lat\": 20.4408661,\n                \"long\": -103.26113277\n            },\n            {\n                \"lat\": 20.44080821,\n                \"long\": -103.26113473\n            },\n            {\n                \"lat\": 20.44076958,\n                \"long\": -103.26113604\n            },\n            {\n                \"lat\": 20.44062344,\n                \"long\": -103.26114099\n            },\n            {\n                \"lat\": 20.44061079,\n                \"long\": -103.26114142\n            },\n            {\n                \"lat\": 20.44055389,\n                \"long\": -103.26114335\n            },\n            {\n                \"lat\": 20.44046863,\n                \"long\": -103.26114624\n            },\n            {\n                \"lat\": 20.44030895,\n                \"long\": -103.26115165\n            },\n            {\n                \"lat\": 20.44029092,\n                \"long\": -103.26115226\n            },\n            {\n                \"lat\": 20.44027205,\n                \"long\": -103.26115269\n            },\n            {\n                \"lat\": 20.44022059,\n                \"long\": -103.26115383\n            },\n            {\n                \"lat\": 20.44017102,\n                \"long\": -103.26115494\n            },\n            {\n                \"lat\": 20.4400382,\n                \"long\": -103.26115791\n            },\n            {\n                \"lat\": 20.43995918,\n                \"long\": -103.26115968\n            },\n            {\n                \"lat\": 20.43994233,\n                \"long\": -103.26116005\n            },\n            {\n                \"lat\": 20.43993931,\n                \"long\": -103.26116012\n            },\n            {\n                \"lat\": 20.43987293,\n                \"long\": -103.26116161\n            },\n            {\n                \"lat\": 20.43986477,\n                \"long\": -103.26116179\n            },\n            {\n                \"lat\": 20.43973521,\n                \"long\": -103.26116468\n            },\n            {\n                \"lat\": 20.43969896,\n                \"long\": -103.26116549\n            },\n            {\n                \"lat\": 20.43959879,\n                \"long\": -103.26116773\n            },\n            {\n                \"lat\": 20.43957438,\n                \"long\": -103.26116828\n            },\n            {\n                \"lat\": 20.43951032,\n                \"long\": -103.26116971\n            },\n            {\n                \"lat\": 20.4394401,\n                \"long\": -103.26117128\n            },\n            {\n                \"lat\": 20.43923136,\n                \"long\": -103.26117594\n            },\n            {\n                \"lat\": 20.43919192,\n                \"long\": -103.26117683\n            },\n            {\n                \"lat\": 20.43916696,\n                \"long\": -103.26117738\n            },\n            {\n                \"lat\": 20.43902105,\n                \"long\": -103.26125048\n            },\n            {\n                \"lat\": 20.43900874,\n                \"long\": -103.26125665\n            },\n            {\n                \"lat\": 20.43900173,\n                \"long\": -103.26125681\n            },\n            {\n                \"lat\": 20.43883605,\n                \"long\": -103.26126063\n            },\n            {\n                \"lat\": 20.43875699,\n                \"long\": -103.26126245\n            },\n            {\n                \"lat\": 20.43869802,\n                \"long\": -103.26126381\n            },\n            {\n                \"lat\": 20.4386676,\n                \"long\": -103.26126451\n            },\n            {\n                \"lat\": 20.43861821,\n                \"long\": -103.26126565\n            },\n            {\n                \"lat\": 20.43847375,\n                \"long\": -103.26126897\n            },\n            {\n                \"lat\": 20.43840606,\n                \"long\": -103.26127053\n            },\n            {\n                \"lat\": 20.43832534,\n                \"long\": -103.26127239\n            },\n            {\n                \"lat\": 20.43828628,\n                \"long\": -103.26127329\n            },\n            {\n                \"lat\": 20.43828171,\n                \"long\": -103.26127436\n            },\n            {\n                \"lat\": 20.43827909,\n                \"long\": -103.26127498\n            },\n            {\n                \"lat\": 20.43817711,\n                \"long\": -103.26129889\n            },\n            {\n                \"lat\": 20.4379932,\n                \"long\": -103.26134202\n            },\n            {\n                \"lat\": 20.43797054,\n                \"long\": -103.26134733\n            },\n            {\n                \"lat\": 20.43796511,\n                \"long\": -103.2613486\n            },\n            {\n                \"lat\": 20.4376248,\n                \"long\": -103.2614284\n            },\n            {\n                \"lat\": 20.43756519,\n                \"long\": -103.26144238\n            },\n            {\n                \"lat\": 20.43749062,\n                \"long\": -103.26145986\n            },\n            {\n                \"lat\": 20.43722173,\n                \"long\": -103.26152291\n            },\n            {\n                \"lat\": 20.43717883,\n                \"long\": -103.26153297\n            },\n            {\n                \"lat\": 20.43717236,\n                \"long\": -103.26153449\n            },\n            {\n                \"lat\": 20.43706318,\n                \"long\": -103.26156009\n            },\n            {\n                \"lat\": 20.43694847,\n                \"long\": -103.26158676\n            },\n            {\n                \"lat\": 20.43691452,\n                \"long\": -103.26159465\n            },\n            {\n                \"lat\": 20.43686643,\n                \"long\": -103.26160583\n            },\n            {\n                \"lat\": 20.43683376,\n                \"long\": -103.26161343\n            },\n            {\n                \"lat\": 20.43677666,\n                \"long\": -103.26163993\n            },\n            {\n                \"lat\": 20.43643517,\n                \"long\": -103.26171933\n            },\n            {\n                \"lat\": 20.43640171,\n                \"long\": -103.26172711\n            },\n            {\n                \"lat\": 20.43639869,\n                \"long\": -103.26172781\n            },\n            {\n                \"lat\": 20.43609595,\n                \"long\": -103.2617982\n            },\n            {\n                \"lat\": 20.43608271,\n                \"long\": -103.26180127\n            },\n            {\n                \"lat\": 20.43601782,\n                \"long\": -103.26181636\n            },\n            {\n                \"lat\": 20.43582174,\n                \"long\": -103.26186194\n            },\n            {\n                \"lat\": 20.43567806,\n                \"long\": -103.26189535\n            },\n            {\n                \"lat\": 20.43561603,\n                \"long\": -103.26190977\n            },\n            {\n                \"lat\": 20.43557662,\n                \"long\": -103.26191893\n            },\n            {\n                \"lat\": 20.43531932,\n                \"long\": -103.26197875\n            },\n            {\n                \"lat\": 20.43524942,\n                \"long\": -103.261995\n            },\n            {\n                \"lat\": 20.43508224,\n                \"long\": -103.26203387\n            },\n            {\n                \"lat\": 20.43504036,\n                \"long\": -103.26204361\n            },\n            {\n                \"lat\": 20.43490986,\n                \"long\": -103.26188941\n            },\n            {\n                \"lat\": 20.43353927,\n                \"long\": -103.26046866\n            },\n            {\n                \"lat\": 20.4323826,\n                \"long\": -103.25979228\n            },\n            {\n                \"lat\": 20.43199391,\n                \"long\": -103.25862687\n            },\n            {\n                \"lat\": 20.43111939,\n                \"long\": -103.25792946\n            },\n            {\n                \"lat\": 20.42989322,\n                \"long\": -103.25798053\n            },\n            {\n                \"lat\": 20.42885994,\n                \"long\": -103.26030631\n            },\n            {\n                \"lat\": 20.4257909,\n                \"long\": -103.26215806\n            },\n            {\n                \"lat\": 20.42004331,\n                \"long\": -103.26220277\n            },\n            {\n                \"lat\": 20.41765121,\n                \"long\": -103.26559734\n            },\n            {\n                \"lat\": 20.38207419,\n                \"long\": -103.25898252\n            },\n            {\n                \"lat\": 20.37474625,\n                \"long\": -103.27239224\n            },\n            {\n                \"lat\": 20.37239556,\n                \"long\": -103.27391271\n            },\n            {\n                \"lat\": 20.37271108,\n                \"long\": -103.27488357\n            },\n            {\n                \"lat\": 20.36972119,\n                \"long\": -103.28189966\n            },\n            {\n                \"lat\": 20.3702295,\n                \"long\": -103.28692821\n            },\n            {\n                \"lat\": 20.36890874,\n                \"long\": -103.2926265\n            },\n            {\n                \"lat\": 20.36912518,\n                \"long\": -103.2987697\n            },\n            {\n                \"lat\": 20.37025923,\n                \"long\": -103.29883897\n            },\n            {\n                \"lat\": 20.37163561,\n                \"long\": -103.31350288\n            },\n            {\n                \"lat\": 20.37113637,\n                \"long\": -103.32574043\n            },\n            {\n                \"lat\": 20.37196208,\n                \"long\": -103.33608441\n            },\n            {\n                \"lat\": 20.36904544,\n                \"long\": -103.34825469\n            },\n            {\n                \"lat\": 20.36893692,\n                \"long\": -103.3485946\n            },\n            {\n                \"lat\": 20.3641758,\n                \"long\": -103.35576625\n            },\n            {\n                \"lat\": 20.36175362,\n                \"long\": -103.35882276\n            },\n            {\n                \"lat\": 20.36269549,\n                \"long\": -103.36873822\n            },\n            {\n                \"lat\": 20.36536509,\n                \"long\": -103.37894416\n            },\n            {\n                \"lat\": 20.36431081,\n                \"long\": -103.39109846\n            },\n            {\n                \"lat\": 20.36455394,\n                \"long\": -103.41769489\n            },\n            {\n                \"lat\": 20.3669969,\n                \"long\": -103.42981306\n            },\n            {\n                \"lat\": 20.37615876,\n                \"long\": -103.45462284\n            },\n            {\n                \"lat\": 20.39127114,\n                \"long\": -103.47473431\n            },\n            {\n                \"lat\": 20.40017944,\n                \"long\": -103.48789342\n            },\n            {\n                \"lat\": 20.41362912,\n                \"long\": -103.5241252\n            },\n            {\n                \"lat\": 20.41691818,\n                \"long\": -103.53516352\n            },\n            {\n                \"lat\": 20.41699641,\n                \"long\": -103.5485818\n            },\n            {\n                \"lat\": 20.42325598,\n                \"long\": -103.5525366\n            },\n            {\n                \"lat\": 20.42376801,\n                \"long\": -103.55783011\n            },\n            {\n                \"lat\": 20.45749131,\n                \"long\": -103.57354621\n            },\n            {\n                \"lat\": 20.45846803,\n                \"long\": -103.5840783\n            },\n            {\n                \"lat\": 20.4741614,\n                \"long\": -103.5925111\n            },\n            {\n                \"lat\": 20.48257713,\n                \"long\": -103.59260479\n            },\n            {\n                \"lat\": 20.4916736,\n                \"long\": -103.5957719\n            },\n            {\n                \"lat\": 20.49934532,\n                \"long\": -103.5925366\n            },\n            {\n                \"lat\": 20.50861007,\n                \"long\": -103.596558\n            },\n            {\n                \"lat\": 20.50387614,\n                \"long\": -103.58698084\n            },\n            {\n                \"lat\": 20.51919223,\n                \"long\": -103.59228721\n            },\n            {\n                \"lat\": 20.52308449,\n                \"long\": -103.58016986\n            },\n            {\n                \"lat\": 20.52572531,\n                \"long\": -103.56625289\n            },\n            {\n                \"lat\": 20.53135294,\n                \"long\": -103.56152655\n            },\n            {\n                \"lat\": 20.53680781,\n                \"long\": -103.56337025\n            },\n            {\n                \"lat\": 20.54020162,\n                \"long\": -103.56086956\n            },\n            {\n                \"lat\": 20.54028888,\n                \"long\": -103.55393071\n            },\n            {\n                \"lat\": 20.55170412,\n                \"long\": -103.5541711\n            },\n            {\n                \"lat\": 20.5516913,\n                \"long\": -103.55824501\n            },\n            {\n                \"lat\": 20.54780923,\n                \"long\": -103.55828142\n            },\n            {\n                \"lat\": 20.54301342,\n                \"long\": -103.56345254\n            },\n            {\n                \"lat\": 20.56837834,\n                \"long\": -103.55948876\n            },\n            {\n                \"lat\": 20.56841471,\n                \"long\": -103.55389547\n            },\n            {\n                \"lat\": 20.57421728,\n                \"long\": -103.5541286\n            },\n            {\n                \"lat\": 20.57670797,\n                \"long\": -103.56629853\n            },\n            {\n                \"lat\": 20.58166234,\n                \"long\": -103.56610331\n            },\n            {\n                \"lat\": 20.58192642,\n                \"long\": -103.56308857\n            },\n            {\n                \"lat\": 20.58680476,\n                \"long\": -103.5588829\n            },\n            {\n                \"lat\": 20.60409367,\n                \"long\": -103.5526956\n            },\n            {\n                \"lat\": 20.59009792,\n                \"long\": -103.49467908\n            },\n            {\n                \"lat\": 20.59168362,\n                \"long\": -103.49477624\n            },\n            {\n                \"lat\": 20.59362142,\n                \"long\": -103.49394116\n            },\n            {\n                \"lat\": 20.59447456,\n                \"long\": -103.49264721\n            },\n            {\n                \"lat\": 20.59467544,\n                \"long\": -103.49088538\n            },\n            {\n                \"lat\": 20.59437825,\n                \"long\": -103.48985817\n            },\n            {\n                \"lat\": 20.59370529,\n                \"long\": -103.48853404\n            },\n            {\n                \"lat\": 20.59515426,\n                \"long\": -103.4844743\n            },\n            {\n                \"lat\": 20.59528001,\n                \"long\": -103.48310606\n            },\n            {\n                \"lat\": 20.59528979,\n                \"long\": -103.48310705\n            },\n            {\n                \"lat\": 20.59534487,\n                \"long\": -103.48311259\n            },\n            {\n                \"lat\": 20.59536789,\n                \"long\": -103.48311491\n            },\n            {\n                \"lat\": 20.59547556,\n                \"long\": -103.48306853\n            },\n            {\n                \"lat\": 20.59564576,\n                \"long\": -103.48279542\n            },\n            {\n                \"lat\": 20.59569091,\n                \"long\": -103.4826693\n            },\n            {\n                \"lat\": 20.59573588,\n                \"long\": -103.4825437\n            },\n            {\n                \"lat\": 20.59578085,\n                \"long\": -103.48241809\n            },\n            {\n                \"lat\": 20.59582582,\n                \"long\": -103.48229249\n            },\n            {\n                \"lat\": 20.59587079,\n                \"long\": -103.48216688\n            },\n            {\n                \"lat\": 20.59591344,\n                \"long\": -103.48204774\n            },\n            {\n                \"lat\": 20.59591334,\n                \"long\": -103.48202008\n            },\n            {\n                \"lat\": 20.59591277,\n                \"long\": -103.48186975\n            },\n            {\n                \"lat\": 20.59591223,\n                \"long\": -103.48172583\n            },\n            {\n                \"lat\": 20.59591161,\n                \"long\": -103.48156273\n            },\n            {\n                \"lat\": 20.59591098,\n                \"long\": -103.48139637\n            },\n            {\n                \"lat\": 20.59591359,\n                \"long\": -103.48121656\n            },\n            {\n                \"lat\": 20.595916,\n                \"long\": -103.48105103\n            },\n            {\n                \"lat\": 20.59591809,\n                \"long\": -103.48090714\n            },\n            {\n                \"lat\": 20.59591836,\n                \"long\": -103.48088846\n            },\n            {\n                \"lat\": 20.5959366,\n                \"long\": -103.48079633\n            },\n            {\n                \"lat\": 20.59596601,\n                \"long\": -103.48064778\n            },\n            {\n                \"lat\": 20.59598334,\n                \"long\": -103.48056024\n            },\n            {\n                \"lat\": 20.5960007,\n                \"long\": -103.48047258\n            },\n            {\n                \"lat\": 20.59601596,\n                \"long\": -103.48039546\n            },\n            {\n                \"lat\": 20.59602699,\n                \"long\": -103.48033974\n            },\n            {\n                \"lat\": 20.59604033,\n                \"long\": -103.48027235\n            },\n            {\n                \"lat\": 20.59605244,\n                \"long\": -103.48021118\n            },\n            {\n                \"lat\": 20.59607065,\n                \"long\": -103.48011924\n            },\n            {\n                \"lat\": 20.59607937,\n                \"long\": -103.48007515\n            },\n            {\n                \"lat\": 20.59610723,\n                \"long\": -103.47993445\n            },\n            {\n                \"lat\": 20.59612274,\n                \"long\": -103.47988841\n            },\n            {\n                \"lat\": 20.59613603,\n                \"long\": -103.47984879\n            },\n            {\n                \"lat\": 20.59616932,\n                \"long\": -103.47974935\n            },\n            {\n                \"lat\": 20.59617089,\n                \"long\": -103.47974466\n            },\n            {\n                \"lat\": 20.59617347,\n                \"long\": -103.47973695\n            },\n            {\n                \"lat\": 20.59618992,\n                \"long\": -103.47968806\n            },\n            {\n                \"lat\": 20.59624244,\n                \"long\": -103.4795319\n            },\n            {\n                \"lat\": 20.59626257,\n                \"long\": -103.4794728\n            },\n            {\n                \"lat\": 20.59630352,\n                \"long\": -103.47933395\n            },\n            {\n                \"lat\": 20.59630491,\n                \"long\": -103.47932989\n            },\n            {\n                \"lat\": 20.59631729,\n                \"long\": -103.47929384\n            },\n            {\n                \"lat\": 20.5963557,\n                \"long\": -103.47918188\n            },\n            {\n                \"lat\": 20.59636993,\n                \"long\": -103.47912779\n            },\n            {\n                \"lat\": 20.59639308,\n                \"long\": -103.47896323\n            },\n            {\n                \"lat\": 20.59641382,\n                \"long\": -103.4787975\n            },\n            {\n                \"lat\": 20.59642589,\n                \"long\": -103.47870105\n            },\n            {\n                \"lat\": 20.59645449,\n                \"long\": -103.47846864\n            },\n            {\n                \"lat\": 20.59651346,\n                \"long\": -103.4779893\n            },\n            {\n                \"lat\": 20.59653873,\n                \"long\": -103.47778385\n            },\n            {\n                \"lat\": 20.59654492,\n                \"long\": -103.47773355\n            },\n            {\n                \"lat\": 20.59654522,\n                \"long\": -103.47773116\n            },\n            {\n                \"lat\": 20.59656833,\n                \"long\": -103.4775433\n            },\n            {\n                \"lat\": 20.59657062,\n                \"long\": -103.47751297\n            },\n            {\n                \"lat\": 20.59657508,\n                \"long\": -103.4774541\n            },\n            {\n                \"lat\": 20.59658687,\n                \"long\": -103.4772983\n            },\n            {\n                \"lat\": 20.59663617,\n                \"long\": -103.47706425\n            },\n            {\n                \"lat\": 20.59663954,\n                \"long\": -103.47705036\n            },\n            {\n                \"lat\": 20.5967429,\n                \"long\": -103.47671924\n            },\n            {\n                \"lat\": 20.59679784,\n                \"long\": -103.47656792\n            },\n            {\n                \"lat\": 20.59680286,\n                \"long\": -103.47655408\n            },\n            {\n                \"lat\": 20.59681075,\n                \"long\": -103.47653077\n            },\n            {\n                \"lat\": 20.59683026,\n                \"long\": -103.47647374\n            },\n            {\n                \"lat\": 20.59684358,\n                \"long\": -103.47643479\n            },\n            {\n                \"lat\": 20.59684977,\n                \"long\": -103.47641671\n            },\n            {\n                \"lat\": 20.59687196,\n                \"long\": -103.47635183\n            },\n            {\n                \"lat\": 20.59688438,\n                \"long\": -103.47631554\n            },\n            {\n                \"lat\": 20.59689744,\n                \"long\": -103.47627736\n            },\n            {\n                \"lat\": 20.59692708,\n                \"long\": -103.47620536\n            },\n            {\n                \"lat\": 20.59692998,\n                \"long\": -103.47619832\n            },\n            {\n                \"lat\": 20.59697738,\n                \"long\": -103.47608315\n            },\n            {\n                \"lat\": 20.59699002,\n                \"long\": -103.47605246\n            },\n            {\n                \"lat\": 20.59702342,\n                \"long\": -103.47597131\n            },\n            {\n                \"lat\": 20.59702569,\n                \"long\": -103.4759658\n            },\n            {\n                \"lat\": 20.59708416,\n                \"long\": -103.47582375\n            },\n            {\n                \"lat\": 20.59708702,\n                \"long\": -103.47581554\n            },\n            {\n                \"lat\": 20.59716483,\n                \"long\": -103.47558345\n            },\n            {\n                \"lat\": 20.59717718,\n                \"long\": -103.47547538\n            },\n            {\n                \"lat\": 20.59718658,\n                \"long\": -103.47521811\n            },\n            {\n                \"lat\": 20.59718948,\n                \"long\": -103.47513877\n            },\n            {\n                \"lat\": 20.59719204,\n                \"long\": -103.47506857\n            },\n            {\n                \"lat\": 20.5971902,\n                \"long\": -103.47501721\n            },\n            {\n                \"lat\": 20.59719546,\n                \"long\": -103.47498605\n            },\n            {\n                \"lat\": 20.59720935,\n                \"long\": -103.47490385\n            },\n            {\n                \"lat\": 20.59721046,\n                \"long\": -103.47489723\n            },\n            {\n                \"lat\": 20.59722834,\n                \"long\": -103.47479141\n            },\n            {\n                \"lat\": 20.59723314,\n                \"long\": -103.47476296\n            },\n            {\n                \"lat\": 20.59723521,\n                \"long\": -103.47472898\n            },\n            {\n                \"lat\": 20.59723728,\n                \"long\": -103.47469499\n            },\n            {\n                \"lat\": 20.59723835,\n                \"long\": -103.47469078\n            },\n            {\n                \"lat\": 20.59723964,\n                \"long\": -103.47468569\n            },\n            {\n                \"lat\": 20.59725143,\n                \"long\": -103.47463939\n            },\n            {\n                \"lat\": 20.59726575,\n                \"long\": -103.47458314\n            },\n            {\n                \"lat\": 20.59729468,\n                \"long\": -103.47447038\n            },\n            {\n                \"lat\": 20.59729497,\n                \"long\": -103.47446924\n            },\n            {\n                \"lat\": 20.59732227,\n                \"long\": -103.47436284\n            },\n            {\n                \"lat\": 20.59732671,\n                \"long\": -103.47434552\n            },\n            {\n                \"lat\": 20.59734985,\n                \"long\": -103.4742553\n            },\n            {\n                \"lat\": 20.59735017,\n                \"long\": -103.47425405\n            },\n            {\n                \"lat\": 20.5973766,\n                \"long\": -103.47415102\n            },\n            {\n                \"lat\": 20.59737824,\n                \"long\": -103.47414468\n            },\n            {\n                \"lat\": 20.59741067,\n                \"long\": -103.47401903\n            },\n            {\n                \"lat\": 20.59741138,\n                \"long\": -103.47401627\n            },\n            {\n                \"lat\": 20.59744253,\n                \"long\": -103.47389483\n            },\n            {\n                \"lat\": 20.59745561,\n                \"long\": -103.47376426\n            },\n            {\n                \"lat\": 20.59745691,\n                \"long\": -103.47375129\n            },\n            {\n                \"lat\": 20.59746008,\n                \"long\": -103.47371974\n            },\n            {\n                \"lat\": 20.59748916,\n                \"long\": -103.47343025\n            },\n            {\n                \"lat\": 20.59750011,\n                \"long\": -103.47332124\n            },\n            {\n                \"lat\": 20.59750051,\n                \"long\": -103.4733173\n            },\n            {\n                \"lat\": 20.59752149,\n                \"long\": -103.47310848\n            },\n            {\n                \"lat\": 20.59752535,\n                \"long\": -103.47307006\n            },\n            {\n                \"lat\": 20.59753355,\n                \"long\": -103.47298844\n            },\n            {\n                \"lat\": 20.59753663,\n                \"long\": -103.47295777\n            },\n            {\n                \"lat\": 20.5975416,\n                \"long\": -103.47290831\n            },\n            {\n                \"lat\": 20.59754307,\n                \"long\": -103.47289386\n            },\n            {\n                \"lat\": 20.59755366,\n                \"long\": -103.47278975\n            },\n            {\n                \"lat\": 20.59756387,\n                \"long\": -103.47268945\n            },\n            {\n                \"lat\": 20.59757083,\n                \"long\": -103.47262103\n            },\n            {\n                \"lat\": 20.59758517,\n                \"long\": -103.47247406\n            },\n            {\n                \"lat\": 20.59766999,\n                \"long\": -103.47207722\n            },\n            {\n                \"lat\": 20.59772868,\n                \"long\": -103.47180266\n            },\n            {\n                \"lat\": 20.59774123,\n                \"long\": -103.4717439\n            },\n            {\n                \"lat\": 20.59776426,\n                \"long\": -103.47163617\n            },\n            {\n                \"lat\": 20.5978274,\n                \"long\": -103.47134074\n            },\n            {\n                \"lat\": 20.59788818,\n                \"long\": -103.47105641\n            },\n            {\n                \"lat\": 20.59789699,\n                \"long\": -103.47085716\n            },\n            {\n                \"lat\": 20.59790149,\n                \"long\": -103.47075528\n            },\n            {\n                \"lat\": 20.59789548,\n                \"long\": -103.47068185\n            },\n            {\n                \"lat\": 20.59787898,\n                \"long\": -103.47048042\n            },\n            {\n                \"lat\": 20.59786451,\n                \"long\": -103.47030375\n            },\n            {\n                \"lat\": 20.59783256,\n                \"long\": -103.46998814\n            },\n            {\n                \"lat\": 20.59779113,\n                \"long\": -103.46952179\n            },\n            {\n                \"lat\": 20.59778692,\n                \"long\": -103.46947437\n            },\n            {\n                \"lat\": 20.5977843,\n                \"long\": -103.46944484\n            },\n            {\n                \"lat\": 20.59769997,\n                \"long\": -103.46849558\n            },\n            {\n                \"lat\": 20.59767763,\n                \"long\": -103.46824421\n            },\n            {\n                \"lat\": 20.59758025,\n                \"long\": -103.46714808\n            },\n            {\n                \"lat\": 20.59757165,\n                \"long\": -103.46705138\n            },\n            {\n                \"lat\": 20.59747877,\n                \"long\": -103.46626201\n            },\n            {\n                \"lat\": 20.59742251,\n                \"long\": -103.46578398\n            },\n            {\n                \"lat\": 20.5974112,\n                \"long\": -103.46568782\n            },\n            {\n                \"lat\": 20.59727083,\n                \"long\": -103.46449504\n            },\n            {\n                \"lat\": 20.59725707,\n                \"long\": -103.46437814\n            },\n            {\n                \"lat\": 20.59720434,\n                \"long\": -103.46386666\n            },\n            {\n                \"lat\": 20.59717444,\n                \"long\": -103.46357666\n            },\n            {\n                \"lat\": 20.59715278,\n                \"long\": -103.46336657\n            },\n            {\n                \"lat\": 20.59715196,\n                \"long\": -103.46335867\n            },\n            {\n                \"lat\": 20.59710996,\n                \"long\": -103.46296211\n            },\n            {\n                \"lat\": 20.59707843,\n                \"long\": -103.46266431\n            },\n            {\n                \"lat\": 20.59706801,\n                \"long\": -103.46256594\n            },\n            {\n                \"lat\": 20.59703922,\n                \"long\": -103.46229405\n            },\n            {\n                \"lat\": 20.59700012,\n                \"long\": -103.46192488\n            },\n            {\n                \"lat\": 20.59699902,\n                \"long\": -103.4619145\n            },\n            {\n                \"lat\": 20.59699685,\n                \"long\": -103.46189403\n            },\n            {\n                \"lat\": 20.59696201,\n                \"long\": -103.46156504\n            },\n            {\n                \"lat\": 20.59696066,\n                \"long\": -103.46155235\n            },\n            {\n                \"lat\": 20.59695896,\n                \"long\": -103.46154143\n            },\n            {\n                \"lat\": 20.59688431,\n                \"long\": -103.46106372\n            },\n            {\n                \"lat\": 20.59688214,\n                \"long\": -103.46104981\n            },\n            {\n                \"lat\": 20.59685221,\n                \"long\": -103.46067276\n            },\n            {\n                \"lat\": 20.59685595,\n                \"long\": -103.46055236\n            },\n            {\n                \"lat\": 20.5968206,\n                \"long\": -103.46021478\n            },\n            {\n                \"lat\": 20.59682039,\n                \"long\": -103.46021281\n            },\n            {\n                \"lat\": 20.59681919,\n                \"long\": -103.46020137\n            },\n            {\n                \"lat\": 20.59681305,\n                \"long\": -103.46014272\n            },\n            {\n                \"lat\": 20.59674665,\n                \"long\": -103.4596342\n            },\n            {\n                \"lat\": 20.59673064,\n                \"long\": -103.45951155\n            },\n            {\n                \"lat\": 20.59672851,\n                \"long\": -103.45949528\n            },\n            {\n                \"lat\": 20.59666802,\n                \"long\": -103.45903195\n            },\n            {\n                \"lat\": 20.59661621,\n                \"long\": -103.45840413\n            },\n            {\n                \"lat\": 20.59661604,\n                \"long\": -103.45840206\n            },\n            {\n                \"lat\": 20.59661029,\n                \"long\": -103.45835236\n            },\n            {\n                \"lat\": 20.59660432,\n                \"long\": -103.45830073\n            },\n            {\n                \"lat\": 20.59659058,\n                \"long\": -103.45818189\n            },\n            {\n                \"lat\": 20.59658347,\n                \"long\": -103.45812048\n            },\n            {\n                \"lat\": 20.59654326,\n                \"long\": -103.45777273\n            },\n            {\n                \"lat\": 20.59653544,\n                \"long\": -103.45770511\n            },\n            {\n                \"lat\": 20.59649941,\n                \"long\": -103.45739352\n            },\n            {\n                \"lat\": 20.59649617,\n                \"long\": -103.45736553\n            },\n            {\n                \"lat\": 20.59647474,\n                \"long\": -103.45718019\n            },\n            {\n                \"lat\": 20.59646253,\n                \"long\": -103.45707464\n            },\n            {\n                \"lat\": 20.59639728,\n                \"long\": -103.45651046\n            },\n            {\n                \"lat\": 20.59639629,\n                \"long\": -103.45650187\n            },\n            {\n                \"lat\": 20.59634955,\n                \"long\": -103.45605171\n            },\n            {\n                \"lat\": 20.59634781,\n                \"long\": -103.45603496\n            },\n            {\n                \"lat\": 20.59634092,\n                \"long\": -103.45596862\n            },\n            {\n                \"lat\": 20.59632362,\n                \"long\": -103.45580204\n            },\n            {\n                \"lat\": 20.59630969,\n                \"long\": -103.45566783\n            },\n            {\n                \"lat\": 20.59630588,\n                \"long\": -103.45563117\n            },\n            {\n                \"lat\": 20.59626825,\n                \"long\": -103.45526883\n            },\n            {\n                \"lat\": 20.59626767,\n                \"long\": -103.45526316\n            },\n            {\n                \"lat\": 20.59626451,\n                \"long\": -103.45523244\n            },\n            {\n                \"lat\": 20.59625333,\n                \"long\": -103.45512368\n            },\n            {\n                \"lat\": 20.59624766,\n                \"long\": -103.45506858\n            },\n            {\n                \"lat\": 20.59624347,\n                \"long\": -103.45502783\n            },\n            {\n                \"lat\": 20.59623808,\n                \"long\": -103.45497539\n            },\n            {\n                \"lat\": 20.59621317,\n                \"long\": -103.45473313\n            },\n            {\n                \"lat\": 20.59617916,\n                \"long\": -103.45440245\n            },\n            {\n                \"lat\": 20.59617255,\n                \"long\": -103.45433814\n            },\n            {\n                \"lat\": 20.59616106,\n                \"long\": -103.45422638\n            },\n            {\n                \"lat\": 20.59615696,\n                \"long\": -103.45418655\n            },\n            {\n                \"lat\": 20.59613179,\n                \"long\": -103.45394181\n            },\n            {\n                \"lat\": 20.59612174,\n                \"long\": -103.45384405\n            },\n            {\n                \"lat\": 20.59612153,\n                \"long\": -103.45384206\n            },\n            {\n                \"lat\": 20.59611526,\n                \"long\": -103.45378105\n            },\n            {\n                \"lat\": 20.59610201,\n                \"long\": -103.45358372\n            },\n            {\n                \"lat\": 20.59608824,\n                \"long\": -103.45345232\n            },\n            {\n                \"lat\": 20.59607585,\n                \"long\": -103.45333407\n            },\n            {\n                \"lat\": 20.59606148,\n                \"long\": -103.45319682\n            },\n            {\n                \"lat\": 20.59605836,\n                \"long\": -103.45316703\n            },\n            {\n                \"lat\": 20.5960399,\n                \"long\": -103.45299083\n            },\n            {\n                \"lat\": 20.59606935,\n                \"long\": -103.45284\n            },\n            {\n                \"lat\": 20.59606979,\n                \"long\": -103.45283775\n            },\n            {\n                \"lat\": 20.59610704,\n                \"long\": -103.45264699\n            },\n            {\n                \"lat\": 20.59613099,\n                \"long\": -103.45247212\n            },\n            {\n                \"lat\": 20.59614637,\n                \"long\": -103.45235978\n            },\n            {\n                \"lat\": 20.59620661,\n                \"long\": -103.4519056\n            },\n            {\n                \"lat\": 20.59621732,\n                \"long\": -103.45182483\n            },\n            {\n                \"lat\": 20.59621545,\n                \"long\": -103.4518245\n            },\n            {\n                \"lat\": 20.59617986,\n                \"long\": -103.45181816\n            },\n            {\n                \"lat\": 20.59622311,\n                \"long\": -103.45164458\n            },\n            {\n                \"lat\": 20.59625519,\n                \"long\": -103.45143625\n            },\n            {\n                \"lat\": 20.59626548,\n                \"long\": -103.45136949\n            },\n            {\n                \"lat\": 20.59628958,\n                \"long\": -103.45122466\n            },\n            {\n                \"lat\": 20.59629853,\n                \"long\": -103.45117083\n            },\n            {\n                \"lat\": 20.59631298,\n                \"long\": -103.45108398\n            },\n            {\n                \"lat\": 20.5963221,\n                \"long\": -103.45101206\n            },\n            {\n                \"lat\": 20.59632419,\n                \"long\": -103.45099555\n            },\n            {\n                \"lat\": 20.59636716,\n                \"long\": -103.45065658\n            },\n            {\n                \"lat\": 20.59638191,\n                \"long\": -103.45054332\n            },\n            {\n                \"lat\": 20.59639298,\n                \"long\": -103.45054253\n            },\n            {\n                \"lat\": 20.59642528,\n                \"long\": -103.45032095\n            },\n            {\n                \"lat\": 20.59642537,\n                \"long\": -103.4503204\n            },\n            {\n                \"lat\": 20.59643611,\n                \"long\": -103.45024896\n            },\n            {\n                \"lat\": 20.59644021,\n                \"long\": -103.45022173\n            },\n            {\n                \"lat\": 20.59647515,\n                \"long\": -103.44998953\n            },\n            {\n                \"lat\": 20.5964756,\n                \"long\": -103.44998652\n            },\n            {\n                \"lat\": 20.59649223,\n                \"long\": -103.44987411\n            },\n            {\n                \"lat\": 20.59650117,\n                \"long\": -103.44981298\n            },\n            {\n                \"lat\": 20.59650891,\n                \"long\": -103.44976013\n            },\n            {\n                \"lat\": 20.59652525,\n                \"long\": -103.44964846\n            },\n            {\n                \"lat\": 20.59654192,\n                \"long\": -103.44953457\n            },\n            {\n                \"lat\": 20.59654197,\n                \"long\": -103.44953423\n            },\n            {\n                \"lat\": 20.59654202,\n                \"long\": -103.4495339\n            },\n            {\n                \"lat\": 20.59655921,\n                \"long\": -103.44941233\n            },\n            {\n                \"lat\": 20.59657058,\n                \"long\": -103.44933789\n            },\n            {\n                \"lat\": 20.59657134,\n                \"long\": -103.44933281\n            },\n            {\n                \"lat\": 20.59657489,\n                \"long\": -103.44930919\n            },\n            {\n                \"lat\": 20.59657964,\n                \"long\": -103.44927755\n            },\n            {\n                \"lat\": 20.59659279,\n                \"long\": -103.44918989\n            },\n            {\n                \"lat\": 20.5965949,\n                \"long\": -103.44917586\n            },\n            {\n                \"lat\": 20.59660992,\n                \"long\": -103.44907576\n            },\n            {\n                \"lat\": 20.59661867,\n                \"long\": -103.44901747\n            },\n            {\n                \"lat\": 20.59662674,\n                \"long\": -103.4489637\n            },\n            {\n                \"lat\": 20.59665164,\n                \"long\": -103.44879782\n            },\n            {\n                \"lat\": 20.59668002,\n                \"long\": -103.44864614\n            },\n            {\n                \"lat\": 20.59671876,\n                \"long\": -103.4484127\n            },\n            {\n                \"lat\": 20.59673772,\n                \"long\": -103.44829843\n            },\n            {\n                \"lat\": 20.59673787,\n                \"long\": -103.44829753\n            },\n            {\n                \"lat\": 20.5967414,\n                \"long\": -103.44827625\n            },\n            {\n                \"lat\": 20.59661393,\n                \"long\": -103.44828931\n            },\n            {\n                \"lat\": 20.59648526,\n                \"long\": -103.44830249\n            },\n            {\n                \"lat\": 20.59641866,\n                \"long\": -103.44831136\n            },\n            {\n                \"lat\": 20.5963521,\n                \"long\": -103.44831835\n            },\n            {\n                \"lat\": 20.5962151,\n                \"long\": -103.44833249\n            },\n            {\n                \"lat\": 20.59621483,\n                \"long\": -103.44832624\n            },\n            {\n                \"lat\": 20.59608074,\n                \"long\": -103.44834039\n            },\n            {\n                \"lat\": 20.59601699,\n                \"long\": -103.44834799\n            },\n            {\n                \"lat\": 20.59600085,\n                \"long\": -103.44834991\n            },\n            {\n                \"lat\": 20.59593891,\n                \"long\": -103.44835729\n            },\n            {\n                \"lat\": 20.59593126,\n                \"long\": -103.4483582\n            },\n            {\n                \"lat\": 20.59579722,\n                \"long\": -103.44837416\n            },\n            {\n                \"lat\": 20.59570987,\n                \"long\": -103.44838263\n            },\n            {\n                \"lat\": 20.59567421,\n                \"long\": -103.4483861\n            },\n            {\n                \"lat\": 20.59557471,\n                \"long\": -103.44839704\n            },\n            {\n                \"lat\": 20.59553934,\n                \"long\": -103.44840093\n            },\n            {\n                \"lat\": 20.59540765,\n                \"long\": -103.44841385\n            },\n            {\n                \"lat\": 20.5953641,\n                \"long\": -103.44841987\n            },\n            {\n                \"lat\": 20.59528466,\n                \"long\": -103.44843086\n            },\n            {\n                \"lat\": 20.59520905,\n                \"long\": -103.44844132\n            },\n            {\n                \"lat\": 20.59520612,\n                \"long\": -103.44844172\n            },\n            {\n                \"lat\": 20.59517385,\n                \"long\": -103.44844554\n            },\n            {\n                \"lat\": 20.59516279,\n                \"long\": -103.44844685\n            },\n            {\n                \"lat\": 20.59505953,\n                \"long\": -103.44845909\n            },\n            {\n                \"lat\": 20.59504076,\n                \"long\": -103.44846131\n            },\n            {\n                \"lat\": 20.59500203,\n                \"long\": -103.4484659\n            },\n            {\n                \"lat\": 20.59493772,\n                \"long\": -103.44847351\n            },\n            {\n                \"lat\": 20.59492926,\n                \"long\": -103.44847452\n            },\n            {\n                \"lat\": 20.59491872,\n                \"long\": -103.44847577\n            },\n            {\n                \"lat\": 20.59479689,\n                \"long\": -103.4484902\n            },\n            {\n                \"lat\": 20.59479022,\n                \"long\": -103.44849099\n            },\n            {\n                \"lat\": 20.5946618,\n                \"long\": -103.44850635\n            },\n            {\n                \"lat\": 20.59430849,\n                \"long\": -103.44854809\n            },\n            {\n                \"lat\": 20.59427609,\n                \"long\": -103.44846832\n            },\n            {\n                \"lat\": 20.59422502,\n                \"long\": -103.44831818\n            },\n            {\n                \"lat\": 20.59419431,\n                \"long\": -103.44822793\n            },\n            {\n                \"lat\": 20.59418661,\n                \"long\": -103.44820528\n            },\n            {\n                \"lat\": 20.59417899,\n                \"long\": -103.44818288\n            },\n            {\n                \"lat\": 20.59413558,\n                \"long\": -103.44805528\n            },\n            {\n                \"lat\": 20.59413312,\n                \"long\": -103.44804807\n            },\n            {\n                \"lat\": 20.59408545,\n                \"long\": -103.44790794\n            },\n            {\n                \"lat\": 20.59405239,\n                \"long\": -103.44781075\n            },\n            {\n                \"lat\": 20.59404026,\n                \"long\": -103.44777513\n            },\n            {\n                \"lat\": 20.59399499,\n                \"long\": -103.44764205\n            },\n            {\n                \"lat\": 20.59395107,\n                \"long\": -103.44751297\n            },\n            {\n                \"lat\": 20.59394964,\n                \"long\": -103.44750876\n            },\n            {\n                \"lat\": 20.59390133,\n                \"long\": -103.44736675\n            },\n            {\n                \"lat\": 20.59385138,\n                \"long\": -103.44723569\n            },\n            {\n                \"lat\": 20.5938483,\n                \"long\": -103.44722619\n            },\n            {\n                \"lat\": 20.5938053,\n                \"long\": -103.44709383\n            },\n            {\n                \"lat\": 20.59376321,\n                \"long\": -103.44696867\n            },\n            {\n                \"lat\": 20.59374399,\n                \"long\": -103.44691151\n            },\n            {\n                \"lat\": 20.59371645,\n                \"long\": -103.44682962\n            },\n            {\n                \"lat\": 20.59367337,\n                \"long\": -103.4467015\n            },\n            {\n                \"lat\": 20.59367295,\n                \"long\": -103.44670025\n            },\n            {\n                \"lat\": 20.59359727,\n                \"long\": -103.44647518\n            },\n            {\n                \"lat\": 20.59356202,\n                \"long\": -103.44637287\n            },\n            {\n                \"lat\": 20.59338745,\n                \"long\": -103.44586838\n            },\n            {\n                \"lat\": 20.59287303,\n                \"long\": -103.44438185\n            },\n            {\n                \"lat\": 20.59287255,\n                \"long\": -103.44438177\n            },\n            {\n                \"lat\": 20.59285992,\n                \"long\": -103.44434545\n            },\n            {\n                \"lat\": 20.59280854,\n                \"long\": -103.44419922\n            },\n            {\n                \"lat\": 20.59277087,\n                \"long\": -103.444092\n            },\n            {\n                \"lat\": 20.59276562,\n                \"long\": -103.44407707\n            },\n            {\n                \"lat\": 20.5927253,\n                \"long\": -103.44396538\n            },\n            {\n                \"lat\": 20.59266555,\n                \"long\": -103.44379984\n            },\n            {\n                \"lat\": 20.59258341,\n                \"long\": -103.4435657\n            },\n            {\n                \"lat\": 20.59249321,\n                \"long\": -103.44332134\n            },\n            {\n                \"lat\": 20.59245823,\n                \"long\": -103.44321941\n            },\n            {\n                \"lat\": 20.59241721,\n                \"long\": -103.44309989\n            },\n            {\n                \"lat\": 20.59239219,\n                \"long\": -103.44302697\n            },\n            {\n                \"lat\": 20.59238553,\n                \"long\": -103.44300758\n            },\n            {\n                \"lat\": 20.59236912,\n                \"long\": -103.44295974\n            },\n            {\n                \"lat\": 20.59235586,\n                \"long\": -103.44292111\n            },\n            {\n                \"lat\": 20.59228677,\n                \"long\": -103.4427198\n            },\n            {\n                \"lat\": 20.59228106,\n                \"long\": -103.44270315\n            },\n            {\n                \"lat\": 20.5922314,\n                \"long\": -103.44255846\n            },\n            {\n                \"lat\": 20.59218616,\n                \"long\": -103.44242665\n            },\n            {\n                \"lat\": 20.59218265,\n                \"long\": -103.4424164\n            },\n            {\n                \"lat\": 20.59217587,\n                \"long\": -103.44239663\n            },\n            {\n                \"lat\": 20.59215889,\n                \"long\": -103.44234718\n            },\n            {\n                \"lat\": 20.59207127,\n                \"long\": -103.44209185\n            },\n            {\n                \"lat\": 20.59198795,\n                \"long\": -103.44190299\n            },\n            {\n                \"lat\": 20.59191139,\n                \"long\": -103.44170185\n            },\n            {\n                \"lat\": 20.59193967,\n                \"long\": -103.44168394\n            },\n            {\n                \"lat\": 20.59196465,\n                \"long\": -103.44166499\n            },\n            {\n                \"lat\": 20.59197388,\n                \"long\": -103.44164924\n            },\n            {\n                \"lat\": 20.591985,\n                \"long\": -103.44161046\n            },\n            {\n                \"lat\": 20.59198666,\n                \"long\": -103.44160466\n            },\n            {\n                \"lat\": 20.59198999,\n                \"long\": -103.44154025\n            },\n            {\n                \"lat\": 20.59199165,\n                \"long\": -103.44147264\n            },\n            {\n                \"lat\": 20.59198289,\n                \"long\": -103.44142587\n            },\n            {\n                \"lat\": 20.59196696,\n                \"long\": -103.44137445\n            },\n            {\n                \"lat\": 20.59195925,\n                \"long\": -103.44136242\n            },\n            {\n                \"lat\": 20.59193967,\n                \"long\": -103.44133189\n            },\n            {\n                \"lat\": 20.59189592,\n                \"long\": -103.44128048\n            },\n            {\n                \"lat\": 20.59185923,\n                \"long\": -103.44125182\n            },\n            {\n                \"lat\": 20.59185058,\n                \"long\": -103.44125046\n            },\n            {\n                \"lat\": 20.59184542,\n                \"long\": -103.44124965\n            },\n            {\n                \"lat\": 20.591759,\n                \"long\": -103.44130152\n            },\n            {\n                \"lat\": 20.59164141,\n                \"long\": -103.44099263\n            },\n            {\n                \"lat\": 20.59090318,\n                \"long\": -103.43894718\n            },\n            {\n                \"lat\": 20.5909002,\n                \"long\": -103.43879306\n            },\n            {\n                \"lat\": 20.59021842,\n                \"long\": -103.43685439\n            },\n            {\n                \"lat\": 20.58902715,\n                \"long\": -103.43362364\n            },\n            {\n                \"lat\": 20.58889257,\n                \"long\": -103.43370615\n            },\n            {\n                \"lat\": 20.58790744,\n                \"long\": -103.43098469\n            },\n            {\n                \"lat\": 20.57921509,\n                \"long\": -103.43013502\n            },\n            {\n                \"lat\": 20.57920901,\n                \"long\": -103.43013438\n            },\n            {\n                \"lat\": 20.57917155,\n                \"long\": -103.43013044\n            },\n            {\n                \"lat\": 20.57894222,\n                \"long\": -103.43040505\n            },\n            {\n                \"lat\": 20.57892599,\n                \"long\": -103.43042448\n            },\n            {\n                \"lat\": 20.57887022,\n                \"long\": -103.43049125\n            },\n            {\n                \"lat\": 20.57884401,\n                \"long\": -103.43052264\n            },\n            {\n                \"lat\": 20.57879265,\n                \"long\": -103.43058272\n            },\n            {\n                \"lat\": 20.57864848,\n                \"long\": -103.43075139\n            },\n            {\n                \"lat\": 20.57860192,\n                \"long\": -103.43080586\n            },\n            {\n                \"lat\": 20.57850365,\n                \"long\": -103.43092082\n            },\n            {\n                \"lat\": 20.57843927,\n                \"long\": -103.43099614\n            },\n            {\n                \"lat\": 20.57840814,\n                \"long\": -103.43103256\n            },\n            {\n                \"lat\": 20.57814128,\n                \"long\": -103.43134475\n            },\n            {\n                \"lat\": 20.57791554,\n                \"long\": -103.43160883\n            },\n            {\n                \"lat\": 20.57761399,\n                \"long\": -103.43196011\n            },\n            {\n                \"lat\": 20.5775715,\n                \"long\": -103.43200961\n            },\n            {\n                \"lat\": 20.57750808,\n                \"long\": -103.43208344\n            },\n            {\n                \"lat\": 20.57729478,\n                \"long\": -103.43233175\n            },\n            {\n                \"lat\": 20.57715712,\n                \"long\": -103.432492\n            },\n            {\n                \"lat\": 20.57692365,\n                \"long\": -103.43276397\n            },\n            {\n                \"lat\": 20.57682127,\n                \"long\": -103.43288324\n            },\n            {\n                \"lat\": 20.57666239,\n                \"long\": -103.4330619\n            },\n            {\n                \"lat\": 20.57665012,\n                \"long\": -103.4330757\n            },\n            {\n                \"lat\": 20.57647961,\n                \"long\": -103.43326743\n            },\n            {\n                \"lat\": 20.57629335,\n                \"long\": -103.43348423\n            },\n            {\n                \"lat\": 20.57606028,\n                \"long\": -103.43375553\n            },\n            {\n                \"lat\": 20.57541737,\n                \"long\": -103.43446598\n            },\n            {\n                \"lat\": 20.57532219,\n                \"long\": -103.43457116\n            },\n            {\n                \"lat\": 20.57430312,\n                \"long\": -103.43569728\n            },\n            {\n                \"lat\": 20.57368844,\n                \"long\": -103.43637651\n            },\n            {\n                \"lat\": 20.57388912,\n                \"long\": -103.43616113\n            },\n            {\n                \"lat\": 20.57331071,\n                \"long\": -103.4367939\n            },\n            {\n                \"lat\": 20.57318871,\n                \"long\": -103.43691951\n            },\n            {\n                \"lat\": 20.57021847,\n                \"long\": -103.43997745\n            },\n            {\n                \"lat\": 20.56703663,\n                \"long\": -103.44305979\n            },\n            {\n                \"lat\": 20.56400424,\n                \"long\": -103.44583711\n            },\n            {\n                \"lat\": 20.56103664,\n                \"long\": -103.44869219\n            },\n            {\n                \"lat\": 20.55813561,\n                \"long\": -103.45162334\n            },\n            {\n                \"lat\": 20.55510323,\n                \"long\": -103.45441522\n            },\n            {\n                \"lat\": 20.55363963,\n                \"long\": -103.45551256\n            },\n            {\n                \"lat\": 20.55214535,\n                \"long\": -103.45656223\n            },\n            {\n                \"lat\": 20.55062176,\n                \"long\": -103.45756329\n            },\n            {\n                \"lat\": 20.54933394,\n                \"long\": -103.45783301\n            },\n            {\n                \"lat\": 20.54870326,\n                \"long\": -103.45748706\n            },\n            {\n                \"lat\": 20.54843745,\n                \"long\": -103.45612996\n            },\n            {\n                \"lat\": 20.54672612,\n                \"long\": -103.45572367\n            },\n            {\n                \"lat\": 20.54564662,\n                \"long\": -103.45531614\n            },\n            {\n                \"lat\": 20.54394131,\n                \"long\": -103.45470723\n            },\n            {\n                \"lat\": 20.54330989,\n                \"long\": -103.45371476\n            },\n            {\n                \"lat\": 20.5429102,\n                \"long\": -103.45327136\n            },\n            {\n                \"lat\": 20.54261388,\n                \"long\": -103.45277338\n            },\n            {\n                \"lat\": 20.54235131,\n                \"long\": -103.45183476\n            },\n            {\n                \"lat\": 20.54210393,\n                \"long\": -103.451916\n            },\n            {\n                \"lat\": 20.54163068,\n                \"long\": -103.45108527\n            },\n            {\n                \"lat\": 20.54139926,\n                \"long\": -103.44980026\n            },\n            {\n                \"lat\": 20.54229901,\n                \"long\": -103.44957075\n            },\n            {\n                \"lat\": 20.54283245,\n                \"long\": -103.4494251\n            },\n            {\n                \"lat\": 20.54344837,\n                \"long\": -103.4492395\n            },\n            {\n                \"lat\": 20.54448708,\n                \"long\": -103.44889748\n            },\n            {\n                \"lat\": 20.54606962,\n                \"long\": -103.44835674\n            },\n            {\n                \"lat\": 20.54545826,\n                \"long\": -103.44627525\n            },\n            {\n                \"lat\": 20.54493303,\n                \"long\": -103.44429954\n            },\n            {\n                \"lat\": 20.54211138,\n                \"long\": -103.44550539\n            },\n            {\n                \"lat\": 20.54129949,\n                \"long\": -103.44576556\n            },\n            {\n                \"lat\": 20.54049625,\n                \"long\": -103.44605438\n            },\n            {\n                \"lat\": 20.54053824,\n                \"long\": -103.44517553\n            },\n            {\n                \"lat\": 20.54038885,\n                \"long\": -103.44435575\n            },\n            {\n                \"lat\": 20.54010906,\n                \"long\": -103.4438828\n            },\n            {\n                \"lat\": 20.54016067,\n                \"long\": -103.43956043\n            },\n            {\n                \"lat\": 20.53986947,\n                \"long\": -103.43863355\n            },\n            {\n                \"lat\": 20.53960431,\n                \"long\": -103.43805248\n            },\n            {\n                \"lat\": 20.53904482,\n                \"long\": -103.43698677\n            },\n            {\n                \"lat\": 20.53857941,\n                \"long\": -103.43610263\n            },\n            {\n                \"lat\": 20.53863831,\n                \"long\": -103.43552486\n            },\n            {\n                \"lat\": 20.53938672,\n                \"long\": -103.43401333\n            },\n            {\n                \"lat\": 20.53950361,\n                \"long\": -103.43420856\n            },\n            {\n                \"lat\": 20.53970302,\n                \"long\": -103.43399467\n            },\n            {\n                \"lat\": 20.53991982,\n                \"long\": -103.43363233\n            },\n            {\n                \"lat\": 20.5404052,\n                \"long\": -103.43309254\n            },\n            {\n                \"lat\": 20.54039659,\n                \"long\": -103.43301485\n            },\n            {\n                \"lat\": 20.54115417,\n                \"long\": -103.43264779\n            },\n            {\n                \"lat\": 20.54137299,\n                \"long\": -103.43251129\n            },\n            {\n                \"lat\": 20.54161822,\n                \"long\": -103.43225849\n            },\n            {\n                \"lat\": 20.54152863,\n                \"long\": -103.43207105\n            },\n            {\n                \"lat\": 20.54157308,\n                \"long\": -103.43197191\n            },\n            {\n                \"lat\": 20.54177994,\n                \"long\": -103.43191101\n            },\n            {\n                \"lat\": 20.54181084,\n                \"long\": -103.43204084\n            },\n            {\n                \"lat\": 20.54184036,\n                \"long\": -103.43209923\n            },\n            {\n                \"lat\": 20.54206481,\n                \"long\": -103.43243481\n            },\n            {\n                \"lat\": 20.54223848,\n                \"long\": -103.4327686\n            },\n            {\n                \"lat\": 20.54230853,\n                \"long\": -103.43284384\n            },\n            {\n                \"lat\": 20.54239002,\n                \"long\": -103.43296404\n            },\n            {\n                \"lat\": 20.54254186,\n                \"long\": -103.43323266\n            },\n            {\n                \"lat\": 20.54276459,\n                \"long\": -103.4335485\n            },\n            {\n                \"lat\": 20.54324453,\n                \"long\": -103.43442659\n            },\n            {\n                \"lat\": 20.54309869,\n                \"long\": -103.43449176\n            },\n            {\n                \"lat\": 20.54273973,\n                \"long\": -103.43469604\n            },\n            {\n                \"lat\": 20.54318377,\n                \"long\": -103.43538989\n            },\n            {\n                \"lat\": 20.54337876,\n                \"long\": -103.435325\n            },\n            {\n                \"lat\": 20.54359077,\n                \"long\": -103.43576448\n            },\n            {\n                \"lat\": 20.54361083,\n                \"long\": -103.43574567\n            },\n            {\n                \"lat\": 20.54382706,\n                \"long\": -103.43564133\n            },\n            {\n                \"lat\": 20.54466902,\n                \"long\": -103.43526478\n            },\n            {\n                \"lat\": 20.54532448,\n                \"long\": -103.43499365\n            },\n            {\n                \"lat\": 20.54623141,\n                \"long\": -103.43461849\n            },\n            {\n                \"lat\": 20.54572336,\n                \"long\": -103.43329863\n            },\n            {\n                \"lat\": 20.54678265,\n                \"long\": -103.43294852\n            },\n            {\n                \"lat\": 20.54586967,\n                \"long\": -103.4320866\n            },\n            {\n                \"lat\": 20.54677547,\n                \"long\": -103.43177744\n            },\n            {\n                \"lat\": 20.54766487,\n                \"long\": -103.43148256\n            },\n            {\n                \"lat\": 20.54872927,\n                \"long\": -103.43115131\n            },\n            {\n                \"lat\": 20.54933544,\n                \"long\": -103.4309545\n            },\n            {\n                \"lat\": 20.54955605,\n                \"long\": -103.43156002\n            },\n            {\n                \"lat\": 20.55012394,\n                \"long\": -103.43261726\n            },\n            {\n                \"lat\": 20.55028766,\n                \"long\": -103.43281713\n            },\n            {\n                \"lat\": 20.55082367,\n                \"long\": -103.43453081\n            },\n            {\n                \"lat\": 20.55171347,\n                \"long\": -103.43425343\n            },\n            {\n                \"lat\": 20.55870698,\n                \"long\": -103.43204746\n            },\n            {\n                \"lat\": 20.55809874,\n                \"long\": -103.43019006\n            },\n            {\n                \"lat\": 20.55769287,\n                \"long\": -103.43032343\n            },\n            {\n                \"lat\": 20.55721957,\n                \"long\": -103.42847444\n            },\n            {\n                \"lat\": 20.55727794,\n                \"long\": -103.42838637\n            },\n            {\n                \"lat\": 20.55702993,\n                \"long\": -103.42734683\n            },\n            {\n                \"lat\": 20.5568963,\n                \"long\": -103.42684725\n            },\n            {\n                \"lat\": 20.55681221,\n                \"long\": -103.42663988\n            },\n            {\n                \"lat\": 20.55659497,\n                \"long\": -103.42649152\n            },\n            {\n                \"lat\": 20.5565516,\n                \"long\": -103.42631252\n            },\n            {\n                \"lat\": 20.55649056,\n                \"long\": -103.42607587\n            },\n            {\n                \"lat\": 20.55612134,\n                \"long\": -103.42469449\n            },\n            {\n                \"lat\": 20.5545221,\n                \"long\": -103.41869055\n            },\n            {\n                \"lat\": 20.55451835,\n                \"long\": -103.41862806\n            },\n            {\n                \"lat\": 20.55450943,\n                \"long\": -103.41847932\n            },\n            {\n                \"lat\": 20.55446578,\n                \"long\": -103.41818107\n            },\n            {\n                \"lat\": 20.55446243,\n                \"long\": -103.41815818\n            },\n            {\n                \"lat\": 20.55436543,\n                \"long\": -103.41793454\n            },\n            {\n                \"lat\": 20.55436243,\n                \"long\": -103.41792718\n            },\n            {\n                \"lat\": 20.55430193,\n                \"long\": -103.41772592\n            },\n            {\n                \"lat\": 20.5542602,\n                \"long\": -103.41763877\n            },\n            {\n                \"lat\": 20.55423357,\n                \"long\": -103.41758314\n            },\n            {\n                \"lat\": 20.55408661,\n                \"long\": -103.4172762\n            },\n            {\n                \"lat\": 20.55408581,\n                \"long\": -103.41727454\n            },\n            {\n                \"lat\": 20.553708,\n                \"long\": -103.41648543\n            },\n            {\n                \"lat\": 20.5536561,\n                \"long\": -103.41633547\n            },\n            {\n                \"lat\": 20.55359752,\n                \"long\": -103.4161662\n            },\n            {\n                \"lat\": 20.55350473,\n                \"long\": -103.4157675\n            },\n            {\n                \"lat\": 20.55348976,\n                \"long\": -103.41570316\n            },\n            {\n                \"lat\": 20.55336523,\n                \"long\": -103.41516814\n            },\n            {\n                \"lat\": 20.55301585,\n                \"long\": -103.41351347\n            },\n            {\n                \"lat\": 20.55274857,\n                \"long\": -103.41208604\n            },\n            {\n                \"lat\": 20.5537261,\n                \"long\": -103.41181205\n            },\n            {\n                \"lat\": 20.55389709,\n                \"long\": -103.41177138\n            },\n            {\n                \"lat\": 20.55401645,\n                \"long\": -103.4116565\n            },\n            {\n                \"lat\": 20.55363683,\n                \"long\": -103.41125846\n            },\n            {\n                \"lat\": 20.55362116,\n                \"long\": -103.41099636\n            },\n            {\n                \"lat\": 20.55359817,\n                \"long\": -103.41073486\n            },\n            {\n                \"lat\": 20.55356787,\n                \"long\": -103.41047421\n            },\n            {\n                \"lat\": 20.5535303,\n                \"long\": -103.41021462\n            },\n            {\n                \"lat\": 20.55348548,\n                \"long\": -103.40995633\n            },\n            {\n                \"lat\": 20.55346612,\n                \"long\": -103.40956527\n            },\n            {\n                \"lat\": 20.55332398,\n                \"long\": -103.40866978\n            },\n            {\n                \"lat\": 20.55289188,\n                \"long\": -103.40586983\n            },\n            {\n                \"lat\": 20.55254677,\n                \"long\": -103.40369044\n            },\n            {\n                \"lat\": 20.55234088,\n                \"long\": -103.40252106\n            },\n            {\n                \"lat\": 20.55195224,\n                \"long\": -103.40098549\n            },\n            {\n                \"lat\": 20.55166563,\n                \"long\": -103.40026605\n            },\n            {\n                \"lat\": 20.55133282,\n                \"long\": -103.39887907\n            },\n            {\n                \"lat\": 20.55315304,\n                \"long\": -103.39774819\n            },\n            {\n                \"lat\": 20.55346747,\n                \"long\": -103.39756089\n            },\n            {\n                \"lat\": 20.55478665,\n                \"long\": -103.39673897\n            },\n            {\n                \"lat\": 20.55580903,\n                \"long\": -103.39606729\n            },\n            {\n                \"lat\": 20.55728952,\n                \"long\": -103.39508209\n            },\n            {\n                \"lat\": 20.56119694,\n                \"long\": -103.39307733\n            },\n            {\n                \"lat\": 20.5630099,\n                \"long\": -103.39228348\n            },\n            {\n                \"lat\": 20.56321555,\n                \"long\": -103.38947334\n            },\n            {\n                \"lat\": 20.56421086,\n                \"long\": -103.38445985\n            },\n            {\n                \"lat\": 20.57197237,\n                \"long\": -103.36802662\n            },\n            {\n                \"lat\": 20.57247807,\n                \"long\": -103.36421744\n            },\n            {\n                \"lat\": 20.57247812,\n                \"long\": -103.36421611\n            },\n            {\n                \"lat\": 20.57255981,\n                \"long\": -103.36354239\n            },\n            {\n                \"lat\": 20.572595,\n                \"long\": -103.36325211\n            },\n            {\n                \"lat\": 20.57257128,\n                \"long\": -103.36322023\n            },\n            {\n                \"lat\": 20.57251747,\n                \"long\": -103.36314791\n            },\n            {\n                \"lat\": 20.57252492,\n                \"long\": -103.36276259\n            },\n            {\n                \"lat\": 20.5725387,\n                \"long\": -103.36205026\n            },\n            {\n                \"lat\": 20.57248885,\n                \"long\": -103.36133833\n            },\n            {\n                \"lat\": 20.5724071,\n                \"long\": -103.36017099\n            },\n            {\n                \"lat\": 20.5724024,\n                \"long\": -103.36010395\n            },\n            {\n                \"lat\": 20.57236231,\n                \"long\": -103.36004644\n            },\n            {\n                \"lat\": 20.5723361,\n                \"long\": -103.36000885\n            },\n            {\n                \"lat\": 20.57233043,\n                \"long\": -103.35998524\n            },\n            {\n                \"lat\": 20.57231743,\n                \"long\": -103.35992945\n            },\n            {\n                \"lat\": 20.57230415,\n                \"long\": -103.35987248\n            },\n            {\n                \"lat\": 20.5722924,\n                \"long\": -103.35982209\n            },\n            {\n                \"lat\": 20.57229229,\n                \"long\": -103.3598216\n            },\n            {\n                \"lat\": 20.57228349,\n                \"long\": -103.35978386\n            },\n            {\n                \"lat\": 20.57216876,\n                \"long\": -103.3593412\n            },\n            {\n                \"lat\": 20.57217872,\n                \"long\": -103.35933808\n            },\n            {\n                \"lat\": 20.5722038,\n                \"long\": -103.35930667\n            },\n            {\n                \"lat\": 20.57219808,\n                \"long\": -103.35928478\n            },\n            {\n                \"lat\": 20.57219391,\n                \"long\": -103.35926884\n            },\n            {\n                \"lat\": 20.57211936,\n                \"long\": -103.35898376\n            },\n            {\n                \"lat\": 20.57213802,\n                \"long\": -103.35898214\n            },\n            {\n                \"lat\": 20.57215508,\n                \"long\": -103.35898065\n            },\n            {\n                \"lat\": 20.57208934,\n                \"long\": -103.35872199\n            },\n            {\n                \"lat\": 20.57207224,\n                \"long\": -103.3586507\n            },\n            {\n                \"lat\": 20.57201682,\n                \"long\": -103.35844532\n            },\n            {\n                \"lat\": 20.5719732,\n                \"long\": -103.35828364\n            },\n            {\n                \"lat\": 20.57195255,\n                \"long\": -103.35820714\n            },\n            {\n                \"lat\": 20.57192816,\n                \"long\": -103.35811672\n            },\n            {\n                \"lat\": 20.57188271,\n                \"long\": -103.35793403\n            },\n            {\n                \"lat\": 20.57163258,\n                \"long\": -103.35808574\n            },\n            {\n                \"lat\": 20.55854274,\n                \"long\": -103.36602436\n            },\n            {\n                \"lat\": 20.55770635,\n                \"long\": -103.36534624\n            },\n            {\n                \"lat\": 20.5569901,\n                \"long\": -103.36479558\n            },\n            {\n                \"lat\": 20.55666998,\n                \"long\": -103.36443104\n            },\n            {\n                \"lat\": 20.55592947,\n                \"long\": -103.36341652\n            },\n            {\n                \"lat\": 20.55590723,\n                \"long\": -103.36338605\n            },\n            {\n                \"lat\": 20.55590399,\n                \"long\": -103.36338084\n            },\n            {\n                \"lat\": 20.55574491,\n                \"long\": -103.3631581\n            },\n            {\n                \"lat\": 20.55539304,\n                \"long\": -103.36268273\n            },\n            {\n                \"lat\": 20.55536421,\n                \"long\": -103.36264378\n            },\n            {\n                \"lat\": 20.55540439,\n                \"long\": -103.36261813\n            },\n            {\n                \"lat\": 20.55652423,\n                \"long\": -103.36174459\n            },\n            {\n                \"lat\": 20.55579236,\n                \"long\": -103.36089761\n            },\n            {\n                \"lat\": 20.55539414,\n                \"long\": -103.36046784\n            },\n            {\n                \"lat\": 20.55536529,\n                \"long\": -103.36035345\n            },\n            {\n                \"lat\": 20.55519178,\n                \"long\": -103.35975455\n            },\n            {\n                \"lat\": 20.55520255,\n                \"long\": -103.35925452\n            },\n            {\n                \"lat\": 20.55533138,\n                \"long\": -103.35589977\n            },\n            {\n                \"lat\": 20.55547609,\n                \"long\": -103.35408218\n            },\n            {\n                \"lat\": 20.55550101,\n                \"long\": -103.35376924\n            },\n            {\n                \"lat\": 20.55550669,\n                \"long\": -103.35369784\n            },\n            {\n                \"lat\": 20.55551116,\n                \"long\": -103.35364167\n            },\n            {\n                \"lat\": 20.55551872,\n                \"long\": -103.35354672\n            },\n            {\n                \"lat\": 20.55551846,\n                \"long\": -103.35348083\n            },\n            {\n                \"lat\": 20.55551822,\n                \"long\": -103.35342213\n            },\n            {\n                \"lat\": 20.55551812,\n                \"long\": -103.35339736\n            },\n            {\n                \"lat\": 20.55551799,\n                \"long\": -103.35336561\n            },\n            {\n                \"lat\": 20.55551794,\n                \"long\": -103.35335338\n            },\n            {\n                \"lat\": 20.5555177,\n                \"long\": -103.35329321\n            },\n            {\n                \"lat\": 20.55551766,\n                \"long\": -103.3532849\n            },\n            {\n                \"lat\": 20.55551752,\n                \"long\": -103.35327124\n            },\n            {\n                \"lat\": 20.55551682,\n                \"long\": -103.3532035\n            },\n            {\n                \"lat\": 20.55551624,\n                \"long\": -103.35314731\n            },\n            {\n                \"lat\": 20.55551496,\n                \"long\": -103.35302299\n            },\n            {\n                \"lat\": 20.5555148,\n                \"long\": -103.35300799\n            },\n            {\n                \"lat\": 20.55551459,\n                \"long\": -103.35299236\n            },\n            {\n                \"lat\": 20.55551456,\n                \"long\": -103.35299049\n            },\n            {\n                \"lat\": 20.55551196,\n                \"long\": -103.35280351\n            },\n            {\n                \"lat\": 20.55551149,\n                \"long\": -103.35276987\n            },\n            {\n                \"lat\": 20.55550953,\n                \"long\": -103.35262884\n            },\n            {\n                \"lat\": 20.55550874,\n                \"long\": -103.35257258\n            },\n            {\n                \"lat\": 20.55550872,\n                \"long\": -103.35257059\n            },\n            {\n                \"lat\": 20.55550871,\n                \"long\": -103.35256996\n            },\n            {\n                \"lat\": 20.55550812,\n                \"long\": -103.3525277\n            },\n            {\n                \"lat\": 20.55550557,\n                \"long\": -103.35234464\n            },\n            {\n                \"lat\": 20.55550416,\n                \"long\": -103.3522432\n            },\n            {\n                \"lat\": 20.55550219,\n                \"long\": -103.35218778\n            },\n            {\n                \"lat\": 20.55550201,\n                \"long\": -103.3521827\n            },\n            {\n                \"lat\": 20.55550194,\n                \"long\": -103.35218089\n            },\n            {\n                \"lat\": 20.55549917,\n                \"long\": -103.35210285\n            },\n            {\n                \"lat\": 20.55549856,\n                \"long\": -103.3520858\n            },\n            {\n                \"lat\": 20.55549849,\n                \"long\": -103.35208373\n            },\n            {\n                \"lat\": 20.55549553,\n                \"long\": -103.35200065\n            },\n            {\n                \"lat\": 20.55549544,\n                \"long\": -103.35199821\n            },\n            {\n                \"lat\": 20.55549252,\n                \"long\": -103.35179727\n            },\n            {\n                \"lat\": 20.55549214,\n                \"long\": -103.35177126\n            },\n            {\n                \"lat\": 20.55549021,\n                \"long\": -103.35170772\n            },\n            {\n                \"lat\": 20.55548624,\n                \"long\": -103.35157697\n            },\n            {\n                \"lat\": 20.55548525,\n                \"long\": -103.35154451\n            },\n            {\n                \"lat\": 20.55549219,\n                \"long\": -103.35148872\n            },\n            {\n                \"lat\": 20.55549916,\n                \"long\": -103.35142483\n            },\n            {\n                \"lat\": 20.55549989,\n                \"long\": -103.3514194\n            },\n            {\n                \"lat\": 20.55552047,\n                \"long\": -103.35126566\n            },\n            {\n                \"lat\": 20.55552411,\n                \"long\": -103.35123848\n            },\n            {\n                \"lat\": 20.55552624,\n                \"long\": -103.35122253\n            },\n            {\n                \"lat\": 20.55551979,\n                \"long\": -103.35122155\n            },\n            {\n                \"lat\": 20.55552085,\n                \"long\": -103.35108939\n            },\n            {\n                \"lat\": 20.55552124,\n                \"long\": -103.35104077\n            },\n            {\n                \"lat\": 20.55552131,\n                \"long\": -103.35103215\n            },\n            {\n                \"lat\": 20.55552116,\n                \"long\": -103.35089986\n            },\n            {\n                \"lat\": 20.55552113,\n                \"long\": -103.35087254\n            },\n            {\n                \"lat\": 20.55552097,\n                \"long\": -103.35072079\n            },\n            {\n                \"lat\": 20.55552106,\n                \"long\": -103.3506554\n            },\n            {\n                \"lat\": 20.55552106,\n                \"long\": -103.35065343\n            },\n            {\n                \"lat\": 20.55552112,\n                \"long\": -103.35060704\n            },\n            {\n                \"lat\": 20.55552117,\n                \"long\": -103.35056563\n            },\n            {\n                \"lat\": 20.55552124,\n                \"long\": -103.35051116\n            },\n            {\n                \"lat\": 20.5555213,\n                \"long\": -103.35047252\n            },\n            {\n                \"lat\": 20.55552118,\n                \"long\": -103.35038826\n            },\n            {\n                \"lat\": 20.55552114,\n                \"long\": -103.35035613\n            },\n            {\n                \"lat\": 20.55552114,\n                \"long\": -103.35035176\n            },\n            {\n                \"lat\": 20.55552111,\n                \"long\": -103.35033015\n            },\n            {\n                \"lat\": 20.55552109,\n                \"long\": -103.35031498\n            },\n            {\n                \"lat\": 20.55552103,\n                \"long\": -103.35027098\n            },\n            {\n                \"lat\": 20.55552097,\n                \"long\": -103.35022714\n            },\n            {\n                \"lat\": 20.55552097,\n                \"long\": -103.3502261\n            },\n            {\n                \"lat\": 20.55552122,\n                \"long\": -103.3500785\n            },\n            {\n                \"lat\": 20.55551986,\n                \"long\": -103.35007852\n            },\n            {\n                \"lat\": 20.55551989,\n                \"long\": -103.35006159\n            },\n            {\n                \"lat\": 20.55551998,\n                \"long\": -103.35001854\n            },\n            {\n                \"lat\": 20.55552023,\n                \"long\": -103.34988455\n            },\n            {\n                \"lat\": 20.55552038,\n                \"long\": -103.34983289\n            },\n            {\n                \"lat\": 20.5555206,\n                \"long\": -103.34975665\n            },\n            {\n                \"lat\": 20.55552075,\n                \"long\": -103.34970544\n            },\n            {\n                \"lat\": 20.55552104,\n                \"long\": -103.34960633\n            },\n            {\n                \"lat\": 20.55552143,\n                \"long\": -103.34947122\n            },\n            {\n                \"lat\": 20.55552148,\n                \"long\": -103.34946922\n            },\n            {\n                \"lat\": 20.55552273,\n                \"long\": -103.34941865\n            },\n            {\n                \"lat\": 20.5555244,\n                \"long\": -103.3493506\n            },\n            {\n                \"lat\": 20.55552643,\n                \"long\": -103.34926834\n            },\n            {\n                \"lat\": 20.55552739,\n                \"long\": -103.34922919\n            },\n            {\n                \"lat\": 20.55552928,\n                \"long\": -103.34915274\n            },\n            {\n                \"lat\": 20.55552925,\n                \"long\": -103.34915153\n            },\n            {\n                \"lat\": 20.55552914,\n                \"long\": -103.34914532\n            },\n            {\n                \"lat\": 20.55552796,\n                \"long\": -103.349082\n            },\n            {\n                \"lat\": 20.55552723,\n                \"long\": -103.34904301\n            },\n            {\n                \"lat\": 20.55552658,\n                \"long\": -103.34900767\n            },\n            {\n                \"lat\": 20.55552401,\n                \"long\": -103.34886938\n            },\n            {\n                \"lat\": 20.55552312,\n                \"long\": -103.34870858\n            },\n            {\n                \"lat\": 20.55552292,\n                \"long\": -103.34867139\n            },\n            {\n                \"lat\": 20.55552272,\n                \"long\": -103.348634\n            },\n            {\n                \"lat\": 20.55552249,\n                \"long\": -103.34859327\n            },\n            {\n                \"lat\": 20.55552098,\n                \"long\": -103.34831761\n            },\n            {\n                \"lat\": 20.55552085,\n                \"long\": -103.34830104\n            },\n            {\n                \"lat\": 20.55552007,\n                \"long\": -103.34820315\n            },\n            {\n                \"lat\": 20.55551761,\n                \"long\": -103.34789203\n            },\n            {\n                \"lat\": 20.55551744,\n                \"long\": -103.34787135\n            },\n            {\n                \"lat\": 20.55551616,\n                \"long\": -103.34770989\n            },\n            {\n                \"lat\": 20.55551577,\n                \"long\": -103.34766064\n            },\n            {\n                \"lat\": 20.55551576,\n                \"long\": -103.34766006\n            },\n            {\n                \"lat\": 20.55551548,\n                \"long\": -103.34763207\n            },\n            {\n                \"lat\": 20.55551372,\n                \"long\": -103.34746073\n            },\n            {\n                \"lat\": 20.55551076,\n                \"long\": -103.34717204\n            },\n            {\n                \"lat\": 20.55551086,\n                \"long\": -103.34714581\n            },\n            {\n                \"lat\": 20.55551102,\n                \"long\": -103.34710543\n            },\n            {\n                \"lat\": 20.55551122,\n                \"long\": -103.34705522\n            },\n            {\n                \"lat\": 20.55550229,\n                \"long\": -103.34690589\n            },\n            {\n                \"lat\": 20.55549994,\n                \"long\": -103.34686654\n            },\n            {\n                \"lat\": 20.55548868,\n                \"long\": -103.3466782\n            },\n            {\n                \"lat\": 20.55548817,\n                \"long\": -103.34666974\n            },\n            {\n                \"lat\": 20.55548123,\n                \"long\": -103.34655367\n            },\n            {\n                \"lat\": 20.55547463,\n                \"long\": -103.34644332\n            },\n            {\n                \"lat\": 20.555455,\n                \"long\": -103.34626328\n            },\n            {\n                \"lat\": 20.55544574,\n                \"long\": -103.34617867\n            },\n            {\n                \"lat\": 20.55543388,\n                \"long\": -103.3460703\n            },\n            {\n                \"lat\": 20.55542463,\n                \"long\": -103.3459858\n            },\n            {\n                \"lat\": 20.55542441,\n                \"long\": -103.3459837\n            },\n            {\n                \"lat\": 20.55541357,\n                \"long\": -103.34588469\n            },\n            {\n                \"lat\": 20.55541124,\n                \"long\": -103.34586425\n            },\n            {\n                \"lat\": 20.55541095,\n                \"long\": -103.34586163\n            },\n            {\n                \"lat\": 20.55538629,\n                \"long\": -103.34564502\n            },\n            {\n                \"lat\": 20.55538275,\n                \"long\": -103.34561688\n            },\n            {\n                \"lat\": 20.55535287,\n                \"long\": -103.34537962\n            },\n            {\n                \"lat\": 20.55534124,\n                \"long\": -103.34528734\n            },\n            {\n                \"lat\": 20.55534025,\n                \"long\": -103.34527947\n            },\n            {\n                \"lat\": 20.55533771,\n                \"long\": -103.34523116\n            },\n            {\n                \"lat\": 20.55528085,\n                \"long\": -103.3441237\n            },\n            {\n                \"lat\": 20.55526789,\n                \"long\": -103.34387131\n            },\n            {\n                \"lat\": 20.5552407,\n                \"long\": -103.34334162\n            },\n            {\n                \"lat\": 20.55523439,\n                \"long\": -103.34321888\n            },\n            {\n                \"lat\": 20.55522322,\n                \"long\": -103.34312964\n            },\n            {\n                \"lat\": 20.55521064,\n                \"long\": -103.34313457\n            },\n            {\n                \"lat\": 20.55520705,\n                \"long\": -103.3430682\n            },\n            {\n                \"lat\": 20.55520346,\n                \"long\": -103.34300149\n            },\n            {\n                \"lat\": 20.55519631,\n                \"long\": -103.34286833\n            },\n            {\n                \"lat\": 20.55519256,\n                \"long\": -103.34279857\n            },\n            {\n                \"lat\": 20.55518909,\n                \"long\": -103.34273387\n            },\n            {\n                \"lat\": 20.55518547,\n                \"long\": -103.3426665\n            },\n            {\n                \"lat\": 20.55518366,\n                \"long\": -103.3426329\n            },\n            {\n                \"lat\": 20.5551818,\n                \"long\": -103.34259828\n            },\n            {\n                \"lat\": 20.55517827,\n                \"long\": -103.34253252\n            },\n            {\n                \"lat\": 20.55517496,\n                \"long\": -103.34247084\n            },\n            {\n                \"lat\": 20.5551711,\n                \"long\": -103.3423991\n            },\n            {\n                \"lat\": 20.55516463,\n                \"long\": -103.34234649\n            },\n            {\n                \"lat\": 20.55514067,\n                \"long\": -103.34215181\n            },\n            {\n                \"lat\": 20.55502542,\n                \"long\": -103.34121527\n            },\n            {\n                \"lat\": 20.55501728,\n                \"long\": -103.34114912\n            },\n            {\n                \"lat\": 20.55500218,\n                \"long\": -103.34102643\n            },\n            {\n                \"lat\": 20.55487922,\n                \"long\": -103.34002733\n            },\n            {\n                \"lat\": 20.55486382,\n                \"long\": -103.33990217\n            },\n            {\n                \"lat\": 20.55484167,\n                \"long\": -103.33972219\n            },\n            {\n                \"lat\": 20.55483119,\n                \"long\": -103.33963705\n            },\n            {\n                \"lat\": 20.5546338,\n                \"long\": -103.33803329\n            },\n            {\n                \"lat\": 20.55462305,\n                \"long\": -103.33794593\n            },\n            {\n                \"lat\": 20.5545736,\n                \"long\": -103.3375442\n            },\n            {\n                \"lat\": 20.55454488,\n                \"long\": -103.33731083\n            },\n            {\n                \"lat\": 20.55451633,\n                \"long\": -103.33707893\n            },\n            {\n                \"lat\": 20.55445201,\n                \"long\": -103.33660625\n            },\n            {\n                \"lat\": 20.55438659,\n                \"long\": -103.33612547\n            },\n            {\n                \"lat\": 20.55434912,\n                \"long\": -103.33585016\n            },\n            {\n                \"lat\": 20.55432514,\n                \"long\": -103.33567393\n            },\n            {\n                \"lat\": 20.55417196,\n                \"long\": -103.33454828\n            },\n            {\n                \"lat\": 20.55410257,\n                \"long\": -103.3341341\n            },\n            {\n                \"lat\": 20.554084,\n                \"long\": -103.33402322\n            },\n            {\n                \"lat\": 20.55399906,\n                \"long\": -103.33351616\n            },\n            {\n                \"lat\": 20.55398839,\n                \"long\": -103.33345248\n            },\n            {\n                \"lat\": 20.55379541,\n                \"long\": -103.33230051\n            },\n            {\n                \"lat\": 20.55381489,\n                \"long\": -103.33141231\n            },\n            {\n                \"lat\": 20.55380567,\n                \"long\": -103.33141001\n            },\n            {\n                \"lat\": 20.54799644,\n                \"long\": -103.32996163\n            },\n            {\n                \"lat\": 20.54752109,\n                \"long\": -103.32982519\n            },\n            {\n                \"lat\": 20.54704149,\n                \"long\": -103.32970667\n            },\n            {\n                \"lat\": 20.54655824,\n                \"long\": -103.32960622\n            },\n            {\n                \"lat\": 20.54634734,\n                \"long\": -103.32954215\n            },\n            {\n                \"lat\": 20.54613472,\n                \"long\": -103.32948481\n            },\n            {\n                \"lat\": 20.54592058,\n                \"long\": -103.32943425\n            },\n            {\n                \"lat\": 20.54585377,\n                \"long\": -103.3294153\n            },\n            {\n                \"lat\": 20.54564132,\n                \"long\": -103.32935504\n            },\n            {\n                \"lat\": 20.54504902,\n                \"long\": -103.32920112\n            },\n            {\n                \"lat\": 20.54431731,\n                \"long\": -103.32901624\n            },\n            {\n                \"lat\": 20.5442065,\n                \"long\": -103.32898824\n            },\n            {\n                \"lat\": 20.54382042,\n                \"long\": -103.3288907\n            },\n            {\n                \"lat\": 20.54380993,\n                \"long\": -103.32888848\n            },\n            {\n                \"lat\": 20.5436334,\n                \"long\": -103.32885105\n            },\n            {\n                \"lat\": 20.54310735,\n                \"long\": -103.32873954\n            },\n            {\n                \"lat\": 20.54292162,\n                \"long\": -103.32870016\n            },\n            {\n                \"lat\": 20.54269116,\n                \"long\": -103.32865131\n            },\n            {\n                \"lat\": 20.54267049,\n                \"long\": -103.32864693\n            },\n            {\n                \"lat\": 20.54266842,\n                \"long\": -103.3286259\n            },\n            {\n                \"lat\": 20.54260508,\n                \"long\": -103.32816896\n            },\n            {\n                \"lat\": 20.54259851,\n                \"long\": -103.32812155\n            },\n            {\n                \"lat\": 20.54259577,\n                \"long\": -103.32810174\n            },\n            {\n                \"lat\": 20.54257496,\n                \"long\": -103.32795161\n            },\n            {\n                \"lat\": 20.54256923,\n                \"long\": -103.32791029\n            },\n            {\n                \"lat\": 20.54245385,\n                \"long\": -103.32707787\n            },\n            {\n                \"lat\": 20.54240195,\n                \"long\": -103.32670352\n            },\n            {\n                \"lat\": 20.54236984,\n                \"long\": -103.32647187\n            },\n            {\n                \"lat\": 20.5423677,\n                \"long\": -103.32645651\n            },\n            {\n                \"lat\": 20.54230359,\n                \"long\": -103.32599613\n            },\n            {\n                \"lat\": 20.54213449,\n                \"long\": -103.32478185\n            },\n            {\n                \"lat\": 20.54212462,\n                \"long\": -103.32471098\n            },\n            {\n                \"lat\": 20.54207421,\n                \"long\": -103.32434903\n            },\n            {\n                \"lat\": 20.54207069,\n                \"long\": -103.32433905\n            },\n            {\n                \"lat\": 20.54206617,\n                \"long\": -103.32430939\n            },\n            {\n                \"lat\": 20.54201793,\n                \"long\": -103.32399304\n            },\n            {\n                \"lat\": 20.54201536,\n                \"long\": -103.32397618\n            },\n            {\n                \"lat\": 20.54196595,\n                \"long\": -103.32366318\n            },\n            {\n                \"lat\": 20.5419149,\n                \"long\": -103.32334384\n            },\n            {\n                \"lat\": 20.54186418,\n                \"long\": -103.32304776\n            },\n            {\n                \"lat\": 20.5418598,\n                \"long\": -103.32302223\n            },\n            {\n                \"lat\": 20.54184507,\n                \"long\": -103.32293624\n            },\n            {\n                \"lat\": 20.54180369,\n                \"long\": -103.32269473\n            },\n            {\n                \"lat\": 20.54174851,\n                \"long\": -103.32235579\n            },\n            {\n                \"lat\": 20.54169282,\n                \"long\": -103.32201358\n            },\n            {\n                \"lat\": 20.54166881,\n                \"long\": -103.32186967\n            },\n            {\n                \"lat\": 20.54166306,\n                \"long\": -103.32183517\n            },\n            {\n                \"lat\": 20.54163566,\n                \"long\": -103.32167097\n            },\n            {\n                \"lat\": 20.54160074,\n                \"long\": -103.32146165\n            },\n            {\n                \"lat\": 20.54158233,\n                \"long\": -103.32135124\n            },\n            {\n                \"lat\": 20.54157527,\n                \"long\": -103.32130894\n            },\n            {\n                \"lat\": 20.54153244,\n                \"long\": -103.32105221\n            },\n            {\n                \"lat\": 20.54151357,\n                \"long\": -103.3209391\n            },\n            {\n                \"lat\": 20.54147377,\n                \"long\": -103.32070463\n            },\n            {\n                \"lat\": 20.54145003,\n                \"long\": -103.32056475\n            },\n            {\n                \"lat\": 20.54139483,\n                \"long\": -103.32021952\n            },\n            {\n                \"lat\": 20.54138823,\n                \"long\": -103.32017824\n            },\n            {\n                \"lat\": 20.54130565,\n                \"long\": -103.31975108\n            },\n            {\n                \"lat\": 20.54129857,\n                \"long\": -103.31969782\n            },\n            {\n                \"lat\": 20.54129546,\n                \"long\": -103.31967449\n            },\n            {\n                \"lat\": 20.54124827,\n                \"long\": -103.31943966\n            },\n            {\n                \"lat\": 20.54112396,\n                \"long\": -103.31921577\n            },\n            {\n                \"lat\": 20.54008074,\n                \"long\": -103.31733694\n            },\n            {\n                \"lat\": 20.5398554,\n                \"long\": -103.31676506\n            },\n            {\n                \"lat\": 20.53994383,\n                \"long\": -103.31670962\n            },\n            {\n                \"lat\": 20.54019648,\n                \"long\": -103.31655124\n            },\n            {\n                \"lat\": 20.54062674,\n                \"long\": -103.31616289\n            },\n            {\n                \"lat\": 20.54060512,\n                \"long\": -103.31605255\n            },\n            {\n                \"lat\": 20.54058313,\n                \"long\": -103.31594027\n            },\n            {\n                \"lat\": 20.54057919,\n                \"long\": -103.3159202\n            },\n            {\n                \"lat\": 20.54054023,\n                \"long\": -103.31572133\n            },\n            {\n                \"lat\": 20.54092242,\n                \"long\": -103.31537574\n            },\n            {\n                \"lat\": 20.54097253,\n                \"long\": -103.31532292\n            },\n            {\n                \"lat\": 20.54103273,\n                \"long\": -103.31525453\n            },\n            {\n                \"lat\": 20.54148092,\n                \"long\": -103.31474537\n            },\n            {\n                \"lat\": 20.54213467,\n                \"long\": -103.31400267\n            },\n            {\n                \"lat\": 20.54248738,\n                \"long\": -103.31360197\n            },\n            {\n                \"lat\": 20.54269921,\n                \"long\": -103.31334506\n            },\n            {\n                \"lat\": 20.5426115,\n                \"long\": -103.31320298\n            },\n            {\n                \"lat\": 20.54252288,\n                \"long\": -103.31304802\n            },\n            {\n                \"lat\": 20.54243933,\n                \"long\": -103.31288991\n            },\n            {\n                \"lat\": 20.54236095,\n                \"long\": -103.31272884\n            },\n            {\n                \"lat\": 20.54228785,\n                \"long\": -103.31256501\n            },\n            {\n                \"lat\": 20.5422201,\n                \"long\": -103.31239859\n            },\n            {\n                \"lat\": 20.54217151,\n                \"long\": -103.31226697\n            },\n            {\n                \"lat\": 20.54213826,\n                \"long\": -103.31217103\n            },\n            {\n                \"lat\": 20.54210099,\n                \"long\": -103.31205884\n            },\n            {\n                \"lat\": 20.54204977,\n                \"long\": -103.3118859\n            },\n            {\n                \"lat\": 20.54200418,\n                \"long\": -103.31171119\n            },\n            {\n                \"lat\": 20.54196429,\n                \"long\": -103.31153491\n            },\n            {\n                \"lat\": 20.54193014,\n                \"long\": -103.31135729\n            },\n            {\n                \"lat\": 20.54214378,\n                \"long\": -103.31113659\n            },\n            {\n                \"lat\": 20.54208046,\n                \"long\": -103.31091806\n            },\n            {\n                \"lat\": 20.5420289,\n                \"long\": -103.31072782\n            },\n            {\n                \"lat\": 20.54200933,\n                \"long\": -103.31065282\n            },\n            {\n                \"lat\": 20.54199312,\n                \"long\": -103.31059065\n            },\n            {\n                \"lat\": 20.54198719,\n                \"long\": -103.31056792\n            },\n            {\n                \"lat\": 20.54191951,\n                \"long\": -103.31029463\n            },\n            {\n                \"lat\": 20.5419036,\n                \"long\": -103.31023188\n            },\n            {\n                \"lat\": 20.54197755,\n                \"long\": -103.31016814\n            },\n            {\n                \"lat\": 20.54196731,\n                \"long\": -103.30990234\n            },\n            {\n                \"lat\": 20.54195575,\n                \"long\": -103.30969745\n            },\n            {\n                \"lat\": 20.54195724,\n                \"long\": -103.3096601\n            },\n            {\n                \"lat\": 20.54195928,\n                \"long\": -103.30960891\n            },\n            {\n                \"lat\": 20.5419619,\n                \"long\": -103.30954312\n            },\n            {\n                \"lat\": 20.54196985,\n                \"long\": -103.30937861\n            },\n            {\n                \"lat\": 20.54197583,\n                \"long\": -103.30919771\n            },\n            {\n                \"lat\": 20.54201746,\n                \"long\": -103.30902189\n            },\n            {\n                \"lat\": 20.54189514,\n                \"long\": -103.30876043\n            },\n            {\n                \"lat\": 20.54186808,\n                \"long\": -103.30870258\n            },\n            {\n                \"lat\": 20.54121894,\n                \"long\": -103.30731505\n            },\n            {\n                \"lat\": 20.54117825,\n                \"long\": -103.30722809\n            },\n            {\n                \"lat\": 20.54095143,\n                \"long\": -103.30674327\n            },\n            {\n                \"lat\": 20.54080894,\n                \"long\": -103.30597382\n            },\n            {\n                \"lat\": 20.54078561,\n                \"long\": -103.30584782\n            },\n            {\n                \"lat\": 20.54073805,\n                \"long\": -103.30559103\n            },\n            {\n                \"lat\": 20.54068706,\n                \"long\": -103.30535442\n            },\n            {\n                \"lat\": 20.54067565,\n                \"long\": -103.30530149\n            },\n            {\n                \"lat\": 20.54068939,\n                \"long\": -103.30505454\n            },\n            {\n                \"lat\": 20.54069076,\n                \"long\": -103.30502992\n            },\n            {\n                \"lat\": 20.54069842,\n                \"long\": -103.30489213\n            },\n            {\n                \"lat\": 20.54063583,\n                \"long\": -103.30480901\n            },\n            {\n                \"lat\": 20.54054291,\n                \"long\": -103.30468563\n            },\n            {\n                \"lat\": 20.54030587,\n                \"long\": -103.30437088\n            },\n            {\n                \"lat\": 20.54005862,\n                \"long\": -103.3032996\n            },\n            {\n                \"lat\": 20.53989882,\n                \"long\": -103.30218381\n            },\n            {\n                \"lat\": 20.53943415,\n                \"long\": -103.30217537\n            },\n            {\n                \"lat\": 20.53933484,\n                \"long\": -103.3019251\n            },\n            {\n                \"lat\": 20.53949567,\n                \"long\": -103.30166124\n            },\n            {\n                \"lat\": 20.53965581,\n                \"long\": -103.3013985\n            },\n            {\n                \"lat\": 20.53966087,\n                \"long\": -103.30128113\n            },\n            {\n                \"lat\": 20.53966511,\n                \"long\": -103.3011825\n            },\n            {\n                \"lat\": 20.53967069,\n                \"long\": -103.30105305\n            },\n            {\n                \"lat\": 20.53959847,\n                \"long\": -103.30097626\n            },\n            {\n                \"lat\": 20.53957463,\n                \"long\": -103.30095091\n            },\n            {\n                \"lat\": 20.53947857,\n                \"long\": -103.30084876\n            },\n            {\n                \"lat\": 20.53919215,\n                \"long\": -103.30054419\n            },\n            {\n                \"lat\": 20.53901616,\n                \"long\": -103.30015767\n            },\n            {\n                \"lat\": 20.53899888,\n                \"long\": -103.29962498\n            },\n            {\n                \"lat\": 20.53890547,\n                \"long\": -103.29944616\n            },\n            {\n                \"lat\": 20.53852055,\n                \"long\": -103.29870929\n            },\n            {\n                \"lat\": 20.53851631,\n                \"long\": -103.29847518\n            },\n            {\n                \"lat\": 20.53851419,\n                \"long\": -103.298358\n            },\n            {\n                \"lat\": 20.53845711,\n                \"long\": -103.29823492\n            },\n            {\n                \"lat\": 20.53842187,\n                \"long\": -103.29815893\n            },\n            {\n                \"lat\": 20.53825314,\n                \"long\": -103.29779511\n            },\n            {\n                \"lat\": 20.53821965,\n                \"long\": -103.29772289\n            },\n            {\n                \"lat\": 20.53812936,\n                \"long\": -103.29752821\n            },\n            {\n                \"lat\": 20.53802186,\n                \"long\": -103.29732773\n            },\n            {\n                \"lat\": 20.53799956,\n                \"long\": -103.29728615\n            },\n            {\n                \"lat\": 20.53797512,\n                \"long\": -103.29724058\n            },\n            {\n                \"lat\": 20.53788671,\n                \"long\": -103.29707571\n            },\n            {\n                \"lat\": 20.53769083,\n                \"long\": -103.29671044\n            },\n            {\n                \"lat\": 20.53767662,\n                \"long\": -103.29655572\n            },\n            {\n                \"lat\": 20.53766672,\n                \"long\": -103.29644792\n            },\n            {\n                \"lat\": 20.53750531,\n                \"long\": -103.29636453\n            },\n            {\n                \"lat\": 20.53747976,\n                \"long\": -103.29635133\n            },\n            {\n                \"lat\": 20.53738478,\n                \"long\": -103.29630225\n            },\n            {\n                \"lat\": 20.53709562,\n                \"long\": -103.29615286\n            },\n            {\n                \"lat\": 20.53709786,\n                \"long\": -103.29614643\n            },\n            {\n                \"lat\": 20.53714751,\n                \"long\": -103.29600382\n            },\n            {\n                \"lat\": 20.53718008,\n                \"long\": -103.29591027\n            },\n            {\n                \"lat\": 20.53719286,\n                \"long\": -103.29587358\n            },\n            {\n                \"lat\": 20.53715047,\n                \"long\": -103.29585358\n            },\n            {\n                \"lat\": 20.53702231,\n                \"long\": -103.2957931\n            },\n            {\n                \"lat\": 20.53696357,\n                \"long\": -103.29576152\n            },\n            {\n                \"lat\": 20.53693982,\n                \"long\": -103.29575025\n            },\n            {\n                \"lat\": 20.53669193,\n                \"long\": -103.29563252\n            },\n            {\n                \"lat\": 20.53638415,\n                \"long\": -103.29548664\n            },\n            {\n                \"lat\": 20.53652101,\n                \"long\": -103.29515992\n            },\n            {\n                \"lat\": 20.53658937,\n                \"long\": -103.29499695\n            },\n            {\n                \"lat\": 20.53663214,\n                \"long\": -103.29489496\n            },\n            {\n                \"lat\": 20.53663857,\n                \"long\": -103.29487333\n            },\n            {\n                \"lat\": 20.53665362,\n                \"long\": -103.2948227\n            },\n            {\n                \"lat\": 20.53658856,\n                \"long\": -103.29477755\n            }\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/57d00b07b2dc9.png\",\n        \"id\": \"5644ce556aa918ea028b4b67\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5de927dc0007544c098b4577\",\n                        \"is_default\": true,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Tlj_MX_Distritos_1\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": true,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5de9282500075448098b459b\",\n                        \"is_default\": true,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Tlj_MX_Colonias_1\",\n                        \"name\": \"Colonias\",\n                        \"description\": \"Colonias\",\n                        \"preset\": true,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    }\n                ],\n                \"extent\": [\n                    -103.596649785,\n                    20.360408231,\n                    -103.198544508,\n                    20.603946046\n                ],\n                \"guided_module\": false,\n                \"id\": \"5c9b55679650e67d42985e83\",\n                \"location_additional_data\": {},\n                \"name\": \"mx.tlajomulco\",\n                \"type\": \"city\",\n                \"visible_name\": \"Tlajomulco\",\n                \"is_main\": true\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"6638d0af20fe70f2010f8164\",\n                \"name\": \"Prueba 750\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba Tlajo\",\n                \"position\": {},\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"mx.tlajomulco\",\n        \"key_name\": \"Tlajomulco de Zúñiga, Jal., México\",\n        \"locales\": [\n            \"es_MX\"\n        ],\n        \"name\": \"Tlajomulco\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17717\",\n                \"options\": [\n                    \"ios\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771a\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771c\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17718\",\n                \"options\": [\n                    \"android\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771d\",\n                \"options\": [\n                    \"facebook\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771e\",\n                \"options\": [\n                    \"twitter\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17719\",\n                \"options\": [\n                    \"inperson\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771b\",\n                \"options\": [\n                    \"inperson\",\n                    \"email\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17720\",\n                \"options\": []\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17721\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17722\",\n                \"options\": [\n                    \"web_channel\"\n                ]\n            },\n            {\n                \"id\": \"60c09cdccdf34808168b4573\",\n                \"options\": [\n                    \"android\"\n                ]\n            }\n        ],\n        \"lat\": 20.4736255,\n        \"long\": -103.4478973,\n        \"tags\": [\n            {\n                \"name\": \"Cultura\",\n                \"color\": \"#000000\",\n                \"id\": \"Cultura\"\n            },\n            {\n                \"name\": \"Convocatorias\",\n                \"color\": \"#000000\",\n                \"id\": \"Convocatorias\"\n            },\n            {\n                \"name\": \"General\",\n                \"color\": \"#000000\",\n                \"id\": \"General\"\n            }\n        ],\n        \"third_emails\": [\n            \"comentarios.tlajoapp@mejoratuciudad.org\"\n        ],\n        \"timezone\": \"America/Mexico_City\",\n        \"typologies\": [\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c12\",\n                \"color\": \"#0b8d12\",\n                \"description_legend\": \"Ej: Luminaria fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                \"visible_name\": \"Reporte\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            {\n                \"id\": \"5f2834bd1bc94bb3018b4577\",\n                \"color\": \"#eecccc\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 2,\n                \"public\": true,\n                \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                \"visible_name\": \"Inspección\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            {\n                \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                \"color\": \"#ecec29\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 3,\n                \"public\": true,\n                \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                \"visible_name\": \"Denuncia\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            {\n                \"id\": \"5fbbe0ca2d04ef7a048b457c\",\n                \"color\": \"#2d9dfa\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 4,\n                \"public\": true,\n                \"typology_description\": \"Necesito asesoría en un trámite\",\n                \"visible_name\": \"Asesoría\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            {\n                \"id\": \"6058e5585205ad07038b4568\",\n                \"color\": \"#fed049\",\n                \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 5,\n                \"public\": true,\n                \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                \"visible_name\": \"Inscripción\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            }\n        ],\n        \"typology_nodes\": [\n            {\n                \"id\": \"651a375298e2752898061092\",\n                \"order\": -1,\n                \"typology\": {\n                    \"id\": \"651a36b9921b21b108013002\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 30,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología de prueba\",\n                    \"visible_name\": \"Tramite QA\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"603d15df431c5aee0a8b4578\",\n                \"color\": \"#eb5e0b\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Datos Insuficientes\"\n            },\n            {\n                \"id\": \"5fbbe6a799045771058b4567\",\n                \"color\": \"#2a93ed\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resolución Administrativa\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c68\",\n                \"color\": \"#d5d23b\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"5f2835177cbbbdbd018b4567\",\n                \"color\": \"#63d423\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Inspección\"\n            },\n            {\n                \"id\": \"5fbbe129b82eb242048b457d\",\n                \"color\": \"#ffd707\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"5fbbe0ca2d04ef7a048b457c\",\n                    \"color\": \"#2d9dfa\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Necesito asesoría en un trámite\",\n                    \"visible_name\": \"Asesoría\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"5fbbe51748f572bf048b4579\",\n                \"color\": \"#ffe607\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"6058e715c5b80f6a028b4596\",\n                \"color\": \"#fed049\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"62461a20c2fe4d1a198b4589\",\n                \"color\": \"#ffc107\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Admitido\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c69\",\n                \"color\": \"#4d8fd2\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En Ejecución\"\n            },\n            {\n                \"id\": \"5f2836157cbbbdcb018b4568\",\n                \"color\": \"#c219e0\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Visita\"\n            },\n            {\n                \"id\": \"5fbbe15bb82eb23f048b45a0\",\n                \"color\": \"#1d83db\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"5fbbe0ca2d04ef7a048b457c\",\n                    \"color\": \"#2d9dfa\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Necesito asesoría en un trámite\",\n                    \"visible_name\": \"Asesoría\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"5fbbe56c99045769058b4594\",\n                \"color\": \"#2868e3\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Investigación\"\n            },\n            {\n                \"id\": \"6058e7674420ab9a028b456f\",\n                \"color\": \"#f48b29\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Análisis\"\n            },\n            {\n                \"id\": \"62461a34dc539f11198b4569\",\n                \"color\": \"#e91e63\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Auditoría\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c6a\",\n                \"color\": \"#0277BD\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Solucionado\"\n            },\n            {\n                \"id\": \"5f2837d1119a47dc018b4586\",\n                \"color\": \"#855454\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Visita Planificada\"\n            },\n            {\n                \"id\": \"5fbbe1bd48f572bd048b4576\",\n                \"color\": \"#1a8ced\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"5fbbe0ca2d04ef7a048b457c\",\n                    \"color\": \"#2d9dfa\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Necesito asesoría en un trámite\",\n                    \"visible_name\": \"Asesoría\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"5fbbe5919ed7a6d0048b457e\",\n                \"color\": \"#3294e8\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Averiguación\"\n            },\n            {\n                \"id\": \"6058e8ec5205ad34038b4567\",\n                \"color\": \"#456268\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificar Ejecución\"\n            },\n            {\n                \"id\": \"62461a58dc539f08198b4598\",\n                \"color\": \"#b0451a\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Asignación de área\"\n            },\n            {\n                \"id\": \"5c759378df4463da068b4567\",\n                \"color\": \"#93d77d\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"5f2838d1119a47e6018b4567\",\n                \"color\": \"#635959\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Citatorio Planificado\"\n            },\n            {\n                \"id\": \"5fbbe20a9904576d058b457d\",\n                \"color\": \"#a542c9\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"5fbbe0ca2d04ef7a048b457c\",\n                    \"color\": \"#2d9dfa\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Necesito asesoría en un trámite\",\n                    \"visible_name\": \"Asesoría\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Solucionado\"\n            },\n            {\n                \"id\": \"5fbbe5d2db20ff87058b4584\",\n                \"color\": \"#9533b7\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Favorable\"\n            },\n            {\n                \"id\": \"6058e91e4420aba4028b456c\",\n                \"color\": \"#456268\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificado por Contingencias\"\n            },\n            {\n                \"id\": \"62461a7194f3b5b0188b4588\",\n                \"color\": \"#c7c5c5\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Retornado\"\n            },\n            {\n                \"id\": \"5c7594d38aa30753078b4580\",\n                \"color\": \"#c979cd\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Validar Ejecución\"\n            },\n            {\n                \"id\": \"5f2839022ebc5ec8018b456b\",\n                \"color\": \"#635959\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Apercibimiento Planificado\"\n            },\n            {\n                \"id\": \"5fbbe2592d04ef7c048b458a\",\n                \"color\": \"#ed17d8\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"5fbbe0ca2d04ef7a048b457c\",\n                    \"color\": \"#2d9dfa\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Necesito asesoría en un trámite\",\n                    \"visible_name\": \"Asesoría\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Cancelado\"\n            },\n            {\n                \"id\": \"5fbbe602db20ff87058b4585\",\n                \"color\": \"#9533b7\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"No Favorable\"\n            },\n            {\n                \"id\": \"6058e94cb3cb2b43038b4567\",\n                \"color\": \"#008891\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En Ejecución\"\n            },\n            {\n                \"id\": \"62461a9894f3b5b0188b4589\",\n                \"color\": \"#0c8418\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Notificado resolución\"\n            },\n            {\n                \"id\": \"5c7595c4df4463eb068b4568\",\n                \"color\": \"#bd2bda\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Cancelado\"\n            },\n            {\n                \"id\": \"5f28391f7cbbbde2018b4571\",\n                \"color\": \"#d96714\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Citatorio\"\n            },\n            {\n                \"id\": \"5fbbe2872d04ef7d048b4592\",\n                \"color\": \"#ed4d4f\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"5fbbe0ca2d04ef7a048b457c\",\n                    \"color\": \"#2d9dfa\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Necesito asesoría en un trámite\",\n                    \"visible_name\": \"Asesoría\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"5fbbe636db20ff88058b458f\",\n                \"color\": \"#9533b7\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"No Procedente\"\n            },\n            {\n                \"id\": \"6058e9a5cf374c7a028b4576\",\n                \"color\": \"#00587a\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Validar Ejecución\"\n            },\n            {\n                \"id\": \"62461adddc539f09198b457f\",\n                \"color\": \"#005dc9\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En prevención\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c6b\",\n                \"color\": \"#2E7D32\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"5f28393f119a47e7018b456a\",\n                \"color\": \"#0392cf\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Apercibimiento\"\n            },\n            {\n                \"id\": \"5fbbe2bddb20ff8b058b4568\",\n                \"color\": \"#61e32f\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"5fbbe0ca2d04ef7a048b457c\",\n                    \"color\": \"#2d9dfa\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Necesito asesoría en un trámite\",\n                    \"visible_name\": \"Asesoría\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"5fbbe66edb20ff8c058b4581\",\n                \"color\": \"#2a93ed\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"6058e9bb3786608c028b4567\",\n                \"color\": \"#0f3057\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"62461af394f3b5a3188b4598\",\n                \"color\": \"#00780c\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Vencido\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c6c\",\n                \"color\": \"#d22d1d\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"5fc421ebdb20ffd50a8b456a\",\n                \"color\": \"#a28c2a\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Dictamen\"\n            },\n            {\n                \"id\": \"60099704108053ae068b4578\",\n                \"color\": \"#337ab7\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"5fbbe0ca2d04ef7a048b457c\",\n                    \"color\": \"#2d9dfa\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Necesito asesoría en un trámite\",\n                    \"visible_name\": \"Asesoría\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En Ejecución\"\n            },\n            {\n                \"id\": \"5fbbe6de99045771058b4568\",\n                \"color\": \"#000000\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Solucionado\"\n            },\n            {\n                \"id\": \"6058ed5937866093028b4568\",\n                \"color\": \"#22bc10\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Solucionado\"\n            },\n            {\n                \"id\": \"62461b0894f3b5b0188b458a\",\n                \"color\": \"#0093ff\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Desechado\"\n            },\n            {\n                \"id\": \"5c759694df4463ec068b458b\",\n                \"color\": \"#4866ac\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificar Ejecución\"\n            },\n            {\n                \"id\": \"5f283ae51bc94bfc018b4567\",\n                \"color\": \"#62bfaf\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Requisitos Completos\"\n            },\n            {\n                \"id\": \"60099a2adcc88c80058b45ad\",\n                \"color\": \"#786666\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"5fbbe0ca2d04ef7a048b457c\",\n                    \"color\": \"#2d9dfa\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Necesito asesoría en un trámite\",\n                    \"visible_name\": \"Asesoría\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificar Ejecución\"\n            },\n            {\n                \"id\": \"5fbbe7192d04ef7e048b4582\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Cancelado\"\n            },\n            {\n                \"id\": \"6058ed7fcf374c81028b4567\",\n                \"color\": \"#0c8b3c\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"62461b2383f01017198b4591\",\n                \"color\": \"#ba9c9c\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Entrega de resolutivo\"\n            },\n            {\n                \"id\": \"5c7596ca8aa30766078b457a\",\n                \"color\": \"#7c3e8e\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificado por Contingencias\"\n            },\n            {\n                \"id\": \"5fbbe7469ed7a6ce048b4597\",\n                \"color\": \"#eb292b\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"6058edcacf374c86028b4567\",\n                \"color\": \"#f63636\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Cancelado\"\n            },\n            {\n                \"id\": \"62461b3d94f3b59f188b4597\",\n                \"color\": \"#6b5b63\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Revaloración\"\n            },\n            {\n                \"id\": \"5c759667df4463eb068b45d8\",\n                \"color\": \"#afb628\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificar Carga de Pipa\"\n            },\n            {\n                \"id\": \"5f283b38119a47f9018b4567\",\n                \"color\": \"#2d0d66\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Clausura/Multa\"\n            },\n            {\n                \"id\": \"5fbbe7699ed7a6d1048b4586\",\n                \"color\": \"#5fcf33\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"6058ede837866097028b4567\",\n                \"color\": \"#dd1a1a\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"6058e5585205ad07038b4568\",\n                    \"color\": \"#fed049\",\n                    \"description_legend\": \"Inscripción a un curso, iniciativa...\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de participación en un programa, taller o intervención\",\n                    \"visible_name\": \"Inscripción\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"62461b6e648cf00e198b45aa\",\n                \"color\": \"#945454\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Finalizado\"\n            },\n            {\n                \"id\": \"5c75962d71044b2b078b456f\",\n                \"color\": \"#744848\",\n                \"order\": 12,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Carga de Pipa\"\n            },\n            {\n                \"id\": \"5f283be47cbbbd08028b4567\",\n                \"color\": \"#e85757\",\n                \"order\": 12,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Multa\"\n            },\n            {\n                \"id\": \"62461b81264e80ad1b8b457a\",\n                \"color\": \"#5f6112\",\n                \"order\": 12,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Archivo\"\n            },\n            {\n                \"id\": \"5c75948671044b27078b4572\",\n                \"color\": \"#70dd78\",\n                \"order\": 13,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Entrega de Pipa\"\n            },\n            {\n                \"id\": \"5f6c8237d9e3cea3078b457c\",\n                \"color\": \"#c09090\",\n                \"order\": 13,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"5fe1204a9f890130028b458b\",\n                \"color\": \"#ef6c00\",\n                \"order\": 13,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Determinación\"\n            },\n            {\n                \"id\": \"624b0f86dc539fcc198b45a8\",\n                \"color\": \"#10e364\",\n                \"order\": 13,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Notificado\"\n            },\n            {\n                \"id\": \"5c75944d8aa3075c078b4588\",\n                \"color\": \"#d57e46\",\n                \"order\": 14,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"5fb80a5cdb20ff44048b4567\",\n                \"color\": \"#0c8b3c\",\n                \"order\": 14,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"5fe12079acba68e9018b4572\",\n                \"color\": \"#e91e63\",\n                \"order\": 14,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificar Averiguación\"\n            },\n            {\n                \"id\": \"624b0fb8264e808b1c8b4578\",\n                \"color\": \"#0db5a2\",\n                \"order\": 14,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Emisión de resolución\"\n            },\n            {\n                \"id\": \"5f8491d8eab928cb038b4584\",\n                \"color\": \"#ed1515\",\n                \"order\": 15,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"No Válido\"\n            },\n            {\n                \"id\": \"5fb80a70db20ff41048b457d\",\n                \"color\": \"#dd1a1a\",\n                \"order\": 15,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"6272d6997a258a080a8b457e\",\n                \"color\": \"#0853c4\",\n                \"order\": 15,\n                \"typology\": {\n                    \"id\": \"5fbbe4d82d04ef7f048b4579\",\n                    \"color\": \"#ecec29\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero denuncia una acción o una omisión\",\n                    \"visible_name\": \"Denuncia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Revisión\"\n            },\n            {\n                \"id\": \"624b19abdc539fd7198b4568\",\n                \"color\": \"#121cff\",\n                \"order\": 15,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Orden de pago\"\n            },\n            {\n                \"id\": \"5f91f4569bd4a724028b4580\",\n                \"color\": \"#279158\",\n                \"order\": 16,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Taller Externo\"\n            },\n            {\n                \"id\": \"5fb80a982d04ef42038b4567\",\n                \"color\": \"#22bc10\",\n                \"order\": 16,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Solucionado\"\n            },\n            {\n                \"id\": \"624b1d09648cf0e3198b459b\",\n                \"color\": \"#f71e1e\",\n                \"order\": 16,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Espera de pago\"\n            },\n            {\n                \"id\": \"5f91f59c79f3252c038b456c\",\n                \"color\": \"#0f7538\",\n                \"order\": 17,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Entrega de Unidad\"\n            },\n            {\n                \"id\": \"5fb80aaf2d04ef3f038b4579\",\n                \"color\": \"#f63636\",\n                \"order\": 17,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Cancelado\"\n            },\n            {\n                \"id\": \"6360036db338244b408b4589\",\n                \"color\": \"#176e55\",\n                \"order\": 17,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Acuse\"\n            },\n            {\n                \"id\": \"5f93251779f32597068b4571\",\n                \"color\": \"#9c5151\",\n                \"order\": 18,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Taller Interno\"\n            },\n            {\n                \"id\": \"636002ff7a258a75468b4583\",\n                \"color\": \"#0e3ce9\",\n                \"order\": 18,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Comprobante de pago\"\n            },\n            {\n                \"id\": \"5f9b3401338c43bb0b8b456b\",\n                \"color\": \"#687bbd\",\n                \"order\": 19,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Válido\"\n            },\n            {\n                \"id\": \"6360039e0b52f5a5268b4578\",\n                \"color\": \"#007b57\",\n                \"order\": 19,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Notificado orden de pago\"\n            },\n            {\n                \"id\": \"621d3465648cf034108b4581\",\n                \"color\": \"#25b50d\",\n                \"order\": 20,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Apercibimiento\"\n            },\n            {\n                \"id\": \"5f283c1f1bc94b06028b4567\",\n                \"color\": \"#fdfdfd\",\n                \"order\": 20,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Incompetente\"\n            },\n            {\n                \"id\": \"636003dfce6be4a5268b4567\",\n                \"color\": \"#4e7b34\",\n                \"order\": 20,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"6232126d648cf001158b456d\",\n                \"color\": \"#1b118f\",\n                \"order\": 21,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c12\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: Luminaria fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento o servicio de la ciudad\",\n                    \"visible_name\": \"Reporte\",\n                    \"with_authorized_users\": true,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Validar Cancelación\"\n            },\n            {\n                \"id\": \"5f283ac87cbbbdf8018b4567\",\n                \"color\": \"#fdfdfd\",\n                \"order\": 21,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Requisitos Completos\"\n            },\n            {\n                \"id\": \"636017adb332dd47408b458b\",\n                \"color\": \"#ff0808\",\n                \"order\": 21,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"5f283b1c7cbbbdff018b456d\",\n                \"color\": \"#fdfdfd\",\n                \"order\": 22,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Clausura/Multa\"\n            },\n            {\n                \"id\": \"63a0df7cb3382455508b4582\",\n                \"color\": \"#e3cece\",\n                \"order\": 22,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Supervisión\"\n            },\n            {\n                \"id\": \"5f283bd22ebc5ede018b4567\",\n                \"color\": \"#fdfdfd\",\n                \"order\": 23,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Multa\"\n            },\n            {\n                \"id\": \"63a0dfa20b52f535368b4573\",\n                \"color\": \"#f77777\",\n                \"order\": 23,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Revisión\"\n            },\n            {\n                \"id\": \"5f283c091bc94b03028b4568\",\n                \"color\": \"#842020\",\n                \"order\": 24,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Incompetente\"\n            },\n            {\n                \"id\": \"63a0e28cb332dd3b508b456d\",\n                \"color\": \"#10489b\",\n                \"order\": 24,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Firma\"\n            },\n            {\n                \"id\": \"623222e394f3b59e148b4567\",\n                \"color\": \"#3a2300\",\n                \"order\": 25,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Validar Ejecución\"\n            },\n            {\n                \"id\": \"63c6bea7ce6be41e6a8b456c\",\n                \"color\": \"#13b797\",\n                \"order\": 25,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Validación\"\n            },\n            {\n                \"id\": \"623222ac94f3b59c148b4573\",\n                \"color\": \"#121e05\",\n                \"order\": 26,\n                \"typology\": {\n                    \"id\": \"5f2834bd1bc94bb3018b4577\",\n                    \"color\": \"#eecccc\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": true,\n                    \"typology_description\": \"Solicitud de inspección ante una situación irregular\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Validar Cancelación\"\n            },\n            {\n                \"id\": \"645526c0a2078c39d4085468\",\n                \"color\": \"#d19709\",\n                \"order\": 27,\n                \"typology\": {\n                    \"id\": \"624619b9c2fe4d18198b458c\",\n                    \"color\": \"#8f99e5\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png\",\n                    \"location_type\": \"none\",\n                    \"order\": 6,\n                    \"public\": false,\n                    \"typology_description\": \"Tipología enfocada en los trámites y servicios del municipio de Tlajomulco\",\n                    \"visible_name\": \"Trámites\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Check\"\n            }\n        ],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": true,\n            \"requests_process\": true,\n            \"requests_comments\": true,\n            \"requests_worknotes\": true,\n            \"requests_reiterations\": true,\n            \"requests_complaints\": true,\n            \"user_evaluation\": true,\n            \"service_survey\": false,\n            \"alerts\": true,\n            \"inventory\": false,\n            \"backoffice_admin\": true,\n            \"app_configuration\": true,\n            \"notifications\": true,\n            \"planned_requests\": true,\n            \"planning\": true,\n            \"users\": true,\n            \"predetermined_response\": true,\n            \"predetermined_response_external_source\": true,\n            \"company_enquiry\": true,\n            \"layer\": true,\n            \"jurisdiction_element\": false,\n            \"webhook\": true,\n            \"user_guide\": true,\n            \"worklog\": false,\n            \"calendar\": false\n        },\n        \"app_urls\": {\n            \"web_url\": \"https://mapa.mejoratuciudad.org\",\n            \"google_play_manager\": \"https://play.google.com/store/apps/details?id=com.radmas.iycp.production\",\n            \"google_play_citizens\": \"https://play.google.com/store/apps/details?id=com.radmas.iyc.tlajomulco.mx\",\n            \"app_store\": \"https://itunes.apple.com/es/app/tlajoapp/id1062533937\"\n        }\n    },\n    {\n        \"only_registered_users\": true,\n        \"max_upload_files\": 5,\n        \"automatic_typology\": false,\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5d9ee7c9de2efef4018b4578\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Zap_MX__Base_1\",\n                \"name\": \"Ciudad\",\n                \"description\": \"Ciudad\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5de926f80007544c098b4568\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Zap_MX_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": true,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5e98156d272bfd04038b45de\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Zap_MX_Colonias_160420\",\n                \"name\": \"Colonias\",\n                \"description\": \"Colonias\",\n                \"preset\": true,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            }\n        ],\n        \"accepted_id_documents\": [],\n        \"buttons\": [],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5cb6e8833f960e8b457a\",\n                \"name\": \"Gestores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5d2101394ad80d8b45f5\",\n                \"name\": \"Técnicos Avisos\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"5e2f5d97e8833f980e8b456a\",\n                \"name\": \"Atención Ciudadana 02\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e21fee15c120d8b457b\",\n                \"name\": \"Solicitantes Internos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f61effee15c140d8b456b\",\n                \"name\": \"Gerentes de la ciudad\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e5f8bf15bc890d2048b45a9\",\n                \"name\": \"Gestores Inspecciones\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e5f8c09c0faacdb048b459e\",\n                \"name\": \"Técnicos Inspecciones\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e5f8c5e3b5399d7048b45ee\",\n                \"name\": \"Gestores de la plataforma\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e73bd8502be88c10f8b4568\",\n                \"name\": \"Comunicación\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e8bdba402be8882258b4584\",\n                \"name\": \"Supervisores Inspecciones\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e8f476a02be8840288b4570\",\n                \"name\": \"I Horarios Normales\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e8f4785ce38c478278b45be\",\n                \"name\": \"I Horarios Especiales\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e94d7c102be88f82b8b4575\",\n                \"name\": \"Supervisores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116bf2c69819736098b4588\",\n                \"name\": \"Gestores Avisos Empresa\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116d0d45fc66aa7088b4586\",\n                \"name\": \"Coordinación Servicios Municipales\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"6116e3b597366e68098b4568\",\n                \"name\": \"Oficina Digital\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66f482359ae3acf15d059a26\",\n                \"name\": \"rtrt\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            }\n        ],\n        \"company_emails\": [\n            \"comentarios.zapopan@mejoratuciudad.org\"\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": 20.996223,\n                \"long\": -103.30642734\n            },\n            {\n                \"lat\": 20.58476254,\n                \"long\": -103.66082962\n            }\n        ],\n        \"geo_perimeter\": [\n            {\n                \"lat\": 20.88528669,\n                \"long\": -103.34458989\n            },\n            {\n                \"lat\": 20.88497896,\n                \"long\": -103.3432484\n            },\n            {\n                \"lat\": 20.88389829,\n                \"long\": -103.34205867\n            },\n            {\n                \"lat\": 20.88169593,\n                \"long\": -103.34157693\n            },\n            {\n                \"lat\": 20.87990256,\n                \"long\": -103.34039507\n            },\n            {\n                \"lat\": 20.87762178,\n                \"long\": -103.33795384\n            },\n            {\n                \"lat\": 20.87500307,\n                \"long\": -103.33741351\n            },\n            {\n                \"lat\": 20.87273393,\n                \"long\": -103.33617376\n            },\n            {\n                \"lat\": 20.86945392,\n                \"long\": -103.3348187\n            },\n            {\n                \"lat\": 20.86738788,\n                \"long\": -103.33356628\n            },\n            {\n                \"lat\": 20.8666004,\n                \"long\": -103.33199412\n            },\n            {\n                \"lat\": 20.8654578,\n                \"long\": -103.33055237\n            },\n            {\n                \"lat\": 20.86468511,\n                \"long\": -103.33049767\n            },\n            {\n                \"lat\": 20.86285203,\n                \"long\": -103.33133993\n            },\n            {\n                \"lat\": 20.86054813,\n                \"long\": -103.33262998\n            },\n            {\n                \"lat\": 20.85835192,\n                \"long\": -103.33278066\n            },\n            {\n                \"lat\": 20.85584705,\n                \"long\": -103.33173338\n            },\n            {\n                \"lat\": 20.85416871,\n                \"long\": -103.33017118\n            },\n            {\n                \"lat\": 20.85242355,\n                \"long\": -103.32785103\n            },\n            {\n                \"lat\": 20.85080704,\n                \"long\": -103.32654114\n            },\n            {\n                \"lat\": 20.84901915,\n                \"long\": -103.32592866\n            },\n            {\n                \"lat\": 20.84705433,\n                \"long\": -103.32544459\n            },\n            {\n                \"lat\": 20.84429761,\n                \"long\": -103.32605011\n            },\n            {\n                \"lat\": 20.84163925,\n                \"long\": -103.32753364\n            },\n            {\n                \"lat\": 20.83886395,\n                \"long\": -103.32920807\n            },\n            {\n                \"lat\": 20.83738103,\n                \"long\": -103.3294141\n            },\n            {\n                \"lat\": 20.83607999,\n                \"long\": -103.32999745\n            },\n            {\n                \"lat\": 20.83526146,\n                \"long\": -103.33133411\n            },\n            {\n                \"lat\": 20.83426106,\n                \"long\": -103.33229343\n            },\n            {\n                \"lat\": 20.83242795,\n                \"long\": -103.33313547\n            },\n            {\n                \"lat\": 20.83088195,\n                \"long\": -103.33296284\n            },\n            {\n                \"lat\": 20.82811604,\n                \"long\": -103.33248613\n            },\n            {\n                \"lat\": 20.82692269,\n                \"long\": -103.33193032\n            },\n            {\n                \"lat\": 20.82590013,\n                \"long\": -103.33061403\n            },\n            {\n                \"lat\": 20.82464923,\n                \"long\": -103.33024852\n            },\n            {\n                \"lat\": 20.82286751,\n                \"long\": -103.33026816\n            },\n            {\n                \"lat\": 20.82166984,\n                \"long\": -103.32926993\n            },\n            {\n                \"lat\": 20.82028228,\n                \"long\": -103.32707274\n            },\n            {\n                \"lat\": 20.81842822,\n                \"long\": -103.32576573\n            },\n            {\n                \"lat\": 20.81813188,\n                \"long\": -103.32583221\n            },\n            {\n                \"lat\": 20.81707581,\n                \"long\": -103.32717135\n            },\n            {\n                \"lat\": 20.81625421,\n                \"long\": -103.32819182\n            },\n            {\n                \"lat\": 20.81519689,\n                \"long\": -103.32940451\n            },\n            {\n                \"lat\": 20.81229967,\n                \"long\": -103.33076387\n            },\n            {\n                \"lat\": 20.80933814,\n                \"long\": -103.3316182\n            },\n            {\n                \"lat\": 20.80697112,\n                \"long\": -103.33252917\n            },\n            {\n                \"lat\": 20.8048441,\n                \"long\": -103.3336903\n            },\n            {\n                \"lat\": 20.80294606,\n                \"long\": -103.33396398\n            },\n            {\n                \"lat\": 20.80207689,\n                \"long\": -103.33389642\n            },\n            {\n                \"lat\": 20.80176888,\n                \"long\": -103.33276208\n            },\n            {\n                \"lat\": 20.80158088,\n                \"long\": -103.33175285\n            },\n            {\n                \"lat\": 20.80190707,\n                \"long\": -103.32865214\n            },\n            {\n                \"lat\": 20.80160335,\n                \"long\": -103.32796022\n            },\n            {\n                \"lat\": 20.80005488,\n                \"long\": -103.32753485\n            },\n            {\n                \"lat\": 20.79702102,\n                \"long\": -103.32706267\n            },\n            {\n                \"lat\": 20.79624278,\n                \"long\": -103.32643921\n            },\n            {\n                \"lat\": 20.79563407,\n                \"long\": -103.32492903\n            },\n            {\n                \"lat\": 20.79472407,\n                \"long\": -103.32297978\n            },\n            {\n                \"lat\": 20.7936464,\n                \"long\": -103.32210685\n            },\n            {\n                \"lat\": 20.79180282,\n                \"long\": -103.32187443\n            },\n            {\n                \"lat\": 20.79061995,\n                \"long\": -103.32239312\n            },\n            {\n                \"lat\": 20.78962389,\n                \"long\": -103.32379456\n            },\n            {\n                \"lat\": 20.78773512,\n                \"long\": -103.32501623\n            },\n            {\n                \"lat\": 20.78521725,\n                \"long\": -103.32472221\n            },\n            {\n                \"lat\": 20.7836063,\n                \"long\": -103.3239816\n            },\n            {\n                \"lat\": 20.78247047,\n                \"long\": -103.32323576\n            },\n            {\n                \"lat\": 20.78215808,\n                \"long\": -103.32165926\n            },\n            {\n                \"lat\": 20.78243525,\n                \"long\": -103.31963386\n            },\n            {\n                \"lat\": 20.78270806,\n                \"long\": -103.31716611\n            },\n            {\n                \"lat\": 20.7824488,\n                \"long\": -103.31495705\n            },\n            {\n                \"lat\": 20.78127691,\n                \"long\": -103.31054624\n            },\n            {\n                \"lat\": 20.78042242,\n                \"long\": -103.30821746\n            },\n            {\n                \"lat\": 20.77951911,\n                \"long\": -103.30696359\n            },\n            {\n                \"lat\": 20.77868515,\n                \"long\": -103.3067201\n            },\n            {\n                \"lat\": 20.77660338,\n                \"long\": -103.30642734\n            },\n            {\n                \"lat\": 20.77470476,\n                \"long\": -103.3066381\n            },\n            {\n                \"lat\": 20.77108072,\n                \"long\": -103.30655211\n            },\n            {\n                \"lat\": 20.76728659,\n                \"long\": -103.30728951\n            },\n            {\n                \"lat\": 20.76514979,\n                \"long\": -103.30743969\n            },\n            {\n                \"lat\": 20.76245377,\n                \"long\": -103.30899175\n            },\n            {\n                \"lat\": 20.76243339,\n                \"long\": -103.30904969\n            },\n            {\n                \"lat\": 20.76025024,\n                \"long\": -103.31052731\n            },\n            {\n                \"lat\": 20.75889792,\n                \"long\": -103.31193248\n            },\n            {\n                \"lat\": 20.75703743,\n                \"long\": -103.31398587\n            },\n            {\n                \"lat\": 20.75561702,\n                \"long\": -103.31450712\n            },\n            {\n                \"lat\": 20.75406667,\n                \"long\": -103.31389245\n            },\n            {\n                \"lat\": 20.75209092,\n                \"long\": -103.31241056\n            },\n            {\n                \"lat\": 20.75060343,\n                \"long\": -103.31384795\n            },\n            {\n                \"lat\": 20.74996876,\n                \"long\": -103.31555769\n            },\n            {\n                \"lat\": 20.74887027,\n                \"long\": -103.3172608\n            },\n            {\n                \"lat\": 20.74823429,\n                \"long\": -103.31901126\n            },\n            {\n                \"lat\": 20.74733236,\n                \"long\": -103.32006621\n            },\n            {\n                \"lat\": 20.74734424,\n                \"long\": -103.32171015\n            },\n            {\n                \"lat\": 20.74453596,\n                \"long\": -103.32638171\n            },\n            {\n                \"lat\": 20.74388539,\n                \"long\": -103.32647107\n            },\n            {\n                \"lat\": 20.74333876,\n                \"long\": -103.32702897\n            },\n            {\n                \"lat\": 20.74262263,\n                \"long\": -103.32718949\n            },\n            {\n                \"lat\": 20.74131259,\n                \"long\": -103.3264524\n            },\n            {\n                \"lat\": 20.73998754,\n                \"long\": -103.32644349\n            },\n            {\n                \"lat\": 20.73917232,\n                \"long\": -103.32614721\n            },\n            {\n                \"lat\": 20.73835306,\n                \"long\": -103.32592139\n            },\n            {\n                \"lat\": 20.73753209,\n                \"long\": -103.32551945\n            },\n            {\n                \"lat\": 20.7371351,\n                \"long\": -103.32557079\n            },\n            {\n                \"lat\": 20.73672152,\n                \"long\": -103.32618591\n            },\n            {\n                \"lat\": 20.7364156,\n                \"long\": -103.32651805\n            },\n            {\n                \"lat\": 20.73617305,\n                \"long\": -103.32656788\n            },\n            {\n                \"lat\": 20.73592558,\n                \"long\": -103.32658609\n            },\n            {\n                \"lat\": 20.73565884,\n                \"long\": -103.32662001\n            },\n            {\n                \"lat\": 20.73554286,\n                \"long\": -103.32667809\n            },\n            {\n                \"lat\": 20.73543134,\n                \"long\": -103.32669481\n            },\n            {\n                \"lat\": 20.73531536,\n                \"long\": -103.32675289\n            },\n            {\n                \"lat\": 20.73525795,\n                \"long\": -103.32684131\n            },\n            {\n                \"lat\": 20.7351583,\n                \"long\": -103.32707996\n            },\n            {\n                \"lat\": 20.73509729,\n                \"long\": -103.32729752\n            },\n            {\n                \"lat\": 20.73507027,\n                \"long\": -103.32751471\n            },\n            {\n                \"lat\": 20.73508947,\n                \"long\": -103.32754441\n            },\n            {\n                \"lat\": 20.73505679,\n                \"long\": -103.327578\n            },\n            {\n                \"lat\": 20.73480812,\n                \"long\": -103.32812085\n            },\n            {\n                \"lat\": 20.73448011,\n                \"long\": -103.32845321\n            },\n            {\n                \"lat\": 20.73397395,\n                \"long\": -103.32881454\n            },\n            {\n                \"lat\": 20.73307833,\n                \"long\": -103.32902922\n            },\n            {\n                \"lat\": 20.73281523,\n                \"long\": -103.32899938\n            },\n            {\n                \"lat\": 20.73252456,\n                \"long\": -103.32898338\n            },\n            {\n                \"lat\": 20.73231759,\n                \"long\": -103.32903757\n            },\n            {\n                \"lat\": 20.73207177,\n                \"long\": -103.32916222\n            },\n            {\n                \"lat\": 20.73197234,\n                \"long\": -103.32923081\n            },\n            {\n                \"lat\": 20.73188679,\n                \"long\": -103.3292892\n            },\n            {\n                \"lat\": 20.73187644,\n                \"long\": -103.32929136\n            },\n            {\n                \"lat\": 20.73140929,\n                \"long\": -103.32955574\n            },\n            {\n                \"lat\": 20.7309751,\n                \"long\": -103.32982467\n            },\n            {\n                \"lat\": 20.73016344,\n                \"long\": -103.32990455\n            },\n            {\n                \"lat\": 20.73005737,\n                \"long\": -103.32986823\n            },\n            {\n                \"lat\": 20.72997061,\n                \"long\": -103.32992352\n            },\n            {\n                \"lat\": 20.72990255,\n                \"long\": -103.32993022\n            },\n            {\n                \"lat\": 20.72951022,\n                \"long\": -103.33006981\n            },\n            {\n                \"lat\": 20.72940588,\n                \"long\": -103.33021807\n            },\n            {\n                \"lat\": 20.72931302,\n                \"long\": -103.33029264\n            },\n            {\n                \"lat\": 20.72916523,\n                \"long\": -103.33057549\n            },\n            {\n                \"lat\": 20.72902457,\n                \"long\": -103.33075443\n            },\n            {\n                \"lat\": 20.72893671,\n                \"long\": -103.33092414\n            },\n            {\n                \"lat\": 20.72886288,\n                \"long\": -103.3309457\n            },\n            {\n                \"lat\": 20.72865747,\n                \"long\": -103.33107863\n            },\n            {\n                \"lat\": 20.72851131,\n                \"long\": -103.33123934\n            },\n            {\n                \"lat\": 20.72835787,\n                \"long\": -103.33134728\n            },\n            {\n                \"lat\": 20.72827176,\n                \"long\": -103.33158043\n            },\n            {\n                \"lat\": 20.72823653,\n                \"long\": -103.33172359\n            },\n            {\n                \"lat\": 20.7282856,\n                \"long\": -103.3321687\n            },\n            {\n                \"lat\": 20.72822999,\n                \"long\": -103.33230777\n            },\n            {\n                \"lat\": 20.72803568,\n                \"long\": -103.33248509\n            },\n            {\n                \"lat\": 20.72794337,\n                \"long\": -103.3326159\n            },\n            {\n                \"lat\": 20.72782623,\n                \"long\": -103.33270372\n            },\n            {\n                \"lat\": 20.72777477,\n                \"long\": -103.33285139\n            },\n            {\n                \"lat\": 20.72771396,\n                \"long\": -103.33287369\n            },\n            {\n                \"lat\": 20.72768645,\n                \"long\": -103.3329735\n            },\n            {\n                \"lat\": 20.72769999,\n                \"long\": -103.3331118\n            },\n            {\n                \"lat\": 20.72770154,\n                \"long\": -103.33327187\n            },\n            {\n                \"lat\": 20.72774805,\n                \"long\": -103.33345309\n            },\n            {\n                \"lat\": 20.72781478,\n                \"long\": -103.33362109\n            },\n            {\n                \"lat\": 20.72789312,\n                \"long\": -103.3337284\n            },\n            {\n                \"lat\": 20.72795637,\n                \"long\": -103.3337877\n            },\n            {\n                \"lat\": 20.72815331,\n                \"long\": -103.33434576\n            },\n            {\n                \"lat\": 20.7279342,\n                \"long\": -103.33458364\n            },\n            {\n                \"lat\": 20.72710383,\n                \"long\": -103.3345731\n            },\n            {\n                \"lat\": 20.7266235,\n                \"long\": -103.33489545\n            },\n            {\n                \"lat\": 20.72658395,\n                \"long\": -103.33488945\n            },\n            {\n                \"lat\": 20.72635618,\n                \"long\": -103.33489627\n            },\n            {\n                \"lat\": 20.72616212,\n                \"long\": -103.33502387\n            },\n            {\n                \"lat\": 20.72605848,\n                \"long\": -103.33524566\n            },\n            {\n                \"lat\": 20.72606009,\n                \"long\": -103.33527354\n            },\n            {\n                \"lat\": 20.72600395,\n                \"long\": -103.33531121\n            },\n            {\n                \"lat\": 20.72494835,\n                \"long\": -103.33681416\n            },\n            {\n                \"lat\": 20.72416928,\n                \"long\": -103.33829443\n            },\n            {\n                \"lat\": 20.72377464,\n                \"long\": -103.33936436\n            },\n            {\n                \"lat\": 20.72317298,\n                \"long\": -103.34086317\n            },\n            {\n                \"lat\": 20.72312684,\n                \"long\": -103.34081965\n            },\n            {\n                \"lat\": 20.72310084,\n                \"long\": -103.34089646\n            },\n            {\n                \"lat\": 20.72222426,\n                \"long\": -103.3411557\n            },\n            {\n                \"lat\": 20.72199528,\n                \"long\": -103.34128053\n            },\n            {\n                \"lat\": 20.72197957,\n                \"long\": -103.34136983\n            },\n            {\n                \"lat\": 20.72177789,\n                \"long\": -103.34160444\n            },\n            {\n                \"lat\": 20.72150154,\n                \"long\": -103.34164669\n            },\n            {\n                \"lat\": 20.72105877,\n                \"long\": -103.34165151\n            },\n            {\n                \"lat\": 20.720523,\n                \"long\": -103.34157885\n            },\n            {\n                \"lat\": 20.71993303,\n                \"long\": -103.34162452\n            },\n            {\n                \"lat\": 20.71947805,\n                \"long\": -103.34227703\n            },\n            {\n                \"lat\": 20.71926328,\n                \"long\": -103.34296618\n            },\n            {\n                \"lat\": 20.71888947,\n                \"long\": -103.34315009\n            },\n            {\n                \"lat\": 20.71795123,\n                \"long\": -103.34343502\n            },\n            {\n                \"lat\": 20.71762426,\n                \"long\": -103.3439038\n            },\n            {\n                \"lat\": 20.7171269,\n                \"long\": -103.34405229\n            },\n            {\n                \"lat\": 20.71586739,\n                \"long\": -103.34427864\n            },\n            {\n                \"lat\": 20.71618747,\n                \"long\": -103.34527794\n            },\n            {\n                \"lat\": 20.71616403,\n                \"long\": -103.34561294\n            },\n            {\n                \"lat\": 20.7159466,\n                \"long\": -103.34602738\n            },\n            {\n                \"lat\": 20.71624416,\n                \"long\": -103.34671653\n            },\n            {\n                \"lat\": 20.71716834,\n                \"long\": -103.34735727\n            },\n            {\n                \"lat\": 20.71694972,\n                \"long\": -103.34775376\n            },\n            {\n                \"lat\": 20.7167627,\n                \"long\": -103.34839287\n            },\n            {\n                \"lat\": 20.71667801,\n                \"long\": -103.35001636\n            },\n            {\n                \"lat\": 20.71637505,\n                \"long\": -103.35090955\n            },\n            {\n                \"lat\": 20.71611997,\n                \"long\": -103.35147244\n            },\n            {\n                \"lat\": 20.71557754,\n                \"long\": -103.3523906\n            },\n            {\n                \"lat\": 20.71528679,\n                \"long\": -103.35302468\n            },\n            {\n                \"lat\": 20.71516422,\n                \"long\": -103.35350887\n            },\n            {\n                \"lat\": 20.71532186,\n                \"long\": -103.35464109\n            },\n            {\n                \"lat\": 20.71538981,\n                \"long\": -103.35504174\n            },\n            {\n                \"lat\": 20.71555328,\n                \"long\": -103.35574429\n            },\n            {\n                \"lat\": 20.71557064,\n                \"long\": -103.35606975\n            },\n            {\n                \"lat\": 20.71553864,\n                \"long\": -103.35644876\n            },\n            {\n                \"lat\": 20.71527018,\n                \"long\": -103.35676442\n            },\n            {\n                \"lat\": 20.71459445,\n                \"long\": -103.35763506\n            },\n            {\n                \"lat\": 20.71417995,\n                \"long\": -103.35825295\n            },\n            {\n                \"lat\": 20.71401868,\n                \"long\": -103.35852732\n            },\n            {\n                \"lat\": 20.71374293,\n                \"long\": -103.35949966\n            },\n            {\n                \"lat\": 20.71324735,\n                \"long\": -103.36110671\n            },\n            {\n                \"lat\": 20.71284688,\n                \"long\": -103.36245146\n            },\n            {\n                \"lat\": 20.71287973,\n                \"long\": -103.36299968\n            },\n            {\n                \"lat\": 20.7129989,\n                \"long\": -103.36570173\n            },\n            {\n                \"lat\": 20.71303247,\n                \"long\": -103.36698653\n            },\n            {\n                \"lat\": 20.7131173,\n                \"long\": -103.36795836\n            },\n            {\n                \"lat\": 20.71319746,\n                \"long\": -103.36910767\n            },\n            {\n                \"lat\": 20.7132853,\n                \"long\": -103.37015569\n            },\n            {\n                \"lat\": 20.71340106,\n                \"long\": -103.3704949\n            },\n            {\n                \"lat\": 20.71371722,\n                \"long\": -103.37096999\n            },\n            {\n                \"lat\": 20.71384102,\n                \"long\": -103.37124471\n            },\n            {\n                \"lat\": 20.71379256,\n                \"long\": -103.37161328\n            },\n            {\n                \"lat\": 20.71340824,\n                \"long\": -103.37308501\n            },\n            {\n                \"lat\": 20.71323385,\n                \"long\": -103.37386898\n            },\n            {\n                \"lat\": 20.71314998,\n                \"long\": -103.37415512\n            },\n            {\n                \"lat\": 20.71299703,\n                \"long\": -103.3744604\n            },\n            {\n                \"lat\": 20.71243818,\n                \"long\": -103.37487122\n            },\n            {\n                \"lat\": 20.71223177,\n                \"long\": -103.37506917\n            },\n            {\n                \"lat\": 20.7119798,\n                \"long\": -103.37578812\n            },\n            {\n                \"lat\": 20.71175918,\n                \"long\": -103.37688572\n            },\n            {\n                \"lat\": 20.71133967,\n                \"long\": -103.37950557\n            },\n            {\n                \"lat\": 20.71115784,\n                \"long\": -103.3809521\n            },\n            {\n                \"lat\": 20.71104127,\n                \"long\": -103.38178138\n            },\n            {\n                \"lat\": 20.71028562,\n                \"long\": -103.38550946\n            },\n            {\n                \"lat\": 20.70987969,\n                \"long\": -103.3876948\n            },\n            {\n                \"lat\": 20.70963972,\n                \"long\": -103.38863207\n            },\n            {\n                \"lat\": 20.70949945,\n                \"long\": -103.38978167\n            },\n            {\n                \"lat\": 20.70939404,\n                \"long\": -103.39085914\n            },\n            {\n                \"lat\": 20.7095814,\n                \"long\": -103.39189575\n            },\n            {\n                \"lat\": 20.71004201,\n                \"long\": -103.39270288\n            },\n            {\n                \"lat\": 20.71094069,\n                \"long\": -103.39380754\n            },\n            {\n                \"lat\": 20.71147063,\n                \"long\": -103.39442889\n            },\n            {\n                \"lat\": 20.71179587,\n                \"long\": -103.39501086\n            },\n            {\n                \"lat\": 20.7119329,\n                \"long\": -103.39541542\n            },\n            {\n                \"lat\": 20.71198255,\n                \"long\": -103.39562911\n            },\n            {\n                \"lat\": 20.71204748,\n                \"long\": -103.39623722\n            },\n            {\n                \"lat\": 20.71192467,\n                \"long\": -103.39683681\n            },\n            {\n                \"lat\": 20.7114447,\n                \"long\": -103.39832185\n            },\n            {\n                \"lat\": 20.71094477,\n                \"long\": -103.3997861\n            },\n            {\n                \"lat\": 20.7108241,\n                \"long\": -103.40061658\n            },\n            {\n                \"lat\": 20.71098567,\n                \"long\": -103.40206339\n            },\n            {\n                \"lat\": 20.71132905,\n                \"long\": -103.40394599\n            },\n            {\n                \"lat\": 20.71159076,\n                \"long\": -103.40447857\n            },\n            {\n                \"lat\": 20.71178033,\n                \"long\": -103.40468652\n            },\n            {\n                \"lat\": 20.7118729,\n                \"long\": -103.40508441\n            },\n            {\n                \"lat\": 20.71186653,\n                \"long\": -103.40546235\n            },\n            {\n                \"lat\": 20.71169286,\n                \"long\": -103.40590502\n            },\n            {\n                \"lat\": 20.71130106,\n                \"long\": -103.4062555\n            },\n            {\n                \"lat\": 20.71014782,\n                \"long\": -103.40649848\n            },\n            {\n                \"lat\": 20.7096261,\n                \"long\": -103.40668237\n            },\n            {\n                \"lat\": 20.70951275,\n                \"long\": -103.40688477\n            },\n            {\n                \"lat\": 20.70948024,\n                \"long\": -103.40692942\n            },\n            {\n                \"lat\": 20.70387132,\n                \"long\": -103.40259647\n            },\n            {\n                \"lat\": 20.70348119,\n                \"long\": -103.40287445\n            },\n            {\n                \"lat\": 20.70294137,\n                \"long\": -103.40310033\n            },\n            {\n                \"lat\": 20.70208323,\n                \"long\": -103.40329209\n            },\n            {\n                \"lat\": 20.70136957,\n                \"long\": -103.40232773\n            },\n            {\n                \"lat\": 20.70108969,\n                \"long\": -103.40200078\n            },\n            {\n                \"lat\": 20.70087923,\n                \"long\": -103.40192274\n            },\n            {\n                \"lat\": 20.70019652,\n                \"long\": -103.40194327\n            },\n            {\n                \"lat\": 20.69970936,\n                \"long\": -103.40188151\n            },\n            {\n                \"lat\": 20.69951148,\n                \"long\": -103.40180334\n            },\n            {\n                \"lat\": 20.69939202,\n                \"long\": -103.40158616\n            },\n            {\n                \"lat\": 20.69929335,\n                \"long\": -103.40135092\n            },\n            {\n                \"lat\": 20.69932347,\n                \"long\": -103.4009806\n            },\n            {\n                \"lat\": 20.699455,\n                \"long\": -103.40068946\n            },\n            {\n                \"lat\": 20.69959138,\n                \"long\": -103.40046959\n            },\n            {\n                \"lat\": 20.69963161,\n                \"long\": -103.40028417\n            },\n            {\n                \"lat\": 20.69955737,\n                \"long\": -103.39996844\n            },\n            {\n                \"lat\": 20.69941103,\n                \"long\": -103.39956876\n            },\n            {\n                \"lat\": 20.69918442,\n                \"long\": -103.39955777\n            },\n            {\n                \"lat\": 20.69853915,\n                \"long\": -103.39972502\n            },\n            {\n                \"lat\": 20.69805298,\n                \"long\": -103.39977024\n            },\n            {\n                \"lat\": 20.69740835,\n                \"long\": -103.39972899\n            },\n            {\n                \"lat\": 20.69693844,\n                \"long\": -103.39955146\n            },\n            {\n                \"lat\": 20.69667111,\n                \"long\": -103.39933862\n            },\n            {\n                \"lat\": 20.69521009,\n                \"long\": -103.39832553\n            },\n            {\n                \"lat\": 20.69426712,\n                \"long\": -103.40237762\n            },\n            {\n                \"lat\": 20.69376545,\n                \"long\": -103.40355526\n            },\n            {\n                \"lat\": 20.69328239,\n                \"long\": -103.40438945\n            },\n            {\n                \"lat\": 20.6930136,\n                \"long\": -103.40480683\n            },\n            {\n                \"lat\": 20.69280687,\n                \"long\": -103.40504079\n            },\n            {\n                \"lat\": 20.69258568,\n                \"long\": -103.40516346\n            },\n            {\n                \"lat\": 20.69182665,\n                \"long\": -103.40427986\n            },\n            {\n                \"lat\": 20.69179582,\n                \"long\": -103.4035781\n            },\n            {\n                \"lat\": 20.6915523,\n                \"long\": -103.4035539\n            },\n            {\n                \"lat\": 20.6913499,\n                \"long\": -103.40344012\n            },\n            {\n                \"lat\": 20.69119343,\n                \"long\": -103.40330357\n            },\n            {\n                \"lat\": 20.69111911,\n                \"long\": -103.40297894\n            },\n            {\n                \"lat\": 20.69101231,\n                \"long\": -103.40277055\n            },\n            {\n                \"lat\": 20.69170696,\n                \"long\": -103.40117003\n            },\n            {\n                \"lat\": 20.6916833,\n                \"long\": -103.39933751\n            },\n            {\n                \"lat\": 20.69084939,\n                \"long\": -103.39783185\n            },\n            {\n                \"lat\": 20.68905961,\n                \"long\": -103.39955175\n            },\n            {\n                \"lat\": 20.6874194,\n                \"long\": -103.40077216\n            },\n            {\n                \"lat\": 20.68714348,\n                \"long\": -103.40154261\n            },\n            {\n                \"lat\": 20.68388908,\n                \"long\": -103.40110995\n            },\n            {\n                \"lat\": 20.68179658,\n                \"long\": -103.40092443\n            },\n            {\n                \"lat\": 20.68108779,\n                \"long\": -103.40085472\n            },\n            {\n                \"lat\": 20.68096667,\n                \"long\": -103.40152271\n            },\n            {\n                \"lat\": 20.68071558,\n                \"long\": -103.40190218\n            },\n            {\n                \"lat\": 20.68067831,\n                \"long\": -103.40332296\n            },\n            {\n                \"lat\": 20.68022791,\n                \"long\": -103.40333679\n            },\n            {\n                \"lat\": 20.67808766,\n                \"long\": -103.40326583\n            },\n            {\n                \"lat\": 20.67822731,\n                \"long\": -103.40260886\n            },\n            {\n                \"lat\": 20.67494204,\n                \"long\": -103.40266452\n            },\n            {\n                \"lat\": 20.67485684,\n                \"long\": -103.40217456\n            },\n            {\n                \"lat\": 20.67485641,\n                \"long\": -103.40212848\n            },\n            {\n                \"lat\": 20.674476,\n                \"long\": -103.39994093\n            },\n            {\n                \"lat\": 20.67103146,\n                \"long\": -103.40010476\n            },\n            {\n                \"lat\": 20.67063712,\n                \"long\": -103.40079011\n            },\n            {\n                \"lat\": 20.66753025,\n                \"long\": -103.40287772\n            },\n            {\n                \"lat\": 20.66707239,\n                \"long\": -103.40282749\n            },\n            {\n                \"lat\": 20.66694826,\n                \"long\": -103.40247117\n            },\n            {\n                \"lat\": 20.66674784,\n                \"long\": -103.40226236\n            },\n            {\n                \"lat\": 20.66640164,\n                \"long\": -103.40215595\n            },\n            {\n                \"lat\": 20.66609141,\n                \"long\": -103.40220504\n            },\n            {\n                \"lat\": 20.66590496,\n                \"long\": -103.40257378\n            },\n            {\n                \"lat\": 20.665585,\n                \"long\": -103.40250376\n            },\n            {\n                \"lat\": 20.66353878,\n                \"long\": -103.40147985\n            },\n            {\n                \"lat\": 20.66241562,\n                \"long\": -103.40077091\n            },\n            {\n                \"lat\": 20.6612804,\n                \"long\": -103.39980579\n            },\n            {\n                \"lat\": 20.66023484,\n                \"long\": -103.39850751\n            },\n            {\n                \"lat\": 20.65980487,\n                \"long\": -103.39786444\n            },\n            {\n                \"lat\": 20.6596009,\n                \"long\": -103.39730346\n            },\n            {\n                \"lat\": 20.65728322,\n                \"long\": -103.39884814\n            },\n            {\n                \"lat\": 20.65708004,\n                \"long\": -103.39837164\n            },\n            {\n                \"lat\": 20.65683738,\n                \"long\": -103.3979237\n            },\n            {\n                \"lat\": 20.65659498,\n                \"long\": -103.39750392\n            },\n            {\n                \"lat\": 20.65627322,\n                \"long\": -103.39709905\n            },\n            {\n                \"lat\": 20.65457564,\n                \"long\": -103.39220354\n            },\n            {\n                \"lat\": 20.65051219,\n                \"long\": -103.39927771\n            },\n            {\n                \"lat\": 20.6497035,\n                \"long\": -103.39878262\n            },\n            {\n                \"lat\": 20.64909801,\n                \"long\": -103.39846439\n            },\n            {\n                \"lat\": 20.64867273,\n                \"long\": -103.39836066\n            },\n            {\n                \"lat\": 20.64692028,\n                \"long\": -103.39836098\n            },\n            {\n                \"lat\": 20.64588696,\n                \"long\": -103.39857917\n            },\n            {\n                \"lat\": 20.64463535,\n                \"long\": -103.39905207\n            },\n            {\n                \"lat\": 20.64297824,\n                \"long\": -103.39990786\n            },\n            {\n                \"lat\": 20.64235783,\n                \"long\": -103.3988956\n            },\n            {\n                \"lat\": 20.64205557,\n                \"long\": -103.39833079\n            },\n            {\n                \"lat\": 20.64183,\n                \"long\": -103.39780124\n            },\n            {\n                \"lat\": 20.6418338,\n                \"long\": -103.39729634\n            },\n            {\n                \"lat\": 20.64192237,\n                \"long\": -103.39678153\n            },\n            {\n                \"lat\": 20.64214705,\n                \"long\": -103.39630136\n            },\n            {\n                \"lat\": 20.64234827,\n                \"long\": -103.3960378\n            },\n            {\n                \"lat\": 20.64230654,\n                \"long\": -103.3951998\n            },\n            {\n                \"lat\": 20.64159609,\n                \"long\": -103.39545969\n            },\n            {\n                \"lat\": 20.63840922,\n                \"long\": -103.39698964\n            },\n            {\n                \"lat\": 20.63780816,\n                \"long\": -103.3971492\n            },\n            {\n                \"lat\": 20.63740043,\n                \"long\": -103.39710839\n            },\n            {\n                \"lat\": 20.63688836,\n                \"long\": -103.39688838\n            },\n            {\n                \"lat\": 20.63643668,\n                \"long\": -103.39664257\n            },\n            {\n                \"lat\": 20.63568044,\n                \"long\": -103.397736\n            },\n            {\n                \"lat\": 20.63441818,\n                \"long\": -103.39962483\n            },\n            {\n                \"lat\": 20.63359386,\n                \"long\": -103.40081215\n            },\n            {\n                \"lat\": 20.62814932,\n                \"long\": -103.4022927\n            },\n            {\n                \"lat\": 20.62750977,\n                \"long\": -103.40247079\n            },\n            {\n                \"lat\": 20.62107996,\n                \"long\": -103.40415744\n            },\n            {\n                \"lat\": 20.62090661,\n                \"long\": -103.40354026\n            },\n            {\n                \"lat\": 20.62107931,\n                \"long\": -103.40235983\n            },\n            {\n                \"lat\": 20.62134045,\n                \"long\": -103.40058063\n            },\n            {\n                \"lat\": 20.62083495,\n                \"long\": -103.40023025\n            },\n            {\n                \"lat\": 20.62021076,\n                \"long\": -103.40112592\n            },\n            {\n                \"lat\": 20.61958652,\n                \"long\": -103.40201566\n            },\n            {\n                \"lat\": 20.61924189,\n                \"long\": -103.40498307\n            },\n            {\n                \"lat\": 20.62018529,\n                \"long\": -103.40745498\n            },\n            {\n                \"lat\": 20.62009656,\n                \"long\": -103.40870453\n            },\n            {\n                \"lat\": 20.62009311,\n                \"long\": -103.41059173\n            },\n            {\n                \"lat\": 20.61984266,\n                \"long\": -103.41090348\n            },\n            {\n                \"lat\": 20.61926631,\n                \"long\": -103.41134984\n            },\n            {\n                \"lat\": 20.61858754,\n                \"long\": -103.41175662\n            },\n            {\n                \"lat\": 20.61789347,\n                \"long\": -103.41202466\n            },\n            {\n                \"lat\": 20.61784417,\n                \"long\": -103.41200314\n            },\n            {\n                \"lat\": 20.61604443,\n                \"long\": -103.41721947\n            },\n            {\n                \"lat\": 20.6199014,\n                \"long\": -103.42341434\n            },\n            {\n                \"lat\": 20.61626953,\n                \"long\": -103.42577876\n            },\n            {\n                \"lat\": 20.61626761,\n                \"long\": -103.42577878\n            },\n            {\n                \"lat\": 20.61573784,\n                \"long\": -103.42584554\n            },\n            {\n                \"lat\": 20.61406195,\n                \"long\": -103.42502594\n            },\n            {\n                \"lat\": 20.61329918,\n                \"long\": -103.42460864\n            },\n            {\n                \"lat\": 20.61224109,\n                \"long\": -103.42271563\n            },\n            {\n                \"lat\": 20.61181259,\n                \"long\": -103.42121205\n            },\n            {\n                \"lat\": 20.61149325,\n                \"long\": -103.42118146\n            },\n            {\n                \"lat\": 20.61093434,\n                \"long\": -103.42111944\n            },\n            {\n                \"lat\": 20.60976975,\n                \"long\": -103.4211145\n            },\n            {\n                \"lat\": 20.6094043,\n                \"long\": -103.42076926\n            },\n            {\n                \"lat\": 20.60926593,\n                \"long\": -103.42056587\n            },\n            {\n                \"lat\": 20.60915385,\n                \"long\": -103.420484\n            },\n            {\n                \"lat\": 20.60907627,\n                \"long\": -103.420458\n            },\n            {\n                \"lat\": 20.60900268,\n                \"long\": -103.42042634\n            },\n            {\n                \"lat\": 20.60893794,\n                \"long\": -103.42036664\n            },\n            {\n                \"lat\": 20.60883273,\n                \"long\": -103.42019731\n            },\n            {\n                \"lat\": 20.60867469,\n                \"long\": -103.42007876\n            },\n            {\n                \"lat\": 20.60836157,\n                \"long\": -103.42003674\n            },\n            {\n                \"lat\": 20.60735009,\n                \"long\": -103.41980387\n            },\n            {\n                \"lat\": 20.60701601,\n                \"long\": -103.41969842\n            },\n            {\n                \"lat\": 20.6063987,\n                \"long\": -103.41957029\n            },\n            {\n                \"lat\": 20.60616491,\n                \"long\": -103.41949838\n            },\n            {\n                \"lat\": 20.60606442,\n                \"long\": -103.41943571\n            },\n            {\n                \"lat\": 20.60599003,\n                \"long\": -103.41940126\n            },\n            {\n                \"lat\": 20.60591801,\n                \"long\": -103.41937176\n            },\n            {\n                \"lat\": 20.6054085,\n                \"long\": -103.41918851\n            },\n            {\n                \"lat\": 20.60531316,\n                \"long\": -103.41915325\n            },\n            {\n                \"lat\": 20.60184775,\n                \"long\": -103.4198728\n            },\n            {\n                \"lat\": 20.60016392,\n                \"long\": -103.42021562\n            },\n            {\n                \"lat\": 20.59963124,\n                \"long\": -103.42035306\n            },\n            {\n                \"lat\": 20.59909724,\n                \"long\": -103.42035025\n            },\n            {\n                \"lat\": 20.59696316,\n                \"long\": -103.42022543\n            },\n            {\n                \"lat\": 20.59505719,\n                \"long\": -103.42017136\n            },\n            {\n                \"lat\": 20.58963491,\n                \"long\": -103.42004432\n            },\n            {\n                \"lat\": 20.58881631,\n                \"long\": -103.41849947\n            },\n            {\n                \"lat\": 20.5886481,\n                \"long\": -103.41827854\n            },\n            {\n                \"lat\": 20.58476254,\n                \"long\": -103.42348966\n            },\n            {\n                \"lat\": 20.5856734,\n                \"long\": -103.42388067\n            },\n            {\n                \"lat\": 20.58794301,\n                \"long\": -103.43094728\n            },\n            {\n                \"lat\": 20.58891742,\n                \"long\": -103.43368829\n            },\n            {\n                \"lat\": 20.58902764,\n                \"long\": -103.43361068\n            },\n            {\n                \"lat\": 20.58964304,\n                \"long\": -103.43521055\n            },\n            {\n                \"lat\": 20.59064078,\n                \"long\": -103.43801645\n            },\n            {\n                \"lat\": 20.5909074,\n                \"long\": -103.43883991\n            },\n            {\n                \"lat\": 20.59156564,\n                \"long\": -103.44090157\n            },\n            {\n                \"lat\": 20.59140342,\n                \"long\": -103.44103594\n            },\n            {\n                \"lat\": 20.59127974,\n                \"long\": -103.44118013\n            },\n            {\n                \"lat\": 20.59128131,\n                \"long\": -103.44135367\n            },\n            {\n                \"lat\": 20.5912728,\n                \"long\": -103.44147627\n            },\n            {\n                \"lat\": 20.59136189,\n                \"long\": -103.44176122\n            },\n            {\n                \"lat\": 20.59151918,\n                \"long\": -103.44214758\n            },\n            {\n                \"lat\": 20.59196294,\n                \"long\": -103.44192531\n            },\n            {\n                \"lat\": 20.59427422,\n                \"long\": -103.44845166\n            },\n            {\n                \"lat\": 20.59584733,\n                \"long\": -103.44837512\n            },\n            {\n                \"lat\": 20.5962096,\n                \"long\": -103.44833717\n            },\n            {\n                \"lat\": 20.59670396,\n                \"long\": -103.44864119\n            },\n            {\n                \"lat\": 20.59663965,\n                \"long\": -103.44879946\n            },\n            {\n                \"lat\": 20.59631882,\n                \"long\": -103.45095868\n            },\n            {\n                \"lat\": 20.59642821,\n                \"long\": -103.4510435\n            },\n            {\n                \"lat\": 20.59643957,\n                \"long\": -103.45153616\n            },\n            {\n                \"lat\": 20.59604129,\n                \"long\": -103.4530681\n            },\n            {\n                \"lat\": 20.59789418,\n                \"long\": -103.47098764\n            },\n            {\n                \"lat\": 20.59640063,\n                \"long\": -103.47934643\n            },\n            {\n                \"lat\": 20.59639261,\n                \"long\": -103.47948743\n            },\n            {\n                \"lat\": 20.59600021,\n                \"long\": -103.48050315\n            },\n            {\n                \"lat\": 20.59591323,\n                \"long\": -103.48204609\n            },\n            {\n                \"lat\": 20.59243242,\n                \"long\": -103.49197258\n            },\n            {\n                \"lat\": 20.59138478,\n                \"long\": -103.4929079\n            },\n            {\n                \"lat\": 20.59326847,\n                \"long\": -103.4944086\n            },\n            {\n                \"lat\": 20.59102986,\n                \"long\": -103.49499157\n            },\n            {\n                \"lat\": 20.59089395,\n                \"long\": -103.49498603\n            },\n            {\n                \"lat\": 20.59030163,\n                \"long\": -103.49518121\n            },\n            {\n                \"lat\": 20.59670036,\n                \"long\": -103.52535278\n            },\n            {\n                \"lat\": 20.59731561,\n                \"long\": -103.52770163\n            },\n            {\n                \"lat\": 20.59384432,\n                \"long\": -103.5277642\n            },\n            {\n                \"lat\": 20.59316132,\n                \"long\": -103.54541443\n            },\n            {\n                \"lat\": 20.59132687,\n                \"long\": -103.54884121\n            },\n            {\n                \"lat\": 20.58877084,\n                \"long\": -103.56733313\n            },\n            {\n                \"lat\": 20.60531541,\n                \"long\": -103.6019595\n            },\n            {\n                \"lat\": 20.60591168,\n                \"long\": -103.60391861\n            },\n            {\n                \"lat\": 20.61367779,\n                \"long\": -103.63090921\n            },\n            {\n                \"lat\": 20.62809322,\n                \"long\": -103.62598216\n            },\n            {\n                \"lat\": 20.63185069,\n                \"long\": -103.64418192\n            },\n            {\n                \"lat\": 20.68328376,\n                \"long\": -103.64063611\n            },\n            {\n                \"lat\": 20.6843807,\n                \"long\": -103.64043712\n            },\n            {\n                \"lat\": 20.70399787,\n                \"long\": -103.63920708\n            },\n            {\n                \"lat\": 20.70814322,\n                \"long\": -103.63884357\n            },\n            {\n                \"lat\": 20.74067703,\n                \"long\": -103.6398535\n            },\n            {\n                \"lat\": 20.76549971,\n                \"long\": -103.63723021\n            },\n            {\n                \"lat\": 20.76793279,\n                \"long\": -103.637601\n            },\n            {\n                \"lat\": 20.78447983,\n                \"long\": -103.63521192\n            },\n            {\n                \"lat\": 20.78529287,\n                \"long\": -103.64891275\n            },\n            {\n                \"lat\": 20.79287861,\n                \"long\": -103.64739954\n            },\n            {\n                \"lat\": 20.79741611,\n                \"long\": -103.64667617\n            },\n            {\n                \"lat\": 20.80045918,\n                \"long\": -103.6461147\n            },\n            {\n                \"lat\": 20.80449939,\n                \"long\": -103.65210854\n            },\n            {\n                \"lat\": 20.81563009,\n                \"long\": -103.64934631\n            },\n            {\n                \"lat\": 20.81863688,\n                \"long\": -103.65288483\n            },\n            {\n                \"lat\": 20.84119142,\n                \"long\": -103.65534793\n            },\n            {\n                \"lat\": 20.84153818,\n                \"long\": -103.65492622\n            },\n            {\n                \"lat\": 20.84172406,\n                \"long\": -103.65472636\n            },\n            {\n                \"lat\": 20.84190873,\n                \"long\": -103.65451601\n            },\n            {\n                \"lat\": 20.84217418,\n                \"long\": -103.65423826\n            },\n            {\n                \"lat\": 20.84258747,\n                \"long\": -103.65394869\n            },\n            {\n                \"lat\": 20.84302828,\n                \"long\": -103.65357029\n            },\n            {\n                \"lat\": 20.84338815,\n                \"long\": -103.65323704\n            },\n            {\n                \"lat\": 20.84361434,\n                \"long\": -103.65299298\n            },\n            {\n                \"lat\": 20.84390116,\n                \"long\": -103.65270453\n            },\n            {\n                \"lat\": 20.84416764,\n                \"long\": -103.65241565\n            },\n            {\n                \"lat\": 20.84447617,\n                \"long\": -103.65201649\n            },\n            {\n                \"lat\": 20.8454782,\n                \"long\": -103.65077507\n            },\n            {\n                \"lat\": 20.84615675,\n                \"long\": -103.65004285\n            },\n            {\n                \"lat\": 20.84672694,\n                \"long\": -103.64984887\n            },\n            {\n                \"lat\": 20.84733229,\n                \"long\": -103.64961432\n            },\n            {\n                \"lat\": 20.84755917,\n                \"long\": -103.64945793\n            },\n            {\n                \"lat\": 20.84809526,\n                \"long\": -103.64927716\n            },\n            {\n                \"lat\": 20.84840309,\n                \"long\": -103.6490762\n            },\n            {\n                \"lat\": 20.84964151,\n                \"long\": -103.64860264\n            },\n            {\n                \"lat\": 20.85036331,\n                \"long\": -103.64820037\n            },\n            {\n                \"lat\": 20.85089922,\n                \"long\": -103.64799736\n            },\n            {\n                \"lat\": 20.85135401,\n                \"long\": -103.64781731\n            },\n            {\n                \"lat\": 20.85249794,\n                \"long\": -103.64738872\n            },\n            {\n                \"lat\": 20.85370492,\n                \"long\": -103.64693794\n            },\n            {\n                \"lat\": 20.85442723,\n                \"long\": -103.64660112\n            },\n            {\n                \"lat\": 20.85488045,\n                \"long\": -103.64650876\n            },\n            {\n                \"lat\": 20.85556246,\n                \"long\": -103.64621674\n            },\n            {\n                \"lat\": 20.85564115,\n                \"long\": -103.64588567\n            },\n            {\n                \"lat\": 20.855804,\n                \"long\": -103.64548806\n            },\n            {\n                \"lat\": 20.85612154,\n                \"long\": -103.64508908\n            },\n            {\n                \"lat\": 20.85641746,\n                \"long\": -103.64466836\n            },\n            {\n                \"lat\": 20.85653975,\n                \"long\": -103.64442459\n            },\n            {\n                \"lat\": 20.85672501,\n                \"long\": -103.64414812\n            },\n            {\n                \"lat\": 20.8568671,\n                \"long\": -103.6438387\n            },\n            {\n                \"lat\": 20.85739577,\n                \"long\": -103.6427221\n            },\n            {\n                \"lat\": 20.85774019,\n                \"long\": -103.64236671\n            },\n            {\n                \"lat\": 20.85795531,\n                \"long\": -103.64265131\n            },\n            {\n                \"lat\": 20.86745308,\n                \"long\": -103.64276367\n            },\n            {\n                \"lat\": 20.86777647,\n                \"long\": -103.64328414\n            },\n            {\n                \"lat\": 20.87052258,\n                \"long\": -103.64621494\n            },\n            {\n                \"lat\": 20.87108491,\n                \"long\": -103.6467824\n            },\n            {\n                \"lat\": 20.87398879,\n                \"long\": -103.65043295\n            },\n            {\n                \"lat\": 20.87536583,\n                \"long\": -103.65178556\n            },\n            {\n                \"lat\": 20.87757998,\n                \"long\": -103.65447342\n            },\n            {\n                \"lat\": 20.87850134,\n                \"long\": -103.65589684\n            },\n            {\n                \"lat\": 20.8825312,\n                \"long\": -103.66030796\n            },\n            {\n                \"lat\": 20.88428001,\n                \"long\": -103.66040299\n            },\n            {\n                \"lat\": 20.88469635,\n                \"long\": -103.66031098\n            },\n            {\n                \"lat\": 20.88506788,\n                \"long\": -103.66064893\n            },\n            {\n                \"lat\": 20.88576265,\n                \"long\": -103.66082962\n            },\n            {\n                \"lat\": 20.8860307,\n                \"long\": -103.66073953\n            },\n            {\n                \"lat\": 20.88634009,\n                \"long\": -103.66073678\n            },\n            {\n                \"lat\": 20.88664011,\n                \"long\": -103.66069026\n            },\n            {\n                \"lat\": 20.88702367,\n                \"long\": -103.6606424\n            },\n            {\n                \"lat\": 20.88755995,\n                \"long\": -103.66048384\n            },\n            {\n                \"lat\": 20.88782834,\n                \"long\": -103.660437\n            },\n            {\n                \"lat\": 20.88826333,\n                \"long\": -103.66046618\n            },\n            {\n                \"lat\": 20.8886997,\n                \"long\": -103.66067199\n            },\n            {\n                \"lat\": 20.88901922,\n                \"long\": -103.66052136\n            },\n            {\n                \"lat\": 20.89063581,\n                \"long\": -103.66017176\n            },\n            {\n                \"lat\": 20.89140052,\n                \"long\": -103.66027035\n            },\n            {\n                \"lat\": 20.89279627,\n                \"long\": -103.66005706\n            },\n            {\n                \"lat\": 20.89338742,\n                \"long\": -103.65998332\n            },\n            {\n                \"lat\": 20.89333069,\n                \"long\": -103.65966118\n            },\n            {\n                \"lat\": 20.89306163,\n                \"long\": -103.65962331\n            },\n            {\n                \"lat\": 20.89256593,\n                \"long\": -103.65948412\n            },\n            {\n                \"lat\": 20.8925633,\n                \"long\": -103.65914888\n            },\n            {\n                \"lat\": 20.89246997,\n                \"long\": -103.65876699\n            },\n            {\n                \"lat\": 20.89224489,\n                \"long\": -103.65857733\n            },\n            {\n                \"lat\": 20.89250328,\n                \"long\": -103.65833516\n            },\n            {\n                \"lat\": 20.89298273,\n                \"long\": -103.65848996\n            },\n            {\n                \"lat\": 20.89336201,\n                \"long\": -103.65847247\n            },\n            {\n                \"lat\": 20.89354782,\n                \"long\": -103.65826233\n            },\n            {\n                \"lat\": 20.89366332,\n                \"long\": -103.65801497\n            },\n            {\n                \"lat\": 20.89385377,\n                \"long\": -103.65782221\n            },\n            {\n                \"lat\": 20.89431176,\n                \"long\": -103.65804826\n            },\n            {\n                \"lat\": 20.89470777,\n                \"long\": -103.65785908\n            },\n            {\n                \"lat\": 20.89499644,\n                \"long\": -103.65751885\n            },\n            {\n                \"lat\": 20.89542107,\n                \"long\": -103.65723629\n            },\n            {\n                \"lat\": 20.8956615,\n                \"long\": -103.65708033\n            },\n            {\n                \"lat\": 20.89574733,\n                \"long\": -103.65679357\n            },\n            {\n                \"lat\": 20.89613189,\n                \"long\": -103.65658467\n            },\n            {\n                \"lat\": 20.89643445,\n                \"long\": -103.65628876\n            },\n            {\n                \"lat\": 20.89674078,\n                \"long\": -103.65589699\n            },\n            {\n                \"lat\": 20.89680626,\n                \"long\": -103.65546351\n            },\n            {\n                \"lat\": 20.89704527,\n                \"long\": -103.65527091\n            },\n            {\n                \"lat\": 20.89735034,\n                \"long\": -103.65543673\n            },\n            {\n                \"lat\": 20.89778133,\n                \"long\": -103.65553233\n            },\n            {\n                \"lat\": 20.89808039,\n                \"long\": -103.65536443\n            },\n            {\n                \"lat\": 20.89861939,\n                \"long\": -103.6549799\n            },\n            {\n                \"lat\": 20.89894672,\n                \"long\": -103.65496076\n            },\n            {\n                \"lat\": 20.89944074,\n                \"long\": -103.65474335\n            },\n            {\n                \"lat\": 20.90014288,\n                \"long\": -103.65456856\n            },\n            {\n                \"lat\": 20.90044457,\n                \"long\": -103.6544481\n            },\n            {\n                \"lat\": 20.90077791,\n                \"long\": -103.65404556\n            },\n            {\n                \"lat\": 20.90195471,\n                \"long\": -103.65340655\n            },\n            {\n                \"lat\": 20.9081705,\n                \"long\": -103.65379953\n            },\n            {\n                \"lat\": 20.91321874,\n                \"long\": -103.65313391\n            },\n            {\n                \"lat\": 20.91747976,\n                \"long\": -103.65123409\n            },\n            {\n                \"lat\": 20.91765122,\n                \"long\": -103.6483365\n            },\n            {\n                \"lat\": 20.91975463,\n                \"long\": -103.64397349\n            },\n            {\n                \"lat\": 20.92420495,\n                \"long\": -103.64145101\n            },\n            {\n                \"lat\": 20.92651902,\n                \"long\": -103.63915455\n            },\n            {\n                \"lat\": 20.92746104,\n                \"long\": -103.63542231\n            },\n            {\n                \"lat\": 20.92880825,\n                \"long\": -103.6337551\n            },\n            {\n                \"lat\": 20.93218187,\n                \"long\": -103.6329888\n            },\n            {\n                \"lat\": 20.93327165,\n                \"long\": -103.63288709\n            },\n            {\n                \"lat\": 20.94121173,\n                \"long\": -103.62929784\n            },\n            {\n                \"lat\": 20.94564511,\n                \"long\": -103.62470571\n            },\n            {\n                \"lat\": 20.94855198,\n                \"long\": -103.62364464\n            },\n            {\n                \"lat\": 20.95008671,\n                \"long\": -103.62114776\n            },\n            {\n                \"lat\": 20.95163145,\n                \"long\": -103.61989217\n            },\n            {\n                \"lat\": 20.95454498,\n                \"long\": -103.61965853\n            },\n            {\n                \"lat\": 20.95725411,\n                \"long\": -103.61818528\n            },\n            {\n                \"lat\": 20.96093161,\n                \"long\": -103.61628923\n            },\n            {\n                \"lat\": 20.96323717,\n                \"long\": -103.61030992\n            },\n            {\n                \"lat\": 20.96337551,\n                \"long\": -103.60612758\n            },\n            {\n                \"lat\": 20.96491165,\n                \"long\": -103.60383719\n            },\n            {\n                \"lat\": 20.96409523,\n                \"long\": -103.59908556\n            },\n            {\n                \"lat\": 20.96385488,\n                \"long\": -103.59350092\n            },\n            {\n                \"lat\": 20.95913757,\n                \"long\": -103.58713068\n            },\n            {\n                \"lat\": 20.95734725,\n                \"long\": -103.58218161\n            },\n            {\n                \"lat\": 20.96090592,\n                \"long\": -103.57737253\n            },\n            {\n                \"lat\": 20.96293321,\n                \"long\": -103.5761283\n            },\n            {\n                \"lat\": 20.9654614,\n                \"long\": -103.57631129\n            },\n            {\n                \"lat\": 20.96738927,\n                \"long\": -103.57443071\n            },\n            {\n                \"lat\": 20.96655987,\n                \"long\": -103.56823087\n            },\n            {\n                \"lat\": 20.96360643,\n                \"long\": -103.56370677\n            },\n            {\n                \"lat\": 20.96396544,\n                \"long\": -103.56018571\n            },\n            {\n                \"lat\": 20.96664421,\n                \"long\": -103.55519392\n            },\n            {\n                \"lat\": 20.96785971,\n                \"long\": -103.55250951\n            },\n            {\n                \"lat\": 20.9693193,\n                \"long\": -103.54978814\n            },\n            {\n                \"lat\": 20.97300121,\n                \"long\": -103.54851103\n            },\n            {\n                \"lat\": 20.97708413,\n                \"long\": -103.54867854\n            },\n            {\n                \"lat\": 20.97978902,\n                \"long\": -103.54678995\n            },\n            {\n                \"lat\": 20.98169353,\n                \"long\": -103.5422188\n            },\n            {\n                \"lat\": 20.98280988,\n                \"long\": -103.53641354\n            },\n            {\n                \"lat\": 20.98510099,\n                \"long\": -103.53163145\n            },\n            {\n                \"lat\": 20.98721729,\n                \"long\": -103.52912737\n            },\n            {\n                \"lat\": 20.98875412,\n                \"long\": -103.52704281\n            },\n            {\n                \"lat\": 20.996223,\n                \"long\": -103.52468164\n            },\n            {\n                \"lat\": 20.99219596,\n                \"long\": -103.50803221\n            },\n            {\n                \"lat\": 20.98882001,\n                \"long\": -103.49401298\n            },\n            {\n                \"lat\": 20.9838443,\n                \"long\": -103.48301901\n            },\n            {\n                \"lat\": 20.97187396,\n                \"long\": -103.47288829\n            },\n            {\n                \"lat\": 20.96597207,\n                \"long\": -103.46389942\n            },\n            {\n                \"lat\": 20.97568102,\n                \"long\": -103.45098721\n            },\n            {\n                \"lat\": 20.98118211,\n                \"long\": -103.44846241\n            },\n            {\n                \"lat\": 20.98514471,\n                \"long\": -103.44658619\n            },\n            {\n                \"lat\": 20.98986435,\n                \"long\": -103.44305654\n            },\n            {\n                \"lat\": 20.99317934,\n                \"long\": -103.44181967\n            },\n            {\n                \"lat\": 20.99542351,\n                \"long\": -103.44040399\n            },\n            {\n                \"lat\": 20.9954684,\n                \"long\": -103.43882127\n            },\n            {\n                \"lat\": 20.99539798,\n                \"long\": -103.43761949\n            },\n            {\n                \"lat\": 20.99464805,\n                \"long\": -103.43357675\n            },\n            {\n                \"lat\": 20.99385381,\n                \"long\": -103.43118004\n            },\n            {\n                \"lat\": 20.99342698,\n                \"long\": -103.429982\n            },\n            {\n                \"lat\": 20.99245801,\n                \"long\": -103.42796689\n            },\n            {\n                \"lat\": 20.99088926,\n                \"long\": -103.42532522\n            },\n            {\n                \"lat\": 20.98942517,\n                \"long\": -103.42116361\n            },\n            {\n                \"lat\": 20.98884245,\n                \"long\": -103.4159802\n            },\n            {\n                \"lat\": 20.98657437,\n                \"long\": -103.41181785\n            },\n            {\n                \"lat\": 20.97926681,\n                \"long\": -103.41164197\n            },\n            {\n                \"lat\": 20.97023776,\n                \"long\": -103.40521966\n            },\n            {\n                \"lat\": 20.9658231,\n                \"long\": -103.40019029\n            },\n            {\n                \"lat\": 20.9595638,\n                \"long\": -103.39778918\n            },\n            {\n                \"lat\": 20.95540418,\n                \"long\": -103.39257685\n            },\n            {\n                \"lat\": 20.95185429,\n                \"long\": -103.39066842\n            },\n            {\n                \"lat\": 20.95124056,\n                \"long\": -103.38811362\n            },\n            {\n                \"lat\": 20.9518673,\n                \"long\": -103.38371781\n            },\n            {\n                \"lat\": 20.95147603,\n                \"long\": -103.37778877\n            },\n            {\n                \"lat\": 20.94831024,\n                \"long\": -103.37592483\n            },\n            {\n                \"lat\": 20.94443234,\n                \"long\": -103.37413192\n            },\n            {\n                \"lat\": 20.94150408,\n                \"long\": -103.37226556\n            },\n            {\n                \"lat\": 20.93845279,\n                \"long\": -103.36995776\n            },\n            {\n                \"lat\": 20.93607595,\n                \"long\": -103.36985696\n            },\n            {\n                \"lat\": 20.93375486,\n                \"long\": -103.36937598\n            },\n            {\n                \"lat\": 20.93250951,\n                \"long\": -103.36849134\n            },\n            {\n                \"lat\": 20.92977571,\n                \"long\": -103.36833116\n            },\n            {\n                \"lat\": 20.92888182,\n                \"long\": -103.36802454\n            },\n            {\n                \"lat\": 20.92744192,\n                \"long\": -103.3665219\n            },\n            {\n                \"lat\": 20.92605109,\n                \"long\": -103.36394335\n            },\n            {\n                \"lat\": 20.9254408,\n                \"long\": -103.36224198\n            },\n            {\n                \"lat\": 20.92429112,\n                \"long\": -103.36004043\n            },\n            {\n                \"lat\": 20.92167064,\n                \"long\": -103.35930986\n            },\n            {\n                \"lat\": 20.91845563,\n                \"long\": -103.35852253\n            },\n            {\n                \"lat\": 20.91570297,\n                \"long\": -103.35640184\n            },\n            {\n                \"lat\": 20.9128068,\n                \"long\": -103.35503537\n            },\n            {\n                \"lat\": 20.91319815,\n                \"long\": -103.35250096\n            },\n            {\n                \"lat\": 20.91241997,\n                \"long\": -103.35187693\n            },\n            {\n                \"lat\": 20.91063459,\n                \"long\": -103.35151693\n            },\n            {\n                \"lat\": 20.90790994,\n                \"long\": -103.35230573\n            },\n            {\n                \"lat\": 20.90630335,\n                \"long\": -103.35200702\n            },\n            {\n                \"lat\": 20.90534943,\n                \"long\": -103.35163794\n            },\n            {\n                \"lat\": 20.90393199,\n                \"long\": -103.35247568\n            },\n            {\n                \"lat\": 20.90251088,\n                \"long\": -103.35293394\n            },\n            {\n                \"lat\": 20.90173758,\n                \"long\": -103.35281589\n            },\n            {\n                \"lat\": 20.8992328,\n                \"long\": -103.35176802\n            },\n            {\n                \"lat\": 20.89371374,\n                \"long\": -103.35227102\n            },\n            {\n                \"lat\": 20.89216287,\n                \"long\": -103.35159225\n            },\n            {\n                \"lat\": 20.88970893,\n                \"long\": -103.3496585\n            },\n            {\n                \"lat\": 20.88769255,\n                \"long\": -103.34745588\n            },\n            {\n                \"lat\": 20.88571859,\n                \"long\": -103.34602292\n            },\n            {\n                \"lat\": 20.88541307,\n                \"long\": -103.34514088\n            },\n            {\n                \"lat\": 20.88528669,\n                \"long\": -103.34458989\n            }\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/569fbfcab7d8a.png\",\n        \"id\": \"5644ce8e6aa918f3028b456f\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5d9ee7c9de2efef4018b4578\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Zap_MX__Base_1\",\n                        \"name\": \"Ciudad\",\n                        \"description\": \"Ciudad\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5de926f80007544c098b4568\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Zap_MX_Distritos\",\n                        \"name\": \"Distritos\",\n                        \"description\": \"Distritos\",\n                        \"preset\": true,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5e98156d272bfd04038b45de\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Zap_MX_Colonias_160420\",\n                        \"name\": \"Colonias\",\n                        \"description\": \"Colonias\",\n                        \"preset\": true,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    }\n                ],\n                \"extent\": [\n                    -103.66082961871,\n                    20.584762535141,\n                    -103.30642733903,\n                    20.996223003911\n                ],\n                \"id\": \"5c9b556b9650e67d42985e84\",\n                \"location_additional_data\": {},\n                \"name\": \"mx.zapopan\",\n                \"type\": \"city\",\n                \"visible_name\": \"Zapopan\",\n                \"is_main\": true\n            }\n        ],\n        \"jurisdiction_id\": \"mx.zapopan\",\n        \"key_name\": \"Zapopan, Jal., México\",\n        \"locales\": [\n            \"es_MX\"\n        ],\n        \"name\": \"Ciudapp Zapopan\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17717\",\n                \"options\": [\n                    \"ios\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17718\",\n                \"options\": [\n                    \"android\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771a\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771c\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771b\",\n                \"options\": [\n                    \"inperson\",\n                    \"email\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771d\",\n                \"options\": [\n                    \"facebook\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771e\",\n                \"options\": [\n                    \"twitter\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17722\",\n                \"options\": [\n                    \"web_channel\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17721\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"60c09cdccdf34808168b4573\",\n                \"options\": [\n                    \"android\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17719\",\n                \"options\": [\n                    \"inperson\",\n                    \"internal\"\n                ]\n            }\n        ],\n        \"lat\": 20.6719788,\n        \"long\": -103.4164066,\n        \"tags\": [\n            {\n                \"name\": \"Dependencias\",\n                \"color\": \"#00bcd4\",\n                \"id\": \"Dependencias\"\n            },\n            {\n                \"name\": \"Ciudadano\",\n                \"color\": \"#9e9e9e\",\n                \"id\": \"Ciudadano\"\n            },\n            {\n                \"name\": \"Turismo\",\n                \"color\": \"#880e4f\",\n                \"id\": \"Turismo\"\n            },\n            {\n                \"name\": \"Educación\",\n                \"color\": \"#000000\",\n                \"id\": \"Educación\"\n            },\n            {\n                \"name\": \"Emprendedores\",\n                \"color\": \"#000000\",\n                \"id\": \"Emprendedores\"\n            },\n            {\n                \"name\": \"Instituto de la mujer\",\n                \"color\": \"#4527a0\",\n                \"id\": \"Instituto de la mujer\"\n            },\n            {\n                \"name\": \"Salud\",\n                \"color\": \"#f50057\",\n                \"id\": \"Salud\"\n            },\n            {\n                \"name\": \"Seguridad\",\n                \"color\": \"#c22b63\",\n                \"id\": \"Seguridad\"\n            },\n            {\n                \"name\": \"Medio ambiente\",\n                \"color\": \"#558b2f\",\n                \"id\": \"Medio ambiente\"\n            },\n            {\n                \"name\": \"Cultura\",\n                \"color\": \"#000000\",\n                \"id\": \"Cultura\"\n            },\n            {\n                \"name\": \"Deportes\",\n                \"color\": \"#000000\",\n                \"id\": \"Deportes\"\n            },\n            {\n                \"name\": \"Social\",\n                \"color\": \"#000000\",\n                \"id\": \"Social\"\n            },\n            {\n                \"name\": \"General\",\n                \"color\": \"#000000\",\n                \"id\": \"General\"\n            },\n            {\n                \"name\": \"Juventud\",\n                \"color\": \"#ad1457\",\n                \"id\": \"Juventud\"\n            }\n        ],\n        \"timezone\": \"America/Mexico_City\",\n        \"typologies\": [],\n        \"typology_nodes\": [\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c71\",\n                \"color\": \"#d35400\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c13\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"5979ab4c60f2845b178b457a\",\n                \"color\": \"#993399\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c13\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Consultado\"\n            },\n            {\n                \"id\": \"59674a36d403f6100f8b456d\",\n                \"color\": \"#3abdaa\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c13\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"5979ab3360f2841e168b45ff\",\n                \"color\": \"#b39ddb\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c13\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En consulta\"\n            },\n            {\n                \"id\": \"59674c9d518ef5490d8b45b2\",\n                \"color\": \"#b71b1c\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c13\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"59674b15c6c381860d8b4743\",\n                \"color\": \"#8cbc2d\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c13\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Validado\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c6e\",\n                \"color\": \"#0c98f5\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c13\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En progreso\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c6d\",\n                \"color\": \"#f1c40f\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c13\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c6f\",\n                \"color\": \"#21618c\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c13\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"5850dca2e22c6d9f51b00c70\",\n                \"color\": \"#33691e\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c13\",\n                    \"color\": \"#0b8d12\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"5e84a6af02be88d71f8b457a\",\n                \"color\": \"#f7bc1b\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Inspección\"\n            },\n            {\n                \"id\": \"5e84a6e4586d1cdf208b456d\",\n                \"color\": \"#5488f0\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Visita\"\n            },\n            {\n                \"id\": \"5e84a70402be88d61f8b45b9\",\n                \"color\": \"#e6a467\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Citatorio\"\n            },\n            {\n                \"id\": \"5e84a725586d1cdf208b4577\",\n                \"color\": \"#3dd6eb\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Apercibimiento\"\n            },\n            {\n                \"id\": \"5e84a7af1078bd5d228b4585\",\n                \"color\": \"#e2c0eb\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Requisitos Completos\"\n            },\n            {\n                \"id\": \"5e84a7ec02be88d91f8b459b\",\n                \"color\": \"#e61c1d\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Incompetente\"\n            },\n            {\n                \"id\": \"5e84a8171078bd5d228b4586\",\n                \"color\": \"#f04a9a\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Multa\"\n            },\n            {\n                \"id\": \"5e84a8471078bd51228b4571\",\n                \"color\": \"#af4aed\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar Multa y Clausura\"\n            },\n            {\n                \"id\": \"5e84a8de02be88d81f8b4596\",\n                \"color\": \"#e047ed\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Requisitos Completos\"\n            },\n            {\n                \"id\": \"5e84a903ce38c4371f8b4572\",\n                \"color\": \"#f71631\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Incompetente\"\n            },\n            {\n                \"id\": \"5e84a928ce38c4271f8b457e\",\n                \"color\": \"#f52589\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Multa\"\n            },\n            {\n                \"id\": \"5e84a944586d1cc1208b45a4\",\n                \"color\": \"#ad0fd9\",\n                \"order\": 12,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Multa y Clausura\"\n            },\n            {\n                \"id\": \"5e84a9711078bd5e228b45a3\",\n                \"color\": \"#9ab2ed\",\n                \"order\": 13,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Visita Planificada\"\n            },\n            {\n                \"id\": \"5e84a99b02be8861208b456f\",\n                \"color\": \"#f0bf92\",\n                \"order\": 14,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificado en citatorio\"\n            },\n            {\n                \"id\": \"5e84a9bf586d1cdf208b457b\",\n                \"color\": \"#6edbeb\",\n                \"order\": 15,\n                \"typology\": {\n                    \"id\": \"5e84a2b4ce38c4251f8b4590\",\n                    \"color\": \"#2566eb\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar una inspección de un comercio, una construcción o de medio ambiente\",\n                    \"visible_name\": \"Inspección\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificado en apercibimiento\"\n            }\n        ],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": true,\n            \"requests_process\": true,\n            \"requests_comments\": true,\n            \"requests_worknotes\": true,\n            \"requests_reiterations\": true,\n            \"requests_complaints\": true,\n            \"user_evaluation\": true,\n            \"service_survey\": false,\n            \"alerts\": true,\n            \"inventory\": false,\n            \"backoffice_admin\": true,\n            \"app_configuration\": true,\n            \"notifications\": true,\n            \"planned_requests\": true,\n            \"planning\": false,\n            \"users\": false,\n            \"predetermined_response\": true,\n            \"predetermined_response_external_source\": false,\n            \"company_enquiry\": true,\n            \"layer\": false,\n            \"jurisdiction_element\": false,\n            \"webhook\": false,\n            \"user_guide\": false,\n            \"worklog\": false,\n            \"calendar\": false\n        },\n        \"app_urls\": {\n            \"web_url\": null,\n            \"google_play_manager\": null,\n            \"google_play_citizens\": null,\n            \"app_store\": null\n        }\n    },\n    {\n        \"only_registered_users\": true,\n        \"max_upload_files\": 5,\n        \"automatic_typology\": false,\n        \"map_layers\": [],\n        \"accepted_id_documents\": [],\n        \"buttons\": [],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5cb6e8833f960e8b457a\",\n                \"name\": \"Gestores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5d2101394ad80d8b45f5\",\n                \"name\": \"Técnicos Avisos\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"5e2f5d97e8833f980e8b456a\",\n                \"name\": \"Atención Ciudadana 02\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e21fee15c120d8b457b\",\n                \"name\": \"Solicitantes Internos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f61effee15c140d8b456b\",\n                \"name\": \"Gerentes de la ciudad\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e5f8c5e3b5399d7048b45ee\",\n                \"name\": \"Gestores de la plataforma\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            }\n        ],\n        \"company_emails\": [\n            \"comentarios.santillanadelmar@radmas.com\"\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": 43.42820987527291,\n                \"long\": -4.0441134\n            },\n            {\n                \"lat\": 43.361985,\n                \"long\": -4.1441952\n            }\n        ],\n        \"geo_perimeter\": [\n            {\n                \"lat\": 43.3837573,\n                \"long\": -4.0441134\n            },\n            {\n                \"lat\": 43.3837964,\n                \"long\": -4.0447684\n            },\n            {\n                \"lat\": 43.3836125,\n                \"long\": -4.045185\n            },\n            {\n                \"lat\": 43.3829749,\n                \"long\": -4.0459765\n            },\n            {\n                \"lat\": 43.3828723,\n                \"long\": -4.0463698\n            },\n            {\n                \"lat\": 43.3860161,\n                \"long\": -4.0511525\n            },\n            {\n                \"lat\": 43.3863081,\n                \"long\": -4.0517131\n            },\n            {\n                \"lat\": 43.3908473,\n                \"long\": -4.0578213\n            },\n            {\n                \"lat\": 43.3909242,\n                \"long\": -4.0579247\n            },\n            {\n                \"lat\": 43.3941348,\n                \"long\": -4.0622454\n            },\n            {\n                \"lat\": 43.3948474,\n                \"long\": -4.0630851\n            },\n            {\n                \"lat\": 43.3957474,\n                \"long\": -4.0660397\n            },\n            {\n                \"lat\": 43.3962772,\n                \"long\": -4.0739026\n            },\n            {\n                \"lat\": 43.3962304,\n                \"long\": -4.074087\n            },\n            {\n                \"lat\": 43.396378,\n                \"long\": -4.0746699\n            },\n            {\n                \"lat\": 43.3965288,\n                \"long\": -4.0768336\n            },\n            {\n                \"lat\": 43.3964583,\n                \"long\": -4.0776226\n            },\n            {\n                \"lat\": 43.3965086,\n                \"long\": -4.0780187\n            },\n            {\n                \"lat\": 43.3977515,\n                \"long\": -4.0799053\n            },\n            {\n                \"lat\": 43.3980108,\n                \"long\": -4.0800952\n            },\n            {\n                \"lat\": 43.3986903,\n                \"long\": -4.0815644\n            },\n            {\n                \"lat\": 43.3988149,\n                \"long\": -4.0817148\n            },\n            {\n                \"lat\": 43.4014678,\n                \"long\": -4.083034\n            },\n            {\n                \"lat\": 43.4058525,\n                \"long\": -4.0887808\n            },\n            {\n                \"lat\": 43.4066107,\n                \"long\": -4.0904741\n            },\n            {\n                \"lat\": 43.4071027,\n                \"long\": -4.0955343\n            },\n            {\n                \"lat\": 43.4090322,\n                \"long\": -4.0933829\n            },\n            {\n                \"lat\": 43.4138506,\n                \"long\": -4.0895046\n            },\n            {\n                \"lat\": 43.4153698,\n                \"long\": -4.0897665\n            },\n            {\n                \"lat\": 43.416309,\n                \"long\": -4.0904257\n            },\n            {\n                \"lat\": 43.416757300000015,\n                \"long\": -4.0823916539062495\n            },\n            {\n                \"lat\": 43.426582096193805,\n                \"long\": -4.081598640136718\n            },\n            {\n                \"lat\": 43.42501931433424,\n                \"long\": -4.088591349707024\n            },\n            {\n                \"lat\": 43.42676545373117,\n                \"long\": -4.092582399999995\n            },\n            {\n                \"lat\": 43.424193,\n                \"long\": -4.0955582\n            },\n            {\n                \"lat\": 43.4244346,\n                \"long\": -4.0957108\n            },\n            {\n                \"lat\": 43.4245672,\n                \"long\": -4.0959726\n            },\n            {\n                \"lat\": 43.4249938,\n                \"long\": -4.096561\n            },\n            {\n                \"lat\": 43.42820987527291,\n                \"long\": -4.0973628455078215\n            },\n            {\n                \"lat\": 43.4256494,\n                \"long\": -4.0967334\n            },\n            {\n                \"lat\": 43.4257923,\n                \"long\": -4.0968595\n            },\n            {\n                \"lat\": 43.4260146,\n                \"long\": -4.0971326\n            },\n            {\n                \"lat\": 43.4265577,\n                \"long\": -4.0977999\n            },\n            {\n                \"lat\": 43.4262959,\n                \"long\": -4.0982305\n            },\n            {\n                \"lat\": 43.4262432,\n                \"long\": -4.098231\n            },\n            {\n                \"lat\": 43.4261896,\n                \"long\": -4.0980185\n            },\n            {\n                \"lat\": 43.4261182,\n                \"long\": -4.0979238\n            },\n            {\n                \"lat\": 43.4259833,\n                \"long\": -4.0980639\n            },\n            {\n                \"lat\": 43.4259622,\n                \"long\": -4.0979474\n            },\n            {\n                \"lat\": 43.4259843,\n                \"long\": -4.0978371\n            },\n            {\n                \"lat\": 43.4258787,\n                \"long\": -4.0978481\n            },\n            {\n                \"lat\": 43.425788,\n                \"long\": -4.0979792\n            },\n            {\n                \"lat\": 43.4256495,\n                \"long\": -4.097847\n            },\n            {\n                \"lat\": 43.4254478,\n                \"long\": -4.0979395\n            },\n            {\n                \"lat\": 43.4253692,\n                \"long\": -4.0979737\n            },\n            {\n                \"lat\": 43.4252951,\n                \"long\": -4.0980055\n            },\n            {\n                \"lat\": 43.4251535,\n                \"long\": -4.0981422\n            },\n            {\n                \"lat\": 43.4250506,\n                \"long\": -4.0981942\n            },\n            {\n                \"lat\": 43.4249845,\n                \"long\": -4.0982306\n            },\n            {\n                \"lat\": 43.4249444,\n                \"long\": -4.0982548\n            },\n            {\n                \"lat\": 43.424875,\n                \"long\": -4.098278\n            },\n            {\n                \"lat\": 43.4248255,\n                \"long\": -4.0982941\n            },\n            {\n                \"lat\": 43.424772,\n                \"long\": -4.0982992\n            },\n            {\n                \"lat\": 43.4247747,\n                \"long\": -4.0983835\n            },\n            {\n                \"lat\": 43.4247775,\n                \"long\": -4.0984182\n            },\n            {\n                \"lat\": 43.4247803,\n                \"long\": -4.0984533\n            },\n            {\n                \"lat\": 43.4247979,\n                \"long\": -4.0985222\n            },\n            {\n                \"lat\": 43.4248163,\n                \"long\": -4.0985908\n            },\n            {\n                \"lat\": 43.4248428,\n                \"long\": -4.098651\n            },\n            {\n                \"lat\": 43.4248676,\n                \"long\": -4.0987112\n            },\n            {\n                \"lat\": 43.4248887,\n                \"long\": -4.0987526\n            },\n            {\n                \"lat\": 43.4249978,\n                \"long\": -4.09871\n            },\n            {\n                \"lat\": 43.4251136,\n                \"long\": -4.0986516\n            },\n            {\n                \"lat\": 43.4251272,\n                \"long\": -4.0987821\n            },\n            {\n                \"lat\": 43.425168,\n                \"long\": -4.0988612\n            },\n            {\n                \"lat\": 43.4252216,\n                \"long\": -4.0989197\n            },\n            {\n                \"lat\": 43.4252891,\n                \"long\": -4.0987713\n            },\n            {\n                \"lat\": 43.4253745,\n                \"long\": -4.0988298\n            },\n            {\n                \"lat\": 43.4254296,\n                \"long\": -4.0990725\n            },\n            {\n                \"lat\": 43.4254501,\n                \"long\": -4.0992537\n            },\n            {\n                \"lat\": 43.4254396,\n                \"long\": -4.099457\n            },\n            {\n                \"lat\": 43.4256044,\n                \"long\": -4.1000079\n            },\n            {\n                \"lat\": 43.4258299,\n                \"long\": -4.1000936\n            },\n            {\n                \"lat\": 43.4258031,\n                \"long\": -4.1003426\n            },\n            {\n                \"lat\": 43.425729,\n                \"long\": -4.1007161\n            },\n            {\n                \"lat\": 43.4256124,\n                \"long\": -4.100891\n            },\n            {\n                \"lat\": 43.425447,\n                \"long\": -4.1008831\n            },\n            {\n                \"lat\": 43.4253367,\n                \"long\": -4.1010028\n            },\n            {\n                \"lat\": 43.4252642,\n                \"long\": -4.1009965\n            },\n            {\n                \"lat\": 43.4252311,\n                \"long\": -4.1011053\n            },\n            {\n                \"lat\": 43.4252721,\n                \"long\": -4.1012172\n            },\n            {\n                \"lat\": 43.4251539,\n                \"long\": -4.101411\n            },\n            {\n                \"lat\": 43.4250625,\n                \"long\": -4.1015859\n            },\n            {\n                \"lat\": 43.4249411,\n                \"long\": -4.1015181\n            },\n            {\n                \"lat\": 43.4248655,\n                \"long\": -4.1013684\n            },\n            {\n                \"lat\": 43.4246922,\n                \"long\": -4.1013275\n            },\n            {\n                \"lat\": 43.4246796,\n                \"long\": -4.1015953\n            },\n            {\n                \"lat\": 43.4246228,\n                \"long\": -4.1017009\n            },\n            {\n                \"lat\": 43.4244432,\n                \"long\": -4.1016426\n            },\n            {\n                \"lat\": 43.4242493,\n                \"long\": -4.102272\n            },\n            {\n                \"lat\": 43.4245098,\n                \"long\": -4.1025602\n            },\n            {\n                \"lat\": 43.4243671,\n                \"long\": -4.1030154\n            },\n            {\n                \"lat\": 43.4239865,\n                \"long\": -4.1035081\n            },\n            {\n                \"lat\": 43.4238861,\n                \"long\": -4.103509\n            },\n            {\n                \"lat\": 43.4239186,\n                \"long\": -4.103097\n            },\n            {\n                \"lat\": 43.4237614,\n                \"long\": -4.1032698\n            },\n            {\n                \"lat\": 43.4236774,\n                \"long\": -4.103892\n            },\n            {\n                \"lat\": 43.4237351,\n                \"long\": -4.1042216\n            },\n            {\n                \"lat\": 43.4235618,\n                \"long\": -4.104755\n            },\n            {\n                \"lat\": 43.4230745,\n                \"long\": -4.1052007\n            },\n            {\n                \"lat\": 43.4231979,\n                \"long\": -4.1059439\n            },\n            {\n                \"lat\": 43.4227352,\n                \"long\": -4.1064961\n            },\n            {\n                \"lat\": 43.4223959,\n                \"long\": -4.1061917\n            },\n            {\n                \"lat\": 43.422216,\n                \"long\": -4.1058236\n            },\n            {\n                \"lat\": 43.4218664,\n                \"long\": -4.1068712\n            },\n            {\n                \"lat\": 43.4214756,\n                \"long\": -4.1075083\n            },\n            {\n                \"lat\": 43.4213265,\n                \"long\": -4.1067509\n            },\n            {\n                \"lat\": 43.4209512,\n                \"long\": -4.1075578\n            },\n            {\n                \"lat\": 43.4207045,\n                \"long\": -4.1091221\n            },\n            {\n                \"lat\": 43.4200927,\n                \"long\": -4.1120597\n            },\n            {\n                \"lat\": 43.4198527,\n                \"long\": -4.1126986\n            },\n            {\n                \"lat\": 43.4197189,\n                \"long\": -4.1126955\n            },\n            {\n                \"lat\": 43.4195694,\n                \"long\": -4.1129657\n            },\n            {\n                \"lat\": 43.4195443,\n                \"long\": -4.1127236\n            },\n            {\n                \"lat\": 43.4195942,\n                \"long\": -4.1124739\n            },\n            {\n                \"lat\": 43.4195785,\n                \"long\": -4.1121964\n            },\n            {\n                \"lat\": 43.4192054,\n                \"long\": -4.1117107\n            },\n            {\n                \"lat\": 43.4190013,\n                \"long\": -4.1114735\n            },\n            {\n                \"lat\": 43.4190149,\n                \"long\": -4.1114032\n            },\n            {\n                \"lat\": 43.4189605,\n                \"long\": -4.1113564\n            },\n            {\n                \"lat\": 43.4189103,\n                \"long\": -4.1113698\n            },\n            {\n                \"lat\": 43.4188664,\n                \"long\": -4.1117606\n            },\n            {\n                \"lat\": 43.4187542,\n                \"long\": -4.1120984\n            },\n            {\n                \"lat\": 43.4185774,\n                \"long\": -4.1127876\n            },\n            {\n                \"lat\": 43.4186284,\n                \"long\": -4.1128609\n            },\n            {\n                \"lat\": 43.4184969,\n                \"long\": -4.1135507\n            },\n            {\n                \"lat\": 43.4183631,\n                \"long\": -4.1136803\n            },\n            {\n                \"lat\": 43.4183053,\n                \"long\": -4.1138348\n            },\n            {\n                \"lat\": 43.4184051,\n                \"long\": -4.1140034\n            },\n            {\n                \"lat\": 43.4183937,\n                \"long\": -4.1141943\n            },\n            {\n                \"lat\": 43.4181376,\n                \"long\": -4.11482\n            },\n            {\n                \"lat\": 43.4180276,\n                \"long\": -4.1153939\n            },\n            {\n                \"lat\": 43.4180298,\n                \"long\": -4.1155859\n            },\n            {\n                \"lat\": 43.4179545,\n                \"long\": -4.1157583\n            },\n            {\n                \"lat\": 43.4178376,\n                \"long\": -4.115879\n            },\n            {\n                \"lat\": 43.4176837,\n                \"long\": -4.1157422\n            },\n            {\n                \"lat\": 43.4175122,\n                \"long\": -4.1158736\n            },\n            {\n                \"lat\": 43.4174367,\n                \"long\": -4.1157651\n            },\n            {\n                \"lat\": 43.4173568,\n                \"long\": -4.1158\n            },\n            {\n                \"lat\": 43.4173451,\n                \"long\": -4.1159072\n            },\n            {\n                \"lat\": 43.4174382,\n                \"long\": -4.1159594\n            },\n            {\n                \"lat\": 43.4174191,\n                \"long\": -4.1161245\n            },\n            {\n                \"lat\": 43.4173665,\n                \"long\": -4.1162988\n            },\n            {\n                \"lat\": 43.4173665,\n                \"long\": -4.116433\n            },\n            {\n                \"lat\": 43.4175219,\n                \"long\": -4.1161874\n            },\n            {\n                \"lat\": 43.4177129,\n                \"long\": -4.1160721\n            },\n            {\n                \"lat\": 43.4178779,\n                \"long\": -4.1161173\n            },\n            {\n                \"lat\": 43.4179155,\n                \"long\": -4.1163001\n            },\n            {\n                \"lat\": 43.4178148,\n                \"long\": -4.1163887\n            },\n            {\n                \"lat\": 43.4176104,\n                \"long\": -4.1166526\n            },\n            {\n                \"lat\": 43.4174935,\n                \"long\": -4.1166824\n            },\n            {\n                \"lat\": 43.4174766,\n                \"long\": -4.1171411\n            },\n            {\n                \"lat\": 43.4173264,\n                \"long\": -4.1174221\n            },\n            {\n                \"lat\": 43.4170719,\n                \"long\": -4.1173726\n            },\n            {\n                \"lat\": 43.4168688,\n                \"long\": -4.1176415\n            },\n            {\n                \"lat\": 43.4168621,\n                \"long\": -4.1178669\n            },\n            {\n                \"lat\": 43.4173056,\n                \"long\": -4.1196166\n            },\n            {\n                \"lat\": 43.4173305,\n                \"long\": -4.1201646\n            },\n            {\n                \"lat\": 43.4162586,\n                \"long\": -4.1222614\n            },\n            {\n                \"lat\": 43.4162722,\n                \"long\": -4.1238819\n            },\n            {\n                \"lat\": 43.4149951,\n                \"long\": -4.1256813\n            },\n            {\n                \"lat\": 43.4150925,\n                \"long\": -4.1269339\n            },\n            {\n                \"lat\": 43.4146348,\n                \"long\": -4.1274412\n            },\n            {\n                \"lat\": 43.4148044,\n                \"long\": -4.1279176\n            },\n            {\n                \"lat\": 43.4146483,\n                \"long\": -4.1284219\n            },\n            {\n                \"lat\": 43.4149401,\n                \"long\": -4.1289543\n            },\n            {\n                \"lat\": 43.4145314,\n                \"long\": -4.1294847\n            },\n            {\n                \"lat\": 43.4146076,\n                \"long\": -4.1299724\n            },\n            {\n                \"lat\": 43.4143755,\n                \"long\": -4.1309384\n            },\n            {\n                \"lat\": 43.4145771,\n                \"long\": -4.131133\n            },\n            {\n                \"lat\": 43.4141768,\n                \"long\": -4.1314427\n            },\n            {\n                \"lat\": 43.4141205,\n                \"long\": -4.1317615\n            },\n            {\n                \"lat\": 43.414492,\n                \"long\": -4.1317184\n            },\n            {\n                \"lat\": 43.4145099,\n                \"long\": -4.1318416\n            },\n            {\n                \"lat\": 43.4142861,\n                \"long\": -4.1321374\n            },\n            {\n                \"lat\": 43.414595,\n                \"long\": -4.132464\n            },\n            {\n                \"lat\": 43.4144233,\n                \"long\": -4.1328095\n            },\n            {\n                \"lat\": 43.4145164,\n                \"long\": -4.1331311\n            },\n            {\n                \"lat\": 43.4141503,\n                \"long\": -4.1337423\n            },\n            {\n                \"lat\": 43.4137183,\n                \"long\": -4.1319062\n            },\n            {\n                \"lat\": 43.4128347,\n                \"long\": -4.1311116\n            },\n            {\n                \"lat\": 43.4124931,\n                \"long\": -4.1310558\n            },\n            {\n                \"lat\": 43.4122483,\n                \"long\": -4.1312242\n            },\n            {\n                \"lat\": 43.4112194,\n                \"long\": -4.1323784\n            },\n            {\n                \"lat\": 43.4109835,\n                \"long\": -4.1325593\n            },\n            {\n                \"lat\": 43.4107308,\n                \"long\": -4.1326164\n            },\n            {\n                \"lat\": 43.4100031,\n                \"long\": -4.1324422\n            },\n            {\n                \"lat\": 43.4097815,\n                \"long\": -4.1320923\n            },\n            {\n                \"lat\": 43.4095701,\n                \"long\": -4.131619\n            },\n            {\n                \"lat\": 43.4092308,\n                \"long\": -4.1313286\n            },\n            {\n                \"lat\": 43.4075337,\n                \"long\": -4.131754\n            },\n            {\n                \"lat\": 43.4060158,\n                \"long\": -4.1322815\n            },\n            {\n                \"lat\": 43.404677,\n                \"long\": -4.1319849\n            },\n            {\n                \"lat\": 43.404101,\n                \"long\": -4.1319618\n            },\n            {\n                \"lat\": 43.4030338,\n                \"long\": -4.1315221\n            },\n            {\n                \"lat\": 43.398515,\n                \"long\": -4.1286348\n            },\n            {\n                \"lat\": 43.3975587,\n                \"long\": -4.1279132\n            },\n            {\n                \"lat\": 43.3956739,\n                \"long\": -4.1272855\n            },\n            {\n                \"lat\": 43.3952965,\n                \"long\": -4.1272045\n            },\n            {\n                \"lat\": 43.3938436,\n                \"long\": -4.1266095\n            },\n            {\n                \"lat\": 43.3913939,\n                \"long\": -4.1266629\n            },\n            {\n                \"lat\": 43.3891431,\n                \"long\": -4.1293746\n            },\n            {\n                \"lat\": 43.3856347,\n                \"long\": -4.1344949\n            },\n            {\n                \"lat\": 43.3835155,\n                \"long\": -4.1384431\n            },\n            {\n                \"lat\": 43.3827335,\n                \"long\": -4.138305\n            },\n            {\n                \"lat\": 43.3816085,\n                \"long\": -4.1418641\n            },\n            {\n                \"lat\": 43.3806627,\n                \"long\": -4.1436981\n            },\n            {\n                \"lat\": 43.3795232,\n                \"long\": -4.1441952\n            },\n            {\n                \"lat\": 43.3796236,\n                \"long\": -4.1422589\n            },\n            {\n                \"lat\": 43.379022,\n                \"long\": -4.137569\n            },\n            {\n                \"lat\": 43.378373,\n                \"long\": -4.1312734\n            },\n            {\n                \"lat\": 43.3770638,\n                \"long\": -4.1270643\n            },\n            {\n                \"lat\": 43.376696,\n                \"long\": -4.1250947\n            },\n            {\n                \"lat\": 43.3764604,\n                \"long\": -4.1197329\n            },\n            {\n                \"lat\": 43.3755064,\n                \"long\": -4.115074\n            },\n            {\n                \"lat\": 43.3745785,\n                \"long\": -4.1114155\n            },\n            {\n                \"lat\": 43.3726478,\n                \"long\": -4.1080846\n            },\n            {\n                \"lat\": 43.3670703,\n                \"long\": -4.0972452\n            },\n            {\n                \"lat\": 43.3683138,\n                \"long\": -4.0952681\n            },\n            {\n                \"lat\": 43.3727681,\n                \"long\": -4.089917\n            },\n            {\n                \"lat\": 43.3689871,\n                \"long\": -4.0860354\n            },\n            {\n                \"lat\": 43.3679841,\n                \"long\": -4.0854498\n            },\n            {\n                \"lat\": 43.3635325,\n                \"long\": -4.0820012\n            },\n            {\n                \"lat\": 43.361985,\n                \"long\": -4.0751736\n            },\n            {\n                \"lat\": 43.364536,\n                \"long\": -4.070072\n            },\n            {\n                \"lat\": 43.3661072,\n                \"long\": -4.0686433\n            },\n            {\n                \"lat\": 43.3676039,\n                \"long\": -4.06746\n            },\n            {\n                \"lat\": 43.3685263,\n                \"long\": -4.0670442\n            },\n            {\n                \"lat\": 43.3681228,\n                \"long\": -4.0653849\n            },\n            {\n                \"lat\": 43.3679626,\n                \"long\": -4.0647262\n            },\n            {\n                \"lat\": 43.3678905,\n                \"long\": -4.0637622\n            },\n            {\n                \"lat\": 43.3680231,\n                \"long\": -4.063061\n            },\n            {\n                \"lat\": 43.3681243,\n                \"long\": -4.0618532\n            },\n            {\n                \"lat\": 43.3686037,\n                \"long\": -4.060652\n            },\n            {\n                \"lat\": 43.3692014,\n                \"long\": -4.0583419\n            },\n            {\n                \"lat\": 43.3682384,\n                \"long\": -4.0577265\n            },\n            {\n                \"lat\": 43.3676527,\n                \"long\": -4.0573523\n            },\n            {\n                \"lat\": 43.3675809,\n                \"long\": -4.0572616\n            },\n            {\n                \"lat\": 43.3671904,\n                \"long\": -4.0567685\n            },\n            {\n                \"lat\": 43.3666914,\n                \"long\": -4.0561384\n            },\n            {\n                \"lat\": 43.3663869,\n                \"long\": -4.0559603\n            },\n            {\n                \"lat\": 43.3654901,\n                \"long\": -4.0555622\n            },\n            {\n                \"lat\": 43.3639844,\n                \"long\": -4.0532345\n            },\n            {\n                \"lat\": 43.3630841,\n                \"long\": -4.0518427\n            },\n            {\n                \"lat\": 43.3624452,\n                \"long\": -4.04787\n            },\n            {\n                \"lat\": 43.3633769,\n                \"long\": -4.0483921\n            },\n            {\n                \"lat\": 43.3647344,\n                \"long\": -4.0486253\n            },\n            {\n                \"lat\": 43.3650937,\n                \"long\": -4.0487302\n            },\n            {\n                \"lat\": 43.3657385,\n                \"long\": -4.0491116\n            },\n            {\n                \"lat\": 43.3664581,\n                \"long\": -4.050173\n            },\n            {\n                \"lat\": 43.366736,\n                \"long\": -4.0503136\n            },\n            {\n                \"lat\": 43.3670698,\n                \"long\": -4.0502453\n            },\n            {\n                \"lat\": 43.3679473,\n                \"long\": -4.0498038\n            },\n            {\n                \"lat\": 43.3685513,\n                \"long\": -4.0497278\n            },\n            {\n                \"lat\": 43.3694953,\n                \"long\": -4.0498922\n            },\n            {\n                \"lat\": 43.3701858,\n                \"long\": -4.0502003\n            },\n            {\n                \"lat\": 43.3716162,\n                \"long\": -4.0503484\n            },\n            {\n                \"lat\": 43.3725538,\n                \"long\": -4.0502165\n            },\n            {\n                \"lat\": 43.3735121,\n                \"long\": -4.049801\n            },\n            {\n                \"lat\": 43.3742759,\n                \"long\": -4.0489994\n            },\n            {\n                \"lat\": 43.3746335,\n                \"long\": -4.0482897\n            },\n            {\n                \"lat\": 43.3757129,\n                \"long\": -4.0474318\n            },\n            {\n                \"lat\": 43.3819364,\n                \"long\": -4.0443291\n            },\n            {\n                \"lat\": 43.3823966,\n                \"long\": -4.0442259\n            },\n            {\n                \"lat\": 43.3837573,\n                \"long\": -4.0441134\n            }\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/593e82201d727.png\",\n        \"id\": \"591ed02589cc36d6018b4567\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -4.1441952,\n                    43.361985,\n                    -4.0441134,\n                    43.4265577\n                ],\n                \"id\": \"5c9b557a9650e67d42985e89\",\n                \"name\": \"es.santillana\",\n                \"type\": \"city\",\n                \"visible_name\": \"es.santillana\",\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"es.santillana\",\n        \"key_name\": \"Santillana del Mar, Cantabria\",\n        \"locales\": [\n            \"es\"\n        ],\n        \"name\": \"Santillana del Mar\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17715\",\n                \"options\": []\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17716\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17717\",\n                \"options\": [\n                    \"ios\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17718\",\n                \"options\": [\n                    \"android\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17719\",\n                \"options\": [\n                    \"inperson\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771a\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771b\",\n                \"options\": [\n                    \"inperson\",\n                    \"email\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771c\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771d\",\n                \"options\": [\n                    \"facebook\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771e\",\n                \"options\": [\n                    \"twitter\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17722\",\n                \"options\": [\n                    \"web_channel\"\n                ]\n            },\n            {\n                \"id\": \"60c09cdccdf34808168b4573\",\n                \"options\": [\n                    \"android\"\n                ]\n            }\n        ],\n        \"lat\": 43.3908395,\n        \"long\": -4.1079477,\n        \"tags\": [],\n        \"third_emails\": [\n            \"comentarios.santillanadelmar@radmas.com\"\n        ],\n        \"timezone\": \"Europe/Madrid\",\n        \"typologies\": [\n            {\n                \"id\": \"5922da20609044e5108b4582\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                \"visible_name\": \"Aviso\",\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            }\n        ],\n        \"typology_nodes\": [\n            {\n                \"id\": \"5e30524701394a650e8b4584\",\n                \"color\": \"#66de80\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar solucionado\"\n            },\n            {\n                \"id\": \"5e305355fee15c9d0d8b4600\",\n                \"color\": \"#055ee3\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Validar ejecución\"\n            },\n            {\n                \"id\": \"5e30514401394a650e8b4567\",\n                \"color\": \"#64bbf5\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificar ejecución\"\n            },\n            {\n                \"id\": \"5ea985b81b0e8002048b457b\",\n                \"color\": \"#66de80\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar solucionado\"\n            },\n            {\n                \"id\": \"5ea985e61b0e8000048b45a7\",\n                \"color\": \"#055ee3\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Validar ejecución\"\n            },\n            {\n                \"id\": \"5ea985981b0e8003048b4580\",\n                \"color\": \"#64bbf5\",\n                \"order\": 0,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Planificar ejecución\"\n            },\n            {\n                \"id\": \"5922da7fe73d003d128b456f\",\n                \"color\": \"#ffc107\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"5ea98315abd2d613048b4567\",\n                \"color\": \"#ffc107\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"5922da62f766e68f128b457d\",\n                \"color\": \"#64bbf5\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En ejecución\"\n            },\n            {\n                \"id\": \"5ea983aa7bf384b3038b4577\",\n                \"color\": \"#64bbf5\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En ejecución\"\n            },\n            {\n                \"id\": \"5922dab960904448118b4568\",\n                \"color\": \"#21618c\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"5ea983d01b0e8000048b45a3\",\n                \"color\": \"#21618c\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"5a422779083f200b3a8b45ae\",\n                \"color\": \"#8cbc2d\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Validado\"\n            },\n            {\n                \"id\": \"5ea983ee7bf384c5038b456c\",\n                \"color\": \"#8cbc2d\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Validado\"\n            },\n            {\n                \"id\": \"5922da9a309fb549128b4567\",\n                \"color\": \"#d35400\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar cancelado\"\n            },\n            {\n                \"id\": \"5ea9851a1031bf2a048b457f\",\n                \"color\": \"#d35400\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Pte. Comunicar cancelado\"\n            },\n            {\n                \"id\": \"5922dade309fb52b128b4573\",\n                \"color\": \"#33691e\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"5ea985377bf384b6038b4573\",\n                \"color\": \"#33691e\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"5a42276a6c6836d3448b4567\",\n                \"color\": \"#b71b1c\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"5ea985561031bffd038b4588\",\n                \"color\": \"#b71b1c\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"5aa105965edb8bdf048b4581\",\n                \"color\": \"#3abdaa\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"5922da20609044e5108b4582\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"5ea98570abd2d61e048b4567\",\n                \"color\": \"#3abdaa\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"5ea97e211b0e8003048b4575\",\n                    \"color\": \"#f50b0b\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 0,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero solicitar un servicio municipal relativo al Coronavirus.\",\n                    \"visible_name\": \"Coronavirus\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": false,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": false,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            }\n        ],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": true,\n            \"requests_process\": true,\n            \"requests_comments\": true,\n            \"requests_worknotes\": true,\n            \"requests_reiterations\": true,\n            \"requests_complaints\": true,\n            \"user_evaluation\": true,\n            \"service_survey\": true,\n            \"alerts\": true,\n            \"inventory\": true,\n            \"backoffice_admin\": true,\n            \"app_configuration\": true,\n            \"notifications\": true,\n            \"planned_requests\": true,\n            \"planning\": true,\n            \"users\": true,\n            \"predetermined_response\": true,\n            \"predetermined_response_external_source\": true,\n            \"company_enquiry\": true,\n            \"layer\": true,\n            \"jurisdiction_element\": true,\n            \"webhook\": true,\n            \"user_guide\": true,\n            \"worklog\": false,\n            \"calendar\": false\n        },\n        \"app_urls\": {\n            \"web_url\": \"https://mapa.mejoratuciudad.org\",\n            \"google_play_manager\": \"https://mejoratuciudad.org/\",\n            \"google_play_citizens\": \"https://mejoratuciudad.org/\",\n            \"app_store\": \"https://mejoratuciudad.org/\"\n        }\n    },\n    {\n        \"only_registered_users\": true,\n        \"max_upload_files\": 5,\n        \"automatic_typology\": false,\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5d9ee7d1de2efef4018b4582\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Riv_Barrios\",\n                \"name\": \"Barrios\",\n                \"description\": \"Barrios\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"677fb4de2a1d95d91e008633\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:geofences\",\n                \"name\": \"geofence\",\n                \"description\": \"geofence\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"GEOFENCE\"\n            }\n        ],\n        \"accepted_id_documents\": [\n            \"idSpain\"\n        ],\n        \"buttons\": [],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5cb6e8833f960e8b457a\",\n                \"name\": \"Gestores Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5d2101394ad80d8b45f5\",\n                \"name\": \"Técnicos Avisos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e21fee15c120d8b457b\",\n                \"name\": \"Solicitantes Internos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f61effee15c140d8b456b\",\n                \"name\": \"Gerentes de la ciudad\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e5f8c5e3b5399d7048b45ee\",\n                \"name\": \"Gestores de la plataforma\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e73bd8502be88c10f8b4568\",\n                \"name\": \"Comunicación\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e94d7c102be88f82b8b4575\",\n                \"name\": \"Supervisores Avisos\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"64eba83850296950750b5d02\",\n                \"name\": \"Canal pruebas\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64eba8d39c0de571c50a3264\",\n                \"name\": \"Canal pruebas 02\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"673db8696b60131e9c0210a7\",\n                \"name\": \"Global Externo\"\n            }\n        ],\n        \"company_emails\": [\n            \"comentarios.rivas@mejoratuciudad.org\"\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": 40.411038646944,\n                \"long\": -3.4700083830236\n            },\n            {\n                \"lat\": 40.287119395069,\n                \"long\": -3.5850750207097\n            }\n        ],\n        \"geo_perimeter\": [\n            {\n                \"lat\": 40.327458668663,\n                \"long\": -3.4704022742792\n            },\n            {\n                \"lat\": 40.327434029989,\n                \"long\": -3.4703908026043\n            },\n            {\n                \"lat\": 40.327368875174,\n                \"long\": -3.470350915856\n            },\n            {\n                \"lat\": 40.327291498271,\n                \"long\": -3.4703035283326\n            },\n            {\n                \"lat\": 40.327285296905,\n                \"long\": -3.4702998361378\n            },\n            {\n                \"lat\": 40.327133635412,\n                \"long\": -3.4702200326118\n            },\n            {\n                \"lat\": 40.327124994918,\n                \"long\": -3.4702179715072\n            },\n            {\n                \"lat\": 40.32701905769,\n                \"long\": -3.4701929872426\n            },\n            {\n                \"lat\": 40.32695113805,\n                \"long\": -3.4701905147989\n            },\n            {\n                \"lat\": 40.326892947161,\n                \"long\": -3.4701883452972\n            },\n            {\n                \"lat\": 40.326867059785,\n                \"long\": -3.4701959347768\n            },\n            {\n                \"lat\": 40.32681781042,\n                \"long\": -3.4702104249609\n            },\n            {\n                \"lat\": 40.32678260407,\n                \"long\": -3.4702277199922\n            },\n            {\n                \"lat\": 40.326697116681,\n                \"long\": -3.4702695036216\n            },\n            {\n                \"lat\": 40.326601607166,\n                \"long\": -3.4702945022837\n            },\n            {\n                \"lat\": 40.326487609116,\n                \"long\": -3.4703243165032\n            },\n            {\n                \"lat\": 40.326424214662,\n                \"long\": -3.470338943758\n            },\n            {\n                \"lat\": 40.326296522934,\n                \"long\": -3.4703686627715\n            },\n            {\n                \"lat\": 40.326252335809,\n                \"long\": -3.470378950193\n            },\n            {\n                \"lat\": 40.32621626491,\n                \"long\": -3.470387292827\n            },\n            {\n                \"lat\": 40.326086499662,\n                \"long\": -3.4704173504046\n            },\n            {\n                \"lat\": 40.326080006488,\n                \"long\": -3.4704189533021\n            },\n            {\n                \"lat\": 40.325910686499,\n                \"long\": -3.470450030979\n            },\n            {\n                \"lat\": 40.325837747282,\n                \"long\": -3.4704634146079\n            },\n            {\n                \"lat\": 40.325736497812,\n                \"long\": -3.4704820163958\n            },\n            {\n                \"lat\": 40.325595487572,\n                \"long\": -3.4705079933123\n            },\n            {\n                \"lat\": 40.325562399203,\n                \"long\": -3.4705140022779\n            },\n            {\n                \"lat\": 40.325387759562,\n                \"long\": -3.4705461019544\n            },\n            {\n                \"lat\": 40.325333392735,\n                \"long\": -3.4705562007276\n            },\n            {\n                \"lat\": 40.325214389234,\n                \"long\": -3.4705540795342\n            },\n            {\n                \"lat\": 40.325145834165,\n                \"long\": -3.4705527795083\n            },\n            {\n                \"lat\": 40.325040794118,\n                \"long\": -3.4705508730024\n            },\n            {\n                \"lat\": 40.324992237572,\n                \"long\": -3.4705500649851\n            },\n            {\n                \"lat\": 40.324949907762,\n                \"long\": -3.4705467105759\n            },\n            {\n                \"lat\": 40.324869300751,\n                \"long\": -3.4705403830423\n            },\n            {\n                \"lat\": 40.324792206287,\n                \"long\": -3.4705343153352\n            },\n            {\n                \"lat\": 40.324786352358,\n                \"long\": -3.4705338038465\n            },\n            {\n                \"lat\": 40.324778156569,\n                \"long\": -3.4705331583867\n            },\n            {\n                \"lat\": 40.324691785236,\n                \"long\": -3.4705264377323\n            },\n            {\n                \"lat\": 40.324521474993,\n                \"long\": -3.4705130133671\n            },\n            {\n                \"lat\": 40.324512208658,\n                \"long\": -3.4705097708649\n            },\n            {\n                \"lat\": 40.324487917413,\n                \"long\": -3.4705014802348\n            },\n            {\n                \"lat\": 40.324421252221,\n                \"long\": -3.4704785348385\n            },\n            {\n                \"lat\": 40.324411280005,\n                \"long\": -3.4704716384481\n            },\n            {\n                \"lat\": 40.324343992215,\n                \"long\": -3.4704245583452\n            },\n            {\n                \"lat\": 40.324318298296,\n                \"long\": -3.4704067235667\n            },\n            {\n                \"lat\": 40.324172972974,\n                \"long\": -3.4702752930117\n            },\n            {\n                \"lat\": 40.324119834003,\n                \"long\": -3.4702271343591\n            },\n            {\n                \"lat\": 40.324101163238,\n                \"long\": -3.4702102901191\n            },\n            {\n                \"lat\": 40.324003154037,\n                \"long\": -3.4701409857893\n            },\n            {\n                \"lat\": 40.323932723958,\n                \"long\": -3.4700911772027\n            },\n            {\n                \"lat\": 40.323892478462,\n                \"long\": -3.4700626479397\n            },\n            {\n                \"lat\": 40.323830864121,\n                \"long\": -3.4700604549247\n            },\n            {\n                \"lat\": 40.323779158236,\n                \"long\": -3.4700586837687\n            },\n            {\n                \"lat\": 40.323763394411,\n                \"long\": -3.4700581035907\n            },\n            {\n                \"lat\": 40.323662595727,\n                \"long\": -3.4700544617068\n            },\n            {\n                \"lat\": 40.323533422059,\n                \"long\": -3.4700497990634\n            },\n            {\n                \"lat\": 40.323489935879,\n                \"long\": -3.4700427880795\n            },\n            {\n                \"lat\": 40.323430333642,\n                \"long\": -3.4700331934589\n            },\n            {\n                \"lat\": 40.323386380749,\n                \"long\": -3.4700301813252\n            },\n            {\n                \"lat\": 40.323379715528,\n                \"long\": -3.4700297819727\n            },\n            {\n                \"lat\": 40.323365845025,\n                \"long\": -3.4700288618143\n            },\n            {\n                \"lat\": 40.323243983459,\n                \"long\": -3.4700206010264\n            },\n            {\n                \"lat\": 40.323181386251,\n                \"long\": -3.470016400233\n            },\n            {\n                \"lat\": 40.323060694893,\n                \"long\": -3.4700083830236\n            },\n            {\n                \"lat\": 40.323016081717,\n                \"long\": -3.4700126641894\n            },\n            {\n                \"lat\": 40.323005717069,\n                \"long\": -3.4700136516693\n            },\n            {\n                \"lat\": 40.322979399804,\n                \"long\": -3.4700161764081\n            },\n            {\n                \"lat\": 40.322973091116,\n                \"long\": -3.4700167211891\n            },\n            {\n                \"lat\": 40.32295722859,\n                \"long\": -3.4700182590721\n            },\n            {\n                \"lat\": 40.322925413446,\n                \"long\": -3.4700213342112\n            },\n            {\n                \"lat\": 40.322917031733,\n                \"long\": -3.4700221000276\n            },\n            {\n                \"lat\": 40.322888798666,\n                \"long\": -3.4700304968197\n            },\n            {\n                \"lat\": 40.322675744099,\n                \"long\": -3.4700935223308\n            },\n            {\n                \"lat\": 40.322558212433,\n                \"long\": -3.47012825438\n            },\n            {\n                \"lat\": 40.322382249839,\n                \"long\": -3.4701755286068\n            },\n            {\n                \"lat\": 40.322126378526,\n                \"long\": -3.4702441413964\n            },\n            {\n                \"lat\": 40.32205792369,\n                \"long\": -3.4702624992868\n            },\n            {\n                \"lat\": 40.322041779883,\n                \"long\": -3.4702667423675\n            },\n            {\n                \"lat\": 40.322026627544,\n                \"long\": -3.4702708746206\n            },\n            {\n                \"lat\": 40.322019144814,\n                \"long\": -3.4702721174569\n            },\n            {\n                \"lat\": 40.322007966003,\n                \"long\": -3.4702739231724\n            },\n            {\n                \"lat\": 40.321996156084,\n                \"long\": -3.4702758422134\n            },\n            {\n                \"lat\": 40.321898702322,\n                \"long\": -3.4702915269926\n            },\n            {\n                \"lat\": 40.321884367969,\n                \"long\": -3.4702938993303\n            },\n            {\n                \"lat\": 40.321691532983,\n                \"long\": -3.4703251654226\n            },\n            {\n                \"lat\": 40.321449565928,\n                \"long\": -3.470364211961\n            },\n            {\n                \"lat\": 40.321449475839,\n                \"long\": -3.4703642113358\n            },\n            {\n                \"lat\": 40.321425746761,\n                \"long\": -3.4703727567734\n            },\n            {\n                \"lat\": 40.321310352263,\n                \"long\": -3.4704136231708\n            },\n            {\n                \"lat\": 40.321230956778,\n                \"long\": -3.4704416741716\n            },\n            {\n                \"lat\": 40.321160899909,\n                \"long\": -3.4704551946465\n            },\n            {\n                \"lat\": 40.32083973805,\n                \"long\": -3.4705172313299\n            },\n            {\n                \"lat\": 40.320553559304,\n                \"long\": -3.4705725658679\n            },\n            {\n                \"lat\": 40.320448158412,\n                \"long\": -3.4705929028346\n            },\n            {\n                \"lat\": 40.320394150463,\n                \"long\": -3.4706033564725\n            },\n            {\n                \"lat\": 40.320370076806,\n                \"long\": -3.4706080151197\n            },\n            {\n                \"lat\": 40.320225838503,\n                \"long\": -3.4706302009362\n            },\n            {\n                \"lat\": 40.320180042623,\n                \"long\": -3.4706372981725\n            },\n            {\n                \"lat\": 40.319985230786,\n                \"long\": -3.4706672540995\n            },\n            {\n                \"lat\": 40.3199652174,\n                \"long\": -3.4706704107698\n            },\n            {\n                \"lat\": 40.319942139517,\n                \"long\": -3.4706738992622\n            },\n            {\n                \"lat\": 40.319938172685,\n                \"long\": -3.4706745779253\n            },\n            {\n                \"lat\": 40.319490943619,\n                \"long\": -3.4707433874918\n            },\n            {\n                \"lat\": 40.319485354208,\n                \"long\": -3.470744290279\n            },\n            {\n                \"lat\": 40.31948382172,\n                \"long\": -3.4707445150372\n            },\n            {\n                \"lat\": 40.319477212188,\n                \"long\": -3.4707968460809\n            },\n            {\n                \"lat\": 40.319467810826,\n                \"long\": -3.4708710501045\n            },\n            {\n                \"lat\": 40.319403908906,\n                \"long\": -3.4712978603627\n            },\n            {\n                \"lat\": 40.319360711398,\n                \"long\": -3.4716179415807\n            },\n            {\n                \"lat\": 40.319351422157,\n                \"long\": -3.4716866142047\n            },\n            {\n                \"lat\": 40.319350492463,\n                \"long\": -3.4716936697819\n            },\n            {\n                \"lat\": 40.319320483274,\n                \"long\": -3.4719166215306\n            },\n            {\n                \"lat\": 40.319313888578,\n                \"long\": -3.4719651860127\n            },\n            {\n                \"lat\": 40.31931314577,\n                \"long\": -3.4719705950734\n            },\n            {\n                \"lat\": 40.319310914942,\n                \"long\": -3.4719874107418\n            },\n            {\n                \"lat\": 40.31930385632,\n                \"long\": -3.4720392675989\n            },\n            {\n                \"lat\": 40.319270964784,\n                \"long\": -3.4722839735759\n            },\n            {\n                \"lat\": 40.319230271512,\n                \"long\": -3.472585827403\n            },\n            {\n                \"lat\": 40.319217542571,\n                \"long\": -3.4726803698958\n            },\n            {\n                \"lat\": 40.319162448287,\n                \"long\": -3.4730887593635\n            },\n            {\n                \"lat\": 40.319136634969,\n                \"long\": -3.4732984390235\n            },\n            {\n                \"lat\": 40.319121071737,\n                \"long\": -3.4734249759592\n            },\n            {\n                \"lat\": 40.319104670577,\n                \"long\": -3.473558098202\n            },\n            {\n                \"lat\": 40.319101503446,\n                \"long\": -3.4735834993494\n            },\n            {\n                \"lat\": 40.319048756427,\n                \"long\": -3.4740119128348\n            },\n            {\n                \"lat\": 40.319037039271,\n                \"long\": -3.4741450675588\n            },\n            {\n                \"lat\": 40.319003399777,\n                \"long\": -3.4745271224121\n            },\n            {\n                \"lat\": 40.319001609254,\n                \"long\": -3.4749634244213\n            },\n            {\n                \"lat\": 40.319001260329,\n                \"long\": -3.4750484015008\n            },\n            {\n                \"lat\": 40.319002113379,\n                \"long\": -3.475060059797\n            },\n            {\n                \"lat\": 40.319002793982,\n                \"long\": -3.4750698336819\n            },\n            {\n                \"lat\": 40.319002963045,\n                \"long\": -3.4750725419709\n            },\n            {\n                \"lat\": 40.31900449621,\n                \"long\": -3.4750940918497\n            },\n            {\n                \"lat\": 40.319007733039,\n                \"long\": -3.4751395468092\n            },\n            {\n                \"lat\": 40.319017527708,\n                \"long\": -3.4752773247061\n            },\n            {\n                \"lat\": 40.319046683932,\n                \"long\": -3.4754390139001\n            },\n            {\n                \"lat\": 40.319067208044,\n                \"long\": -3.4755527386448\n            },\n            {\n                \"lat\": 40.319099447332,\n                \"long\": -3.4757313985631\n            },\n            {\n                \"lat\": 40.319118384394,\n                \"long\": -3.4758366379152\n            },\n            {\n                \"lat\": 40.319132214293,\n                \"long\": -3.4759131225662\n            },\n            {\n                \"lat\": 40.319139437032,\n                \"long\": -3.4759531914211\n            },\n            {\n                \"lat\": 40.319161962467,\n                \"long\": -3.4761058893816\n            },\n            {\n                \"lat\": 40.31919912565,\n                \"long\": -3.4763575587296\n            },\n            {\n                \"lat\": 40.319254079927,\n                \"long\": -3.4767298788797\n            },\n            {\n                \"lat\": 40.319292644364,\n                \"long\": -3.4769909748237\n            },\n            {\n                \"lat\": 40.319308628754,\n                \"long\": -3.47713468217\n            },\n            {\n                \"lat\": 40.319321052813,\n                \"long\": -3.4772459968139\n            },\n            {\n                \"lat\": 40.319335734107,\n                \"long\": -3.4773779250267\n            },\n            {\n                \"lat\": 40.319339468574,\n                \"long\": -3.4774117314458\n            },\n            {\n                \"lat\": 40.319345462302,\n                \"long\": -3.4774656806142\n            },\n            {\n                \"lat\": 40.319367092013,\n                \"long\": -3.4776602747097\n            },\n            {\n                \"lat\": 40.319369959033,\n                \"long\": -3.4776859536906\n            },\n            {\n                \"lat\": 40.319458597464,\n                \"long\": -3.4782123485847\n            },\n            {\n                \"lat\": 40.319487879618,\n                \"long\": -3.4783861641767\n            },\n            {\n                \"lat\": 40.319497551486,\n                \"long\": -3.478443788244\n            },\n            {\n                \"lat\": 40.319523087364,\n                \"long\": -3.4784559740127\n            },\n            {\n                \"lat\": 40.319533697526,\n                \"long\": -3.4784609923582\n            },\n            {\n                \"lat\": 40.319563909313,\n                \"long\": -3.4784753297701\n            },\n            {\n                \"lat\": 40.31957335074,\n                \"long\": -3.4784797513652\n            },\n            {\n                \"lat\": 40.319666009883,\n                \"long\": -3.4784691061782\n            },\n            {\n                \"lat\": 40.319687371897,\n                \"long\": -3.4784666675533\n            },\n            {\n                \"lat\": 40.319734963213,\n                \"long\": -3.4784612361519\n            },\n            {\n                \"lat\": 40.319874762729,\n                \"long\": -3.4784452740119\n            },\n            {\n                \"lat\": 40.319940381269,\n                \"long\": -3.4784377335039\n            },\n            {\n                \"lat\": 40.319951918616,\n                \"long\": -3.4784364025253\n            },\n            {\n                \"lat\": 40.319971027407,\n                \"long\": -3.4784341833788\n            },\n            {\n                \"lat\": 40.320053681209,\n                \"long\": -3.4784247621676\n            },\n            {\n                \"lat\": 40.320060307945,\n                \"long\": -3.4784344605094\n            },\n            {\n                \"lat\": 40.320115201522,\n                \"long\": -3.4785150031359\n            },\n            {\n                \"lat\": 40.320274688359,\n                \"long\": -3.4787489444567\n            },\n            {\n                \"lat\": 40.32032779112,\n                \"long\": -3.4788267677851\n            },\n            {\n                \"lat\": 40.320373729029,\n                \"long\": -3.4788943004868\n            },\n            {\n                \"lat\": 40.320494888646,\n                \"long\": -3.4790719461339\n            },\n            {\n                \"lat\": 40.320502052454,\n                \"long\": -3.4790824723182\n            },\n            {\n                \"lat\": 40.320561072153,\n                \"long\": -3.4791672824716\n            },\n            {\n                \"lat\": 40.320778341699,\n                \"long\": -3.4794797905556\n            },\n            {\n                \"lat\": 40.320959519438,\n                \"long\": -3.4797401378719\n            },\n            {\n                \"lat\": 40.321014508034,\n                \"long\": -3.4798192708582\n            },\n            {\n                \"lat\": 40.321024000439,\n                \"long\": -3.4798331093917\n            },\n            {\n                \"lat\": 40.321056238958,\n                \"long\": -3.4798800660189\n            },\n            {\n                \"lat\": 40.321509007829,\n                \"long\": -3.4805398277288\n            },\n            {\n                \"lat\": 40.321643511943,\n                \"long\": -3.4807359359018\n            },\n            {\n                \"lat\": 40.32171452514,\n                \"long\": -3.4808394313897\n            },\n            {\n                \"lat\": 40.321744969273,\n                \"long\": -3.4808844929652\n            },\n            {\n                \"lat\": 40.321837313107,\n                \"long\": -3.4810147415004\n            },\n            {\n                \"lat\": 40.321973455151,\n                \"long\": -3.4812067435144\n            },\n            {\n                \"lat\": 40.322209464048,\n                \"long\": -3.4815395255045\n            },\n            {\n                \"lat\": 40.322248105094,\n                \"long\": -3.4815848813848\n            },\n            {\n                \"lat\": 40.322327628595,\n                \"long\": -3.4816781987621\n            },\n            {\n                \"lat\": 40.322400787014,\n                \"long\": -3.4817639379228\n            },\n            {\n                \"lat\": 40.322418538521,\n                \"long\": -3.4817847803862\n            },\n            {\n                \"lat\": 40.322758497212,\n                \"long\": -3.4821644471118\n            },\n            {\n                \"lat\": 40.3227944569,\n                \"long\": -3.4822046055426\n            },\n            {\n                \"lat\": 40.322839742241,\n                \"long\": -3.4822553062844\n            },\n            {\n                \"lat\": 40.322881172346,\n                \"long\": -3.4823015067949\n            },\n            {\n                \"lat\": 40.322909599287,\n                \"long\": -3.482333254565\n            },\n            {\n                \"lat\": 40.323011745269,\n                \"long\": -3.4824458033337\n            },\n            {\n                \"lat\": 40.323099273769,\n                \"long\": -3.4825421224605\n            },\n            {\n                \"lat\": 40.323110752725,\n                \"long\": -3.4825547988757\n            },\n            {\n                \"lat\": 40.323160178109,\n                \"long\": -3.4826064712317\n            },\n            {\n                \"lat\": 40.323454411329,\n                \"long\": -3.4829323809952\n            },\n            {\n                \"lat\": 40.32348310836,\n                \"long\": -3.4829641312253\n            },\n            {\n                \"lat\": 40.323528933404,\n                \"long\": -3.4830149545483\n            },\n            {\n                \"lat\": 40.323557540814,\n                \"long\": -3.4830465865017\n            },\n            {\n                \"lat\": 40.323564804663,\n                \"long\": -3.4830546424277\n            },\n            {\n                \"lat\": 40.323612512703,\n                \"long\": -3.4831075980441\n            },\n            {\n                \"lat\": 40.323620667613,\n                \"long\": -3.4831180144991\n            },\n            {\n                \"lat\": 40.323787803435,\n                \"long\": -3.4833302573023\n            },\n            {\n                \"lat\": 40.323910309325,\n                \"long\": -3.4834859179558\n            },\n            {\n                \"lat\": 40.32392366284,\n                \"long\": -3.4835027278627\n            },\n            {\n                \"lat\": 40.323928046792,\n                \"long\": -3.4835315977744\n            },\n            {\n                \"lat\": 40.323932343598,\n                \"long\": -3.4835597608156\n            },\n            {\n                \"lat\": 40.323942517471,\n                \"long\": -3.4836259857197\n            },\n            {\n                \"lat\": 40.323953304216,\n                \"long\": -3.483696452533\n            },\n            {\n                \"lat\": 40.323954180998,\n                \"long\": -3.48370222652\n            },\n            {\n                \"lat\": 40.323968827779,\n                \"long\": -3.4837975574652\n            },\n            {\n                \"lat\": 40.32405214141,\n                \"long\": -3.4843410257962\n            },\n            {\n                \"lat\": 40.324129488199,\n                \"long\": -3.484845844194\n            },\n            {\n                \"lat\": 40.324203501716,\n                \"long\": -3.485328628249\n            },\n            {\n                \"lat\": 40.324213762687,\n                \"long\": -3.4853953251419\n            },\n            {\n                \"lat\": 40.324226827948,\n                \"long\": -3.4854807579102\n            },\n            {\n                \"lat\": 40.324046533562,\n                \"long\": -3.4856570890077\n            },\n            {\n                \"lat\": 40.323286272242,\n                \"long\": -3.4864007316435\n            },\n            {\n                \"lat\": 40.322849507847,\n                \"long\": -3.4868281683892\n            },\n            {\n                \"lat\": 40.322639900927,\n                \"long\": -3.487033119786\n            },\n            {\n                \"lat\": 40.322042015692,\n                \"long\": -3.4876180564127\n            },\n            {\n                \"lat\": 40.321887048389,\n                \"long\": -3.4877696049922\n            },\n            {\n                \"lat\": 40.321415812181,\n                \"long\": -3.4882305569923\n            },\n            {\n                \"lat\": 40.320944574633,\n                \"long\": -3.4886913848968\n            },\n            {\n                \"lat\": 40.320828053711,\n                \"long\": -3.4888054231356\n            },\n            {\n                \"lat\": 40.320167375808,\n                \"long\": -3.489451668846\n            },\n            {\n                \"lat\": 40.320080256329,\n                \"long\": -3.489536844462\n            },\n            {\n                \"lat\": 40.319571288113,\n                \"long\": -3.49003469276\n            },\n            {\n                \"lat\": 40.319487063043,\n                \"long\": -3.490117062991\n            },\n            {\n                \"lat\": 40.319155137571,\n                \"long\": -3.4904417521588\n            },\n            {\n                \"lat\": 40.318354405454,\n                \"long\": -3.4912250122949\n            },\n            {\n                \"lat\": 40.318267374758,\n                \"long\": -3.4913101840165\n            },\n            {\n                \"lat\": 40.318266379772,\n                \"long\": -3.491311118395\n            },\n            {\n                \"lat\": 40.317104037064,\n                \"long\": -3.4924480011263\n            },\n            {\n                \"lat\": 40.316984346268,\n                \"long\": -3.4925650635789\n            },\n            {\n                \"lat\": 40.316643548022,\n                \"long\": -3.4928983738621\n            },\n            {\n                \"lat\": 40.316589990228,\n                \"long\": -3.4929507121899\n            },\n            {\n                \"lat\": 40.316351512411,\n                \"long\": -3.4931838981595\n            },\n            {\n                \"lat\": 40.316188213923,\n                \"long\": -3.4933437171285\n            },\n            {\n                \"lat\": 40.316175276883,\n                \"long\": -3.493356334055\n            },\n            {\n                \"lat\": 40.31611065418,\n                \"long\": -3.4935737173465\n            },\n            {\n                \"lat\": 40.31609913716,\n                \"long\": -3.4936124728624\n            },\n            {\n                \"lat\": 40.315836164711,\n                \"long\": -3.4944966807172\n            },\n            {\n                \"lat\": 40.315695405484,\n                \"long\": -3.4951998193315\n            },\n            {\n                \"lat\": 40.315558139062,\n                \"long\": -3.4958857972249\n            },\n            {\n                \"lat\": 40.315506223966,\n                \"long\": -3.4962900495655\n            },\n            {\n                \"lat\": 40.315503519977,\n                \"long\": -3.4963113323895\n            },\n            {\n                \"lat\": 40.315497369049,\n                \"long\": -3.4963590711294\n            },\n            {\n                \"lat\": 40.315477421677,\n                \"long\": -3.4965146342188\n            },\n            {\n                \"lat\": 40.315458127462,\n                \"long\": -3.4966649057737\n            },\n            {\n                \"lat\": 40.315425875869,\n                \"long\": -3.496916299032\n            },\n            {\n                \"lat\": 40.315395952853,\n                \"long\": -3.497149819663\n            },\n            {\n                \"lat\": 40.3154251642,\n                \"long\": -3.4975220643127\n            },\n            {\n                \"lat\": 40.315484780171,\n                \"long\": -3.4982815104738\n            },\n            {\n                \"lat\": 40.315625833041,\n                \"long\": -3.4989787087667\n            },\n            {\n                \"lat\": 40.315716690459,\n                \"long\": -3.4994277932352\n            },\n            {\n                \"lat\": 40.315748180673,\n                \"long\": -3.4995836173126\n            },\n            {\n                \"lat\": 40.316027770306,\n                \"long\": -3.5003473995369\n            },\n            {\n                \"lat\": 40.316199679112,\n                \"long\": -3.5008026189775\n            },\n            {\n                \"lat\": 40.316292819674,\n                \"long\": -3.5011389743763\n            },\n            {\n                \"lat\": 40.316322180953,\n                \"long\": -3.5012449996519\n            },\n            {\n                \"lat\": 40.316484422045,\n                \"long\": -3.5018304409563\n            },\n            {\n                \"lat\": 40.316676107787,\n                \"long\": -3.5025225005376\n            },\n            {\n                \"lat\": 40.316782205235,\n                \"long\": -3.5030272623991\n            },\n            {\n                \"lat\": 40.316831459661,\n                \"long\": -3.503261137426\n            },\n            {\n                \"lat\": 40.316957149347,\n                \"long\": -3.5038589097733\n            },\n            {\n                \"lat\": 40.316995325289,\n                \"long\": -3.5041950996617\n            },\n            {\n                \"lat\": 40.316992819682,\n                \"long\": -3.504397872266\n            },\n            {\n                \"lat\": 40.316989735684,\n                \"long\": -3.5046505439042\n            },\n            {\n                \"lat\": 40.316978351835,\n                \"long\": -3.504988248316\n            },\n            {\n                \"lat\": 40.317052938824,\n                \"long\": -3.5054442902304\n            },\n            {\n                \"lat\": 40.31704736169,\n                \"long\": -3.5058133454651\n            },\n            {\n                \"lat\": 40.317046729066,\n                \"long\": -3.5058550053722\n            },\n            {\n                \"lat\": 40.317041590964,\n                \"long\": -3.5059586578022\n            },\n            {\n                \"lat\": 40.317034952113,\n                \"long\": -3.5060964310455\n            },\n            {\n                \"lat\": 40.317023974701,\n                \"long\": -3.5063197373222\n            },\n            {\n                \"lat\": 40.317046314202,\n                \"long\": -3.5065057472603\n            },\n            {\n                \"lat\": 40.317060568886,\n                \"long\": -3.5066246097593\n            },\n            {\n                \"lat\": 40.317073693012,\n                \"long\": -3.5067341658141\n            },\n            {\n                \"lat\": 40.317082211413,\n                \"long\": -3.5068050829386\n            },\n            {\n                \"lat\": 40.317128914365,\n                \"long\": -3.5070026920168\n            },\n            {\n                \"lat\": 40.317152974564,\n                \"long\": -3.5071042089879\n            },\n            {\n                \"lat\": 40.317154920935,\n                \"long\": -3.5071123446336\n            },\n            {\n                \"lat\": 40.317161289233,\n                \"long\": -3.5071393448642\n            },\n            {\n                \"lat\": 40.317171549226,\n                \"long\": -3.5071828517847\n            },\n            {\n                \"lat\": 40.317178447725,\n                \"long\": -3.5072122099342\n            },\n            {\n                \"lat\": 40.317225504656,\n                \"long\": -3.507411116889\n            },\n            {\n                \"lat\": 40.317288000405,\n                \"long\": -3.5075818924332\n            },\n            {\n                \"lat\": 40.317414237404,\n                \"long\": -3.5079268670215\n            },\n            {\n                \"lat\": 40.31760393597,\n                \"long\": -3.5084273265756\n            },\n            {\n                \"lat\": 40.317795191825,\n                \"long\": -3.5088804860353\n            },\n            {\n                \"lat\": 40.317850026263,\n                \"long\": -3.509010600995\n            },\n            {\n                \"lat\": 40.317987975691,\n                \"long\": -3.5093749716429\n            },\n            {\n                \"lat\": 40.318085136927,\n                \"long\": -3.5096314606164\n            },\n            {\n                \"lat\": 40.318260380712,\n                \"long\": -3.5100167116918\n            },\n            {\n                \"lat\": 40.31830909837,\n                \"long\": -3.5101239488454\n            },\n            {\n                \"lat\": 40.318432983302,\n                \"long\": -3.5104693864456\n            },\n            {\n                \"lat\": 40.318475525101,\n                \"long\": -3.5105877590955\n            },\n            {\n                \"lat\": 40.318477456161,\n                \"long\": -3.5105993081599\n            },\n            {\n                \"lat\": 40.318504737758,\n                \"long\": -3.5107662934546\n            },\n            {\n                \"lat\": 40.318507281238,\n                \"long\": -3.5107819666165\n            },\n            {\n                \"lat\": 40.318512545771,\n                \"long\": -3.5108139027783\n            },\n            {\n                \"lat\": 40.318517017681,\n                \"long\": -3.5108417134982\n            },\n            {\n                \"lat\": 40.318523773177,\n                \"long\": -3.5108828414476\n            },\n            {\n                \"lat\": 40.318550089897,\n                \"long\": -3.5110438170309\n            },\n            {\n                \"lat\": 40.318498876285,\n                \"long\": -3.5114200683123\n            },\n            {\n                \"lat\": 40.318417415027,\n                \"long\": -3.5115666951732\n            },\n            {\n                \"lat\": 40.318410967669,\n                \"long\": -3.5115781810177\n            },\n            {\n                \"lat\": 40.31838554483,\n                \"long\": -3.5116227147533\n            },\n            {\n                \"lat\": 40.318375555869,\n                \"long\": -3.5116405295982\n            },\n            {\n                \"lat\": 40.318365475774,\n                \"long\": -3.5116585791479\n            },\n            {\n                \"lat\": 40.318055083305,\n                \"long\": -3.5122136557862\n            },\n            {\n                \"lat\": 40.318010676214,\n                \"long\": -3.5122931196812\n            },\n            {\n                \"lat\": 40.317994693814,\n                \"long\": -3.5123215995752\n            },\n            {\n                \"lat\": 40.317980436138,\n                \"long\": -3.5123471500356\n            },\n            {\n                \"lat\": 40.317965815493,\n                \"long\": -3.5123732862327\n            },\n            {\n                \"lat\": 40.317948379652,\n                \"long\": -3.5124044621608\n            },\n            {\n                \"lat\": 40.317929762734,\n                \"long\": -3.5124378654096\n            },\n            {\n                \"lat\": 40.317894255169,\n                \"long\": -3.5125013893569\n            },\n            {\n                \"lat\": 40.317879998497,\n                \"long\": -3.512526704353\n            },\n            {\n                \"lat\": 40.317873732266,\n                \"long\": -3.5125379559888\n            },\n            {\n                \"lat\": 40.317853298919,\n                \"long\": -3.512574640974\n            },\n            {\n                \"lat\": 40.317801263043,\n                \"long\": -3.5126678173607\n            },\n            {\n                \"lat\": 40.317753042149,\n                \"long\": -3.512753960591\n            },\n            {\n                \"lat\": 40.317734698008,\n                \"long\": -3.512786777222\n            },\n            {\n                \"lat\": 40.31771217583,\n                \"long\": -3.5128272125837\n            },\n            {\n                \"lat\": 40.317321408189,\n                \"long\": -3.5135259664703\n            },\n            {\n                \"lat\": 40.317291531034,\n                \"long\": -3.5135792922939\n            },\n            {\n                \"lat\": 40.317208164201,\n                \"long\": -3.5137283711484\n            },\n            {\n                \"lat\": 40.317203714277,\n                \"long\": -3.5137363408138\n            },\n            {\n                \"lat\": 40.317203169559,\n                \"long\": -3.5137372782608\n            },\n            {\n                \"lat\": 40.317196177269,\n                \"long\": -3.5137497011388\n            },\n            {\n                \"lat\": 40.317186459818,\n                \"long\": -3.5137671643258\n            },\n            {\n                \"lat\": 40.317161304318,\n                \"long\": -3.513812169252\n            },\n            {\n                \"lat\": 40.317157965259,\n                \"long\": -3.5138134386064\n            },\n            {\n                \"lat\": 40.317129720214,\n                \"long\": -3.513823817213\n            },\n            {\n                \"lat\": 40.317127193528,\n                \"long\": -3.513824739634\n            },\n            {\n                \"lat\": 40.317121598572,\n                \"long\": -3.5138268157639\n            },\n            {\n                \"lat\": 40.31705969318,\n                \"long\": -3.5138497681314\n            },\n            {\n                \"lat\": 40.31704787212,\n                \"long\": -3.5138540332947\n            },\n            {\n                \"lat\": 40.317036501506,\n                \"long\": -3.5138583018713\n            },\n            {\n                \"lat\": 40.316935161666,\n                \"long\": -3.5138956672781\n            },\n            {\n                \"lat\": 40.316908630404,\n                \"long\": -3.5139055880248\n            },\n            {\n                \"lat\": 40.316871090452,\n                \"long\": -3.513919426975\n            },\n            {\n                \"lat\": 40.316804944039,\n                \"long\": -3.5139438770707\n            },\n            {\n                \"lat\": 40.316794295706,\n                \"long\": -3.5139477980052\n            },\n            {\n                \"lat\": 40.316579793836,\n                \"long\": -3.5140270286692\n            },\n            {\n                \"lat\": 40.316424309262,\n                \"long\": -3.5140844619863\n            },\n            {\n                \"lat\": 40.316352297058,\n                \"long\": -3.5141111034892\n            },\n            {\n                \"lat\": 40.316156384881,\n                \"long\": -3.5141834124413\n            },\n            {\n                \"lat\": 40.316087982508,\n                \"long\": -3.5142086687804\n            },\n            {\n                \"lat\": 40.316024452808,\n                \"long\": -3.5142321966111\n            },\n            {\n                \"lat\": 40.315962006268,\n                \"long\": -3.5142552618366\n            },\n            {\n                \"lat\": 40.315949372817,\n                \"long\": -3.5142598737831\n            },\n            {\n                \"lat\": 40.315944589704,\n                \"long\": -3.5142617206116\n            },\n            {\n                \"lat\": 40.315922299938,\n                \"long\": -3.5142700255273\n            },\n            {\n                \"lat\": 40.315762754928,\n                \"long\": -3.5143288392702\n            },\n            {\n                \"lat\": 40.315752466938,\n                \"long\": -3.5143327628198\n            },\n            {\n                \"lat\": 40.315606367202,\n                \"long\": -3.5143867351454\n            },\n            {\n                \"lat\": 40.315491129848,\n                \"long\": -3.5144292897578\n            },\n            {\n                \"lat\": 40.315147673583,\n                \"long\": -3.5145561460086\n            },\n            {\n                \"lat\": 40.315047325529,\n                \"long\": -3.5145932815028\n            },\n            {\n                \"lat\": 40.315034782152,\n                \"long\": -3.5145978940096\n            },\n            {\n                \"lat\": 40.315009784963,\n                \"long\": -3.5146072373913\n            },\n            {\n                \"lat\": 40.315002204883,\n                \"long\": -3.5146100044822\n            },\n            {\n                \"lat\": 40.31497928394,\n                \"long\": -3.5146184220726\n            },\n            {\n                \"lat\": 40.31489823378,\n                \"long\": -3.5146109805829\n            },\n            {\n                \"lat\": 40.314757387243,\n                \"long\": -3.5145979066997\n            },\n            {\n                \"lat\": 40.314636892546,\n                \"long\": -3.5145868704448\n            },\n            {\n                \"lat\": 40.314505951653,\n                \"long\": -3.5145748133979\n            },\n            {\n                \"lat\": 40.314348264126,\n                \"long\": -3.5145603172292\n            },\n            {\n                \"lat\": 40.314208047671,\n                \"long\": -3.5145473660438\n            },\n            {\n                \"lat\": 40.314071523833,\n                \"long\": -3.5145346783255\n            },\n            {\n                \"lat\": 40.313783795742,\n                \"long\": -3.5145082501035\n            },\n            {\n                \"lat\": 40.313511197431,\n                \"long\": -3.5144831138468\n            },\n            {\n                \"lat\": 40.313472473602,\n                \"long\": -3.5144795246309\n            },\n            {\n                \"lat\": 40.31335161903,\n                \"long\": -3.5144683683986\n            },\n            {\n                \"lat\": 40.313228152905,\n                \"long\": -3.5144569570099\n            },\n            {\n                \"lat\": 40.313215724741,\n                \"long\": -3.5144559211756\n            },\n            {\n                \"lat\": 40.313213833908,\n                \"long\": -3.5144556714466\n            },\n            {\n                \"lat\": 40.313184475721,\n                \"long\": -3.5144529771663\n            },\n            {\n                \"lat\": 40.313159335885,\n                \"long\": -3.5144133602672\n            },\n            {\n                \"lat\": 40.313099304958,\n                \"long\": -3.5143186352106\n            },\n            {\n                \"lat\": 40.313067186749,\n                \"long\": -3.5142680203257\n            },\n            {\n                \"lat\": 40.313051888165,\n                \"long\": -3.5142438955675\n            },\n            {\n                \"lat\": 40.3129448875,\n                \"long\": -3.5140751409333\n            },\n            {\n                \"lat\": 40.312823035235,\n                \"long\": -3.5138829717625\n            },\n            {\n                \"lat\": 40.312809917442,\n                \"long\": -3.5137329361482\n            },\n            {\n                \"lat\": 40.312757173532,\n                \"long\": -3.5131329098909\n            },\n            {\n                \"lat\": 40.312709834134,\n                \"long\": -3.5125934176352\n            },\n            {\n                \"lat\": 40.3127061115,\n                \"long\": -3.5125592596395\n            },\n            {\n                \"lat\": 40.312692428422,\n                \"long\": -3.5124347587993\n            },\n            {\n                \"lat\": 40.312631980596,\n                \"long\": -3.5118843411694\n            },\n            {\n                \"lat\": 40.312624964518,\n                \"long\": -3.5118207361371\n            },\n            {\n                \"lat\": 40.312550983275,\n                \"long\": -3.5112944614379\n            },\n            {\n                \"lat\": 40.312520411361,\n                \"long\": -3.5110770950054\n            },\n            {\n                \"lat\": 40.312493859988,\n                \"long\": -3.5108876513029\n            },\n            {\n                \"lat\": 40.312465403273,\n                \"long\": -3.5108440097186\n            },\n            {\n                \"lat\": 40.312272024224,\n                \"long\": -3.5105470370334\n            },\n            {\n                \"lat\": 40.312170277316,\n                \"long\": -3.5103910400512\n            },\n            {\n                \"lat\": 40.312117713504,\n                \"long\": -3.5103183838215\n            },\n            {\n                \"lat\": 40.311950796526,\n                \"long\": -3.5100881068619\n            },\n            {\n                \"lat\": 40.311943454324,\n                \"long\": -3.5100778127795\n            },\n            {\n                \"lat\": 40.311922144795,\n                \"long\": -3.510047759755\n            },\n            {\n                \"lat\": 40.31191820524,\n                \"long\": -3.510042198791\n            },\n            {\n                \"lat\": 40.311911758741,\n                \"long\": -3.5100330883347\n            },\n            {\n                \"lat\": 40.31184120341,\n                \"long\": -3.5099338176093\n            },\n            {\n                \"lat\": 40.31181040296,\n                \"long\": -3.5098903945953\n            },\n            {\n                \"lat\": 40.311451025529,\n                \"long\": -3.5098490904156\n            },\n            {\n                \"lat\": 40.311055989691,\n                \"long\": -3.5098036349101\n            },\n            {\n                \"lat\": 40.310577299968,\n                \"long\": -3.5097486068934\n            },\n            {\n                \"lat\": 40.31035155213,\n                \"long\": -3.5097226664771\n            },\n            {\n                \"lat\": 40.310168306354,\n                \"long\": -3.5097016354643\n            },\n            {\n                \"lat\": 40.310123372894,\n                \"long\": -3.5096964725936\n            },\n            {\n                \"lat\": 40.310119756471,\n                \"long\": -3.5096789103935\n            },\n            {\n                \"lat\": 40.310107146348,\n                \"long\": -3.5096169134827\n            },\n            {\n                \"lat\": 40.31004065375,\n                \"long\": -3.5092905452704\n            },\n            {\n                \"lat\": 40.309796187769,\n                \"long\": -3.5080918617109\n            },\n            {\n                \"lat\": 40.309614507484,\n                \"long\": -3.5072006931545\n            },\n            {\n                \"lat\": 40.309611773005,\n                \"long\": -3.5071873744318\n            },\n            {\n                \"lat\": 40.309607274391,\n                \"long\": -3.5071654515986\n            },\n            {\n                \"lat\": 40.309593603503,\n                \"long\": -3.50709850497\n            },\n            {\n                \"lat\": 40.309535041714,\n                \"long\": -3.5068110365649\n            },\n            {\n                \"lat\": 40.309492265172,\n                \"long\": -3.5066013577392\n            },\n            {\n                \"lat\": 40.309468716187,\n                \"long\": -3.5064858519245\n            },\n            {\n                \"lat\": 40.309256591985,\n                \"long\": -3.5054458310921\n            },\n            {\n                \"lat\": 40.309250329805,\n                \"long\": -3.5054150691056\n            },\n            {\n                \"lat\": 40.309231277571,\n                \"long\": -3.505321722052\n            },\n            {\n                \"lat\": 40.309230219111,\n                \"long\": -3.5053165361061\n            },\n            {\n                \"lat\": 40.309218135356,\n                \"long\": -3.5052572514487\n            },\n            {\n                \"lat\": 40.309213196205,\n                \"long\": -3.5052329719256\n            },\n            {\n                \"lat\": 40.309204246489,\n                \"long\": -3.5052399662203\n            },\n            {\n                \"lat\": 40.309101645186,\n                \"long\": -3.5053192260359\n            },\n            {\n                \"lat\": 40.309006365255,\n                \"long\": -3.5053930090983\n            },\n            {\n                \"lat\": 40.308906385703,\n                \"long\": -3.5054701697131\n            },\n            {\n                \"lat\": 40.308727577891,\n                \"long\": -3.5056085255271\n            },\n            {\n                \"lat\": 40.308240150895,\n                \"long\": -3.5059853547799\n            },\n            {\n                \"lat\": 40.30807960339,\n                \"long\": -3.5061094870989\n            },\n            {\n                \"lat\": 40.30801868045,\n                \"long\": -3.5062994402369\n            },\n            {\n                \"lat\": 40.307929533572,\n                \"long\": -3.5065773251689\n            },\n            {\n                \"lat\": 40.307924509075,\n                \"long\": -3.5065931745451\n            },\n            {\n                \"lat\": 40.307920673262,\n                \"long\": -3.5066050316515\n            },\n            {\n                \"lat\": 40.307885050231,\n                \"long\": -3.5067162091935\n            },\n            {\n                \"lat\": 40.307628566122,\n                \"long\": -3.5075155778608\n            },\n            {\n                \"lat\": 40.307329690571,\n                \"long\": -3.5084476008709\n            },\n            {\n                \"lat\": 40.307326402348,\n                \"long\": -3.5084578143572\n            },\n            {\n                \"lat\": 40.307325215149,\n                \"long\": -3.5084614535287\n            },\n            {\n                \"lat\": 40.307315532205,\n                \"long\": -3.508491742304\n            },\n            {\n                \"lat\": 40.307304937493,\n                \"long\": -3.5085244955078\n            },\n            {\n                \"lat\": 40.307246932801,\n                \"long\": -3.5087055225404\n            },\n            {\n                \"lat\": 40.307186188903,\n                \"long\": -3.5088947662746\n            },\n            {\n                \"lat\": 40.307162347297,\n                \"long\": -3.5089691961569\n            },\n            {\n                \"lat\": 40.307098039754,\n                \"long\": -3.5091697098822\n            },\n            {\n                \"lat\": 40.307069723492,\n                \"long\": -3.5092577567708\n            },\n            {\n                \"lat\": 40.30705172821,\n                \"long\": -3.5093138723371\n            },\n            {\n                \"lat\": 40.30702761244,\n                \"long\": -3.5093891236195\n            },\n            {\n                \"lat\": 40.307023958076,\n                \"long\": -3.509400628736\n            },\n            {\n                \"lat\": 40.307022222538,\n                \"long\": -3.5094060289444\n            },\n            {\n                \"lat\": 40.307006329303,\n                \"long\": -3.5094553348291\n            },\n            {\n                \"lat\": 40.306999296011,\n                \"long\": -3.5094771703236\n            },\n            {\n                \"lat\": 40.306995824409,\n                \"long\": -3.5094880884076\n            },\n            {\n                \"lat\": 40.30699244445,\n                \"long\": -3.5094986541414\n            },\n            {\n                \"lat\": 40.306918270991,\n                \"long\": -3.5097298069436\n            },\n            {\n                \"lat\": 40.306886208252,\n                \"long\": -3.5098297107789\n            },\n            {\n                \"lat\": 40.306858346606,\n                \"long\": -3.509916701424\n            },\n            {\n                \"lat\": 40.306795044917,\n                \"long\": -3.5102769111551\n            },\n            {\n                \"lat\": 40.306650333052,\n                \"long\": -3.5110985134225\n            },\n            {\n                \"lat\": 40.306516427127,\n                \"long\": -3.5118588833073\n            },\n            {\n                \"lat\": 40.306391202584,\n                \"long\": -3.5125701263311\n            },\n            {\n                \"lat\": 40.306382700048,\n                \"long\": -3.5126184277817\n            },\n            {\n                \"lat\": 40.306258393676,\n                \"long\": -3.5133247324661\n            },\n            {\n                \"lat\": 40.306247581146,\n                \"long\": -3.5133859608091\n            },\n            {\n                \"lat\": 40.305919668565,\n                \"long\": -3.5137862877439\n            },\n            {\n                \"lat\": 40.305798920015,\n                \"long\": -3.5139337637196\n            },\n            {\n                \"lat\": 40.305744751052,\n                \"long\": -3.5139998407017\n            },\n            {\n                \"lat\": 40.305695654784,\n                \"long\": -3.5140597191557\n            },\n            {\n                \"lat\": 40.305670743665,\n                \"long\": -3.5140902439829\n            },\n            {\n                \"lat\": 40.305417198284,\n                \"long\": -3.5143998114186\n            },\n            {\n                \"lat\": 40.305334223044,\n                \"long\": -3.514501089688\n            },\n            {\n                \"lat\": 40.304914634672,\n                \"long\": -3.5150133253218\n            },\n            {\n                \"lat\": 40.304894252929,\n                \"long\": -3.5150382354236\n            },\n            {\n                \"lat\": 40.30482078789,\n                \"long\": -3.5151280521877\n            },\n            {\n                \"lat\": 40.304815443785,\n                \"long\": -3.5151344837404\n            },\n            {\n                \"lat\": 40.304741026718,\n                \"long\": -3.5150334237285\n            },\n            {\n                \"lat\": 40.304721415476,\n                \"long\": -3.5150066801719\n            },\n            {\n                \"lat\": 40.304372165456,\n                \"long\": -3.5145321524065\n            },\n            {\n                \"lat\": 40.304275181295,\n                \"long\": -3.5144003271587\n            },\n            {\n                \"lat\": 40.304179450389,\n                \"long\": -3.5142702769081\n            },\n            {\n                \"lat\": 40.303805301796,\n                \"long\": -3.5137619134335\n            },\n            {\n                \"lat\": 40.303748256924,\n                \"long\": -3.5136844050691\n            },\n            {\n                \"lat\": 40.303699719844,\n                \"long\": -3.5136183755997\n            },\n            {\n                \"lat\": 40.303657898709,\n                \"long\": -3.5135615756108\n            },\n            {\n                \"lat\": 40.3036118684,\n                \"long\": -3.5134990954993\n            },\n            {\n                \"lat\": 40.303594316323,\n                \"long\": -3.513475192585\n            },\n            {\n                \"lat\": 40.303588226783,\n                \"long\": -3.5134669093457\n            },\n            {\n                \"lat\": 40.303552763817,\n                \"long\": -3.5134187478267\n            },\n            {\n                \"lat\": 40.303400703123,\n                \"long\": -3.5132121395842\n            },\n            {\n                \"lat\": 40.30327228432,\n                \"long\": -3.5130376004309\n            },\n            {\n                \"lat\": 40.30325616471,\n                \"long\": -3.5130157090291\n            },\n            {\n                \"lat\": 40.303124879946,\n                \"long\": -3.5128372657562\n            },\n            {\n                \"lat\": 40.303067207461,\n                \"long\": -3.5127589304995\n            },\n            {\n                \"lat\": 40.303031833761,\n                \"long\": -3.51271088807\n            },\n            {\n                \"lat\": 40.303010788877,\n                \"long\": -3.5126822522678\n            },\n            {\n                \"lat\": 40.302972012071,\n                \"long\": -3.5126295949768\n            },\n            {\n                \"lat\": 40.302923832647,\n                \"long\": -3.5125640404141\n            },\n            {\n                \"lat\": 40.302728873791,\n                \"long\": -3.5122992173874\n            },\n            {\n                \"lat\": 40.302722383781,\n                \"long\": -3.5122592776195\n            },\n            {\n                \"lat\": 40.302639672567,\n                \"long\": -3.5117517233415\n            },\n            {\n                \"lat\": 40.302569941388,\n                \"long\": -3.5113236964375\n            },\n            {\n                \"lat\": 40.302544153853,\n                \"long\": -3.5111653515142\n            },\n            {\n                \"lat\": 40.302512487562,\n                \"long\": -3.5109713079667\n            },\n            {\n                \"lat\": 40.302446000086,\n                \"long\": -3.510562958192\n            },\n            {\n                \"lat\": 40.302356876554,\n                \"long\": -3.5100164106468\n            },\n            {\n                \"lat\": 40.302276697587,\n                \"long\": -3.5095248841012\n            },\n            {\n                \"lat\": 40.302259503756,\n                \"long\": -3.509419439369\n            },\n            {\n                \"lat\": 40.302226169431,\n                \"long\": -3.5092147945336\n            },\n            {\n                \"lat\": 40.302192840438,\n                \"long\": -3.5090088555586\n            },\n            {\n                \"lat\": 40.302174471447,\n                \"long\": -3.5090065996158\n            },\n            {\n                \"lat\": 40.302085867653,\n                \"long\": -3.5089958149289\n            },\n            {\n                \"lat\": 40.301934232607,\n                \"long\": -3.5089773793229\n            },\n            {\n                \"lat\": 40.301839325629,\n                \"long\": -3.5089658413904\n            },\n            {\n                \"lat\": 40.301805018514,\n                \"long\": -3.5089617008082\n            },\n            {\n                \"lat\": 40.301606560072,\n                \"long\": -3.5089376188391\n            },\n            {\n                \"lat\": 40.301559916869,\n                \"long\": -3.508931973677\n            },\n            {\n                \"lat\": 40.30135812716,\n                \"long\": -3.5089073962147\n            },\n            {\n                \"lat\": 40.301282065092,\n                \"long\": -3.5089947244456\n            },\n            {\n                \"lat\": 40.301243101814,\n                \"long\": -3.5090455004803\n            },\n            {\n                \"lat\": 40.301166625431,\n                \"long\": -3.5091450628869\n            },\n            {\n                \"lat\": 40.300407202292,\n                \"long\": -3.5101338900773\n            },\n            {\n                \"lat\": 40.300287683245,\n                \"long\": -3.5102896066681\n            },\n            {\n                \"lat\": 40.300219089283,\n                \"long\": -3.5103788708576\n            },\n            {\n                \"lat\": 40.300207490833,\n                \"long\": -3.5103939626785\n            },\n            {\n                \"lat\": 40.300202957796,\n                \"long\": -3.510400400275\n            },\n            {\n                \"lat\": 40.30018944877,\n                \"long\": -3.5104197137373\n            },\n            {\n                \"lat\": 40.300168324441,\n                \"long\": -3.5104497952781\n            },\n            {\n                \"lat\": 40.300145911603,\n                \"long\": -3.5105064599207\n            },\n            {\n                \"lat\": 40.300125595207,\n                \"long\": -3.5105576099443\n            },\n            {\n                \"lat\": 40.30006236507,\n                \"long\": -3.5107175143511\n            },\n            {\n                \"lat\": 40.30002173051,\n                \"long\": -3.5108201671031\n            },\n            {\n                \"lat\": 40.300004783666,\n                \"long\": -3.510863105623\n            },\n            {\n                \"lat\": 40.299936542563,\n                \"long\": -3.5110355620711\n            },\n            {\n                \"lat\": 40.299908025332,\n                \"long\": -3.5111075946936\n            },\n            {\n                \"lat\": 40.299882879329,\n                \"long\": -3.5111710629817\n            },\n            {\n                \"lat\": 40.299832585658,\n                \"long\": -3.5112983524044\n            },\n            {\n                \"lat\": 40.299823475281,\n                \"long\": -3.5113212287468\n            },\n            {\n                \"lat\": 40.299810556687,\n                \"long\": -3.5113496067094\n            },\n            {\n                \"lat\": 40.299767979126,\n                \"long\": -3.5114433013819\n            },\n            {\n                \"lat\": 40.299761247465,\n                \"long\": -3.5114579589542\n            },\n            {\n                \"lat\": 40.299686009179,\n                \"long\": -3.5116234190759\n            },\n            {\n                \"lat\": 40.299676638355,\n                \"long\": -3.5116440576966\n            },\n            {\n                \"lat\": 40.299578018742,\n                \"long\": -3.5118608788304\n            },\n            {\n                \"lat\": 40.299570740243,\n                \"long\": -3.5118769441893\n            },\n            {\n                \"lat\": 40.299540626908,\n                \"long\": -3.5119430807078\n            },\n            {\n                \"lat\": 40.299523158897,\n                \"long\": -3.5119815433908\n            },\n            {\n                \"lat\": 40.299463841302,\n                \"long\": -3.5121119403891\n            },\n            {\n                \"lat\": 40.299452377494,\n                \"long\": -3.5121372697163\n            },\n            {\n                \"lat\": 40.299424719876,\n                \"long\": -3.5121981295753\n            },\n            {\n                \"lat\": 40.299400429409,\n                \"long\": -3.5122513665229\n            },\n            {\n                \"lat\": 40.299396499806,\n                \"long\": -3.5122639271102\n            },\n            {\n                \"lat\": 40.299394306394,\n                \"long\": -3.5122709705058\n            },\n            {\n                \"lat\": 40.299393849172,\n                \"long\": -3.5122724967109\n            },\n            {\n                \"lat\": 40.299383064366,\n                \"long\": -3.5123072443943\n            },\n            {\n                \"lat\": 40.299382150964,\n                \"long\": -3.5123100614793\n            },\n            {\n                \"lat\": 40.299381327652,\n                \"long\": -3.5123128792447\n            },\n            {\n                \"lat\": 40.299379865896,\n                \"long\": -3.5123174571776\n            },\n            {\n                \"lat\": 40.299376576293,\n                \"long\": -3.5123279046036\n            },\n            {\n                \"lat\": 40.299374564619,\n                \"long\": -3.5123345963699\n            },\n            {\n                \"lat\": 40.299367527666,\n                \"long\": -3.5123571350835\n            },\n            {\n                \"lat\": 40.299365396199,\n                \"long\": -3.5123705329039\n            },\n            {\n                \"lat\": 40.299354273801,\n                \"long\": -3.5124408131266\n            },\n            {\n                \"lat\": 40.299351436049,\n                \"long\": -3.5124916233791\n            },\n            {\n                \"lat\": 40.299350451757,\n                \"long\": -3.5125104424943\n            },\n            {\n                \"lat\": 40.29935016116,\n                \"long\": -3.5125150292706\n            },\n            {\n                \"lat\": 40.299341348794,\n                \"long\": -3.512673929362\n            },\n            {\n                \"lat\": 40.299333123688,\n                \"long\": -3.5128222439188\n            },\n            {\n                \"lat\": 40.299325874933,\n                \"long\": -3.5129535042665\n            },\n            {\n                \"lat\": 40.299323231744,\n                \"long\": -3.5130010213019\n            },\n            {\n                \"lat\": 40.299319799986,\n                \"long\": -3.5130638289354\n            },\n            {\n                \"lat\": 40.299319412494,\n                \"long\": -3.5130699446309\n            },\n            {\n                \"lat\": 40.299318339062,\n                \"long\": -3.5130885277224\n            },\n            {\n                \"lat\": 40.299311087396,\n                \"long\": -3.5132203763195\n            },\n            {\n                \"lat\": 40.299297868097,\n                \"long\": -3.5134585496573\n            },\n            {\n                \"lat\": 40.29928190114,\n                \"long\": -3.5137472983978\n            },\n            {\n                \"lat\": 40.299274555498,\n                \"long\": -3.5138798521344\n            },\n            {\n                \"lat\": 40.299265639146,\n                \"long\": -3.5140414573911\n            },\n            {\n                \"lat\": 40.299263293489,\n                \"long\": -3.5140827403085\n            },\n            {\n                \"lat\": 40.299250070324,\n                \"long\": -3.514321383939\n            },\n            {\n                \"lat\": 40.299249482187,\n                \"long\": -3.5143320870645\n            },\n            {\n                \"lat\": 40.299161114348,\n                \"long\": -3.5144709683837\n            },\n            {\n                \"lat\": 40.29915866466,\n                \"long\": -3.5144748327677\n            },\n            {\n                \"lat\": 40.299153220558,\n                \"long\": -3.5144834987277\n            },\n            {\n                \"lat\": 40.299078642997,\n                \"long\": -3.5146007161725\n            },\n            {\n                \"lat\": 40.299038178788,\n                \"long\": -3.5146643014832\n            },\n            {\n                \"lat\": 40.298973405598,\n                \"long\": -3.5147647668066\n            },\n            {\n                \"lat\": 40.298874704176,\n                \"long\": -3.5149176883663\n            },\n            {\n                \"lat\": 40.298869719916,\n                \"long\": -3.5149242397737\n            },\n            {\n                \"lat\": 40.29876359322,\n                \"long\": -3.5150653379883\n            },\n            {\n                \"lat\": 40.298742816525,\n                \"long\": -3.5150980087183\n            },\n            {\n                \"lat\": 40.298662159892,\n                \"long\": -3.5152247094492\n            },\n            {\n                \"lat\": 40.298642563227,\n                \"long\": -3.5152553887458\n            },\n            {\n                \"lat\": 40.298564288986,\n                \"long\": -3.5154135236484\n            },\n            {\n                \"lat\": 40.298537562004,\n                \"long\": -3.5154673285737\n            },\n            {\n                \"lat\": 40.298524058348,\n                \"long\": -3.515505466916\n            },\n            {\n                \"lat\": 40.298442028376,\n                \"long\": -3.5157380542454\n            },\n            {\n                \"lat\": 40.298422776591,\n                \"long\": -3.515792386448\n            },\n            {\n                \"lat\": 40.298326878698,\n                \"long\": -3.5160638144167\n            },\n            {\n                \"lat\": 40.298321742353,\n                \"long\": -3.5160842489006\n            },\n            {\n                \"lat\": 40.2983177065,\n                \"long\": -3.5161003381815\n            },\n            {\n                \"lat\": 40.298313670646,\n                \"long\": -3.5161164274604\n            },\n            {\n                \"lat\": 40.298286612291,\n                \"long\": -3.5162242372085\n            },\n            {\n                \"lat\": 40.298219172414,\n                \"long\": -3.5163566842351\n            },\n            {\n                \"lat\": 40.298096379738,\n                \"long\": -3.5165980191446\n            },\n            {\n                \"lat\": 40.298085199933,\n                \"long\": -3.5166200547807\n            },\n            {\n                \"lat\": 40.297957771663,\n                \"long\": -3.5168704135052\n            },\n            {\n                \"lat\": 40.297884786154,\n                \"long\": -3.5170138773381\n            },\n            {\n                \"lat\": 40.297847612402,\n                \"long\": -3.5170867805807\n            },\n            {\n                \"lat\": 40.297723364151,\n                \"long\": -3.5173309256621\n            },\n            {\n                \"lat\": 40.297650105174,\n                \"long\": -3.5174749747332\n            },\n            {\n                \"lat\": 40.297596116109,\n                \"long\": -3.5175809301047\n            },\n            {\n                \"lat\": 40.297504678293,\n                \"long\": -3.5177607270166\n            },\n            {\n                \"lat\": 40.297501770148,\n                \"long\": -3.5177663526291\n            },\n            {\n                \"lat\": 40.297495088241,\n                \"long\": -3.5177697138429\n            },\n            {\n                \"lat\": 40.297385742648,\n                \"long\": -3.517824062897\n            },\n            {\n                \"lat\": 40.297113507043,\n                \"long\": -3.5179594139109\n            },\n            {\n                \"lat\": 40.297030617695,\n                \"long\": -3.5180005509437\n            },\n            {\n                \"lat\": 40.296985561262,\n                \"long\": -3.5180229155984\n            },\n            {\n                \"lat\": 40.296920302077,\n                \"long\": -3.518050185384\n            },\n            {\n                \"lat\": 40.296696002388,\n                \"long\": -3.5181437780196\n            },\n            {\n                \"lat\": 40.296543219694,\n                \"long\": -3.518180733155\n            },\n            {\n                \"lat\": 40.296473198863,\n                \"long\": -3.5182251447364\n            },\n            {\n                \"lat\": 40.296429198656,\n                \"long\": -3.5182731672008\n            },\n            {\n                \"lat\": 40.296344275992,\n                \"long\": -3.5183659409632\n            },\n            {\n                \"lat\": 40.296315161088,\n                \"long\": -3.5184094882411\n            },\n            {\n                \"lat\": 40.296262102201,\n                \"long\": -3.5184886212909\n            },\n            {\n                \"lat\": 40.296240605936,\n                \"long\": -3.5185208136301\n            },\n            {\n                \"lat\": 40.296163717108,\n                \"long\": -3.5186703605643\n            },\n            {\n                \"lat\": 40.296124546102,\n                \"long\": -3.5187464226116\n            },\n            {\n                \"lat\": 40.296021753976,\n                \"long\": -3.5189464824142\n            },\n            {\n                \"lat\": 40.295987008432,\n                \"long\": -3.5189999872653\n            },\n            {\n                \"lat\": 40.295981474431,\n                \"long\": -3.5190085341107\n            },\n            {\n                \"lat\": 40.295885674058,\n                \"long\": -3.5191561702857\n            },\n            {\n                \"lat\": 40.295813814225,\n                \"long\": -3.5192489245366\n            },\n            {\n                \"lat\": 40.295654057019,\n                \"long\": -3.5194145428457\n            },\n            {\n                \"lat\": 40.295614773736,\n                \"long\": -3.5194553051981\n            },\n            {\n                \"lat\": 40.295484197113,\n                \"long\": -3.5196029088857\n            },\n            {\n                \"lat\": 40.295472350976,\n                \"long\": -3.5196127015193\n            },\n            {\n                \"lat\": 40.295454082048,\n                \"long\": -3.5196283279088\n            },\n            {\n                \"lat\": 40.295442687415,\n                \"long\": -3.5196378886741\n            },\n            {\n                \"lat\": 40.295439884065,\n                \"long\": -3.5196402203824\n            },\n            {\n                \"lat\": 40.295438618582,\n                \"long\": -3.5196411519615\n            },\n            {\n                \"lat\": 40.295435995412,\n                \"long\": -3.5196434850498\n            },\n            {\n                \"lat\": 40.295430388713,\n                \"long\": -3.5196481484654\n            },\n            {\n                \"lat\": 40.295429393498,\n                \"long\": -3.5196490821146\n            },\n            {\n                \"lat\": 40.29539945966,\n                \"long\": -3.5196742671671\n            },\n            {\n                \"lat\": 40.295367685724,\n                \"long\": -3.519687907516\n            },\n            {\n                \"lat\": 40.29533067707,\n                \"long\": -3.519703625609\n            },\n            {\n                \"lat\": 40.29516864317,\n                \"long\": -3.5197341520695\n            },\n            {\n                \"lat\": 40.294787859746,\n                \"long\": -3.519805712178\n            },\n            {\n                \"lat\": 40.294731985094,\n                \"long\": -3.5198095197164\n            },\n            {\n                \"lat\": 40.294720269203,\n                \"long\": -3.5198103712045\n            },\n            {\n                \"lat\": 40.294716304198,\n                \"long\": -3.5198105761377\n            },\n            {\n                \"lat\": 40.294715132503,\n                \"long\": -3.5198106848173\n            },\n            {\n                \"lat\": 40.294707922683,\n                \"long\": -3.51981121786\n            },\n            {\n                \"lat\": 40.294679174021,\n                \"long\": -3.5198132330666\n            },\n            {\n                \"lat\": 40.29467674107,\n                \"long\": -3.5198133320814\n            },\n            {\n                \"lat\": 40.294651016114,\n                \"long\": -3.5198040753094\n            },\n            {\n                \"lat\": 40.294649756972,\n                \"long\": -3.5198035950301\n            },\n            {\n                \"lat\": 40.294613778173,\n                \"long\": -3.5197906123071\n            },\n            {\n                \"lat\": 40.294602714581,\n                \"long\": -3.5197866448299\n            },\n            {\n                \"lat\": 40.294593989622,\n                \"long\": -3.5197835188769\n            },\n            {\n                \"lat\": 40.294582296458,\n                \"long\": -3.5197793112629\n            },\n            {\n                \"lat\": 40.294472471333,\n                \"long\": -3.5197396427991\n            },\n            {\n                \"lat\": 40.294391275894,\n                \"long\": -3.5197645523553\n            },\n            {\n                \"lat\": 40.294354647141,\n                \"long\": -3.519775919778\n            },\n            {\n                \"lat\": 40.294283916901,\n                \"long\": -3.5197976150379\n            },\n            {\n                \"lat\": 40.294280849622,\n                \"long\": -3.5197985327923\n            },\n            {\n                \"lat\": 40.29429402904,\n                \"long\": -3.5200333598103\n            },\n            {\n                \"lat\": 40.294308882797,\n                \"long\": -3.5202964374831\n            },\n            {\n                \"lat\": 40.294356762674,\n                \"long\": -3.5211481726809\n            },\n            {\n                \"lat\": 40.294401887309,\n                \"long\": -3.5219502364639\n            },\n            {\n                \"lat\": 40.295505080977,\n                \"long\": -3.5244389818112\n            },\n            {\n                \"lat\": 40.295466367948,\n                \"long\": -3.5244728036774\n            },\n            {\n                \"lat\": 40.2954163489,\n                \"long\": -3.5245164214494\n            },\n            {\n                \"lat\": 40.294487510663,\n                \"long\": -3.5253264884498\n            },\n            {\n                \"lat\": 40.293210155938,\n                \"long\": -3.5264802075283\n            },\n            {\n                \"lat\": 40.293207792874,\n                \"long\": -3.5265045438272\n            },\n            {\n                \"lat\": 40.293195885246,\n                \"long\": -3.5266266952002\n            },\n            {\n                \"lat\": 40.293180101691,\n                \"long\": -3.5267888192051\n            },\n            {\n                \"lat\": 40.293164510413,\n                \"long\": -3.5269482385582\n            },\n            {\n                \"lat\": 40.29315779949,\n                \"long\": -3.5270172500137\n            },\n            {\n                \"lat\": 40.293137668622,\n                \"long\": -3.5272238136919\n            },\n            {\n                \"lat\": 40.293116499738,\n                \"long\": -3.5274406051694\n            },\n            {\n                \"lat\": 40.293096273732,\n                \"long\": -3.5276481090946\n            },\n            {\n                \"lat\": 40.293073969302,\n                \"long\": -3.5278766569712\n            },\n            {\n                \"lat\": 40.293049870553,\n                \"long\": -3.5281231919396\n            },\n            {\n                \"lat\": 40.293026146683,\n                \"long\": -3.5283664353128\n            },\n            {\n                \"lat\": 40.293004311172,\n                \"long\": -3.5285906331354\n            },\n            {\n                \"lat\": 40.292969522544,\n                \"long\": -3.5289482680798\n            },\n            {\n                \"lat\": 40.292924813171,\n                \"long\": -3.5294064200658\n            },\n            {\n                \"lat\": 40.292938449951,\n                \"long\": -3.5297929047719\n            },\n            {\n                \"lat\": 40.292985435796,\n                \"long\": -3.5311187713127\n            },\n            {\n                \"lat\": 40.293627418677,\n                \"long\": -3.5321815245587\n            },\n            {\n                \"lat\": 40.29338232853,\n                \"long\": -3.5329726002226\n            },\n            {\n                \"lat\": 40.293166902842,\n                \"long\": -3.5337768456294\n            },\n            {\n                \"lat\": 40.292749553201,\n                \"long\": -3.5349948149266\n            },\n            {\n                \"lat\": 40.291653903556,\n                \"long\": -3.5371792180264\n            },\n            {\n                \"lat\": 40.291315968957,\n                \"long\": -3.5381671716407\n            },\n            {\n                \"lat\": 40.290733908596,\n                \"long\": -3.5392637672621\n            },\n            {\n                \"lat\": 40.290406426988,\n                \"long\": -3.5398807111122\n            },\n            {\n                \"lat\": 40.290327169485,\n                \"long\": -3.5400299668088\n            },\n            {\n                \"lat\": 40.290240731007,\n                \"long\": -3.5401928123917\n            },\n            {\n                \"lat\": 40.290257388231,\n                \"long\": -3.5402721235282\n            },\n            {\n                \"lat\": 40.290271664081,\n                \"long\": -3.5403404742767\n            },\n            {\n                \"lat\": 40.290318638751,\n                \"long\": -3.5405641484662\n            },\n            {\n                \"lat\": 40.290355475937,\n                \"long\": -3.540739976155\n            },\n            {\n                \"lat\": 40.290364025467,\n                \"long\": -3.5407805159902\n            },\n            {\n                \"lat\": 40.290411615605,\n                \"long\": -3.5410072546039\n            },\n            {\n                \"lat\": 40.290459114656,\n                \"long\": -3.5412341104586\n            },\n            {\n                \"lat\": 40.290507584974,\n                \"long\": -3.5414650921496\n            },\n            {\n                \"lat\": 40.290527236631,\n                \"long\": -3.5415588988283\n            },\n            {\n                \"lat\": 40.290556672235,\n                \"long\": -3.5416989027099\n            },\n            {\n                \"lat\": 40.290567686643,\n                \"long\": -3.5417516981321\n            },\n            {\n                \"lat\": 40.290576146277,\n                \"long\": -3.5417921198522\n            },\n            {\n                \"lat\": 40.290608841617,\n                \"long\": -3.5419477975157\n            },\n            {\n                \"lat\": 40.290617918031,\n                \"long\": -3.5419911654796\n            },\n            {\n                \"lat\": 40.290622240883,\n                \"long\": -3.5420492018182\n            },\n            {\n                \"lat\": 40.290638354007,\n                \"long\": -3.542263572565\n            },\n            {\n                \"lat\": 40.290642593801,\n                \"long\": -3.5423200788143\n            },\n            {\n                \"lat\": 40.290662947187,\n                \"long\": -3.5425907206731\n            },\n            {\n                \"lat\": 40.290667359827,\n                \"long\": -3.5426487578056\n            },\n            {\n                \"lat\": 40.290683129144,\n                \"long\": -3.5428593612566\n            },\n            {\n                \"lat\": 40.290687880477,\n                \"long\": -3.5429219895163\n            },\n            {\n                \"lat\": 40.290703739385,\n                \"long\": -3.5431325938102\n            },\n            {\n                \"lat\": 40.290707974888,\n                \"long\": -3.5431899236886\n            },\n            {\n                \"lat\": 40.290724262206,\n                \"long\": -3.5434051199222\n            },\n            {\n                \"lat\": 40.290730875843,\n                \"long\": -3.5434931757701\n            },\n            {\n                \"lat\": 40.290740543042,\n                \"long\": -3.543621610366\n            },\n            {\n                \"lat\": 40.290742241461,\n                \"long\": -3.5436436246975\n            },\n            {\n                \"lat\": 40.290749020168,\n                \"long\": -3.5437348584897\n            },\n            {\n                \"lat\": 40.290768947449,\n                \"long\": -3.5439996152223\n            },\n            {\n                \"lat\": 40.29077640731,\n                \"long\": -3.5440992077672\n            },\n            {\n                \"lat\": 40.290789550012,\n                \"long\": -3.544273907257\n            },\n            {\n                \"lat\": 40.290809814821,\n                \"long\": -3.5445432554019\n            },\n            {\n                \"lat\": 40.290819394085,\n                \"long\": -3.544670983681\n            },\n            {\n                \"lat\": 40.290830584637,\n                \"long\": -3.5448200197786\n            },\n            {\n                \"lat\": 40.290849830838,\n                \"long\": -3.5450758301847\n            },\n            {\n                \"lat\": 40.290851358224,\n                \"long\": -3.5450958431442\n            },\n            {\n                \"lat\": 40.290854068702,\n                \"long\": -3.5451324544173\n            },\n            {\n                \"lat\": 40.290854578198,\n                \"long\": -3.5451390469734\n            },\n            {\n                \"lat\": 40.290878403927,\n                \"long\": -3.5451302969251\n            },\n            {\n                \"lat\": 40.290884721271,\n                \"long\": -3.5451279946608\n            },\n            {\n                \"lat\": 40.290956829081,\n                \"long\": -3.5451017495416\n            },\n            {\n                \"lat\": 40.290992206204,\n                \"long\": -3.5450888568267\n            },\n            {\n                \"lat\": 40.291066841496,\n                \"long\": -3.5450615730678\n            },\n            {\n                \"lat\": 40.291110070248,\n                \"long\": -3.5450458021005\n            },\n            {\n                \"lat\": 40.291175770606,\n                \"long\": -3.5450218583698\n            },\n            {\n                \"lat\": 40.291222609578,\n                \"long\": -3.545004704533\n            },\n            {\n                \"lat\": 40.291286324081,\n                \"long\": -3.544981568335\n            },\n            {\n                \"lat\": 40.291336140984,\n                \"long\": -3.5449633794961\n            },\n            {\n                \"lat\": 40.291394712071,\n                \"long\": -3.5449419666896\n            },\n            {\n                \"lat\": 40.291450304662,\n                \"long\": -3.544921706445\n            },\n            {\n                \"lat\": 40.291503370314,\n                \"long\": -3.5449023670901\n            },\n            {\n                \"lat\": 40.291564919325,\n                \"long\": -3.5448799192254\n            },\n            {\n                \"lat\": 40.291607787138,\n                \"long\": -3.5448642627838\n            },\n            {\n                \"lat\": 40.291678271057,\n                \"long\": -3.5448384746821\n            },\n            {\n                \"lat\": 40.291715091795,\n                \"long\": -3.5448251226795\n            },\n            {\n                \"lat\": 40.291791261308,\n                \"long\": -3.544797262405\n            },\n            {\n                \"lat\": 40.291824020817,\n                \"long\": -3.5447854072331\n            },\n            {\n                \"lat\": 40.291903529166,\n                \"long\": -3.544756397151\n            },\n            {\n                \"lat\": 40.291934394023,\n                \"long\": -3.5447451149923\n            },\n            {\n                \"lat\": 40.292012458716,\n                \"long\": -3.5447165638384\n            },\n            {\n                \"lat\": 40.292044857304,\n                \"long\": -3.5447048233455\n            },\n            {\n                \"lat\": 40.292063268219,\n                \"long\": -3.5446980296259\n            },\n            {\n                \"lat\": 40.292129690321,\n                \"long\": -3.54467385572\n            },\n            {\n                \"lat\": 40.292148371502,\n                \"long\": -3.5446670641536\n            },\n            {\n                \"lat\": 40.292241326953,\n                \"long\": -3.5446331026502\n            },\n            {\n                \"lat\": 40.292250442041,\n                \"long\": -3.5446297638729\n            },\n            {\n                \"lat\": 40.292256398463,\n                \"long\": -3.5446275762729\n            },\n            {\n                \"lat\": 40.292356753968,\n                \"long\": -3.5445909680304\n            },\n            {\n                \"lat\": 40.292457109459,\n                \"long\": -3.544554359681\n            },\n            {\n                \"lat\": 40.292466585457,\n                \"long\": -3.5445509061259\n            },\n            {\n                \"lat\": 40.292538152034,\n                \"long\": -3.5445247731097\n            },\n            {\n                \"lat\": 40.292577319486,\n                \"long\": -3.5445104983753\n            },\n            {\n                \"lat\": 40.292638236681,\n                \"long\": -3.544488280048\n            },\n            {\n                \"lat\": 40.292689767966,\n                \"long\": -3.5444695159829\n            },\n            {\n                \"lat\": 40.292803119539,\n                \"long\": -3.5444280700861\n            },\n            {\n                \"lat\": 40.292916470542,\n                \"long\": -3.5443867417029\n            },\n            {\n                \"lat\": 40.293029550707,\n                \"long\": -3.5443455286655\n            },\n            {\n                \"lat\": 40.293141818945,\n                \"long\": -3.5443045442886\n            },\n            {\n                \"lat\": 40.293253906435,\n                \"long\": -3.5442636759832\n            },\n            {\n                \"lat\": 40.293367438106,\n                \"long\": -3.5442222308529\n            },\n            {\n                \"lat\": 40.293476727813,\n                \"long\": -3.544182398738\n            },\n            {\n                \"lat\": 40.293589537631,\n                \"long\": -3.5441411828614\n            },\n            {\n                \"lat\": 40.293683395467,\n                \"long\": -3.5441068742072\n            },\n            {\n                \"lat\": 40.293742778292,\n                \"long\": -3.5440852311407\n            },\n            {\n                \"lat\": 40.293766784113,\n                \"long\": -3.5440764818053\n            },\n            {\n                \"lat\": 40.293768208392,\n                \"long\": -3.5440801405696\n            },\n            {\n                \"lat\": 40.29377319143,\n                \"long\": -3.5440933580266\n            },\n            {\n                \"lat\": 40.293875169843,\n                \"long\": -3.5443629030527\n            },\n            {\n                \"lat\": 40.293934434686,\n                \"long\": -3.5445195087379\n            },\n            {\n                \"lat\": 40.293977414011,\n                \"long\": -3.5446332746184\n            },\n            {\n                \"lat\": 40.294077787829,\n                \"long\": -3.5448989257071\n            },\n            {\n                \"lat\": 40.294114005333,\n                \"long\": -3.5449945186013\n            },\n            {\n                \"lat\": 40.29417709437,\n                \"long\": -3.5451615099261\n            },\n            {\n                \"lat\": 40.294279780997,\n                \"long\": -3.5454331816831\n            },\n            {\n                \"lat\": 40.294280670797,\n                \"long\": -3.5454355419785\n            },\n            {\n                \"lat\": 40.294379708614,\n                \"long\": -3.5456975373201\n            },\n            {\n                \"lat\": 40.29448221712,\n                \"long\": -3.5459685033216\n            },\n            {\n                \"lat\": 40.294502326349,\n                \"long\": -3.5460218463276\n            },\n            {\n                \"lat\": 40.294561854747,\n                \"long\": -3.5461793982914\n            },\n            {\n                \"lat\": 40.294581876565,\n                \"long\": -3.5462321524307\n            },\n            {\n                \"lat\": 40.294620760635,\n                \"long\": -3.5463351806535\n            },\n            {\n                \"lat\": 40.294681357447,\n                \"long\": -3.5464953302449\n            },\n            {\n                \"lat\": 40.294714546709,\n                \"long\": -3.5465832526841\n            },\n            {\n                \"lat\": 40.294722555254,\n                \"long\": -3.5466043779614\n            },\n            {\n                \"lat\": 40.294735207305,\n                \"long\": -3.5466342473412\n            },\n            {\n                \"lat\": 40.29478884344,\n                \"long\": -3.5467611618262\n            },\n            {\n                \"lat\": 40.294885959136,\n                \"long\": -3.5469907895877\n            },\n            {\n                \"lat\": 40.294889345262,\n                \"long\": -3.5469986999846\n            },\n            {\n                \"lat\": 40.294983073815,\n                \"long\": -3.5472205356569\n            },\n            {\n                \"lat\": 40.294996438628,\n                \"long\": -3.5472520582324\n            },\n            {\n                \"lat\": 40.295026018248,\n                \"long\": -3.5473220682575\n            },\n            {\n                \"lat\": 40.295103620964,\n                \"long\": -3.547505535657\n            },\n            {\n                \"lat\": 40.29521329683,\n                \"long\": -3.5477650346097\n            },\n            {\n                \"lat\": 40.295240114565,\n                \"long\": -3.5478284338896\n            },\n            {\n                \"lat\": 40.29525757819,\n                \"long\": -3.547869520166\n            },\n            {\n                \"lat\": 40.295272456513,\n                \"long\": -3.5479048203022\n            },\n            {\n                \"lat\": 40.295274238798,\n                \"long\": -3.5479089527547\n            },\n            {\n                \"lat\": 40.295322082359,\n                \"long\": -3.5480221740317\n            },\n            {\n                \"lat\": 40.295435321035,\n                \"long\": -3.5482900572451\n            },\n            {\n                \"lat\": 40.295543213972,\n                \"long\": -3.5485451909262\n            },\n            {\n                \"lat\": 40.295567982094,\n                \"long\": -3.5486037502164\n            },\n            {\n                \"lat\": 40.295620636218,\n                \"long\": -3.5487283066865\n            },\n            {\n                \"lat\": 40.295624755772,\n                \"long\": -3.5487335170232\n            },\n            {\n                \"lat\": 40.295684313004,\n                \"long\": -3.5488082419337\n            },\n            {\n                \"lat\": 40.295730256993,\n                \"long\": -3.548865913847\n            },\n            {\n                \"lat\": 40.2958430123,\n                \"long\": -3.5490074295946\n            },\n            {\n                \"lat\": 40.29592155548,\n                \"long\": -3.5491060759683\n            },\n            {\n                \"lat\": 40.29594976663,\n                \"long\": -3.5491414846569\n            },\n            {\n                \"lat\": 40.29606261112,\n                \"long\": -3.549283119706\n            },\n            {\n                \"lat\": 40.296170708638,\n                \"long\": -3.5494188337629\n            },\n            {\n                \"lat\": 40.296276656703,\n                \"long\": -3.5495518246481\n            },\n            {\n                \"lat\": 40.296290000642,\n                \"long\": -3.5495686405501\n            },\n            {\n                \"lat\": 40.296363438984,\n                \"long\": -3.5496607755261\n            },\n            {\n                \"lat\": 40.296471446515,\n                \"long\": -3.5497963724006\n            },\n            {\n                \"lat\": 40.296513360025,\n                \"long\": -3.5498489535662\n            },\n            {\n                \"lat\": 40.296584021589,\n                \"long\": -3.5499376544685\n            },\n            {\n                \"lat\": 40.296639726555,\n                \"long\": -3.550007643819\n            },\n            {\n                \"lat\": 40.296651817008,\n                \"long\": -3.550022802481\n            },\n            {\n                \"lat\": 40.296692118315,\n                \"long\": -3.5500733706124\n            },\n            {\n                \"lat\": 40.296799856758,\n                \"long\": -3.5502086136386\n            },\n            {\n                \"lat\": 40.296892011856,\n                \"long\": -3.5503243165024\n            },\n            {\n                \"lat\": 40.296894608773,\n                \"long\": -3.5503276320956\n            },\n            {\n                \"lat\": 40.296991689548,\n                \"long\": -3.5504494936659\n            },\n            {\n                \"lat\": 40.29699607817,\n                \"long\": -3.5504549417202\n            },\n            {\n                \"lat\": 40.297035662487,\n                \"long\": -3.5505046809151\n            },\n            {\n                \"lat\": 40.297020827292,\n                \"long\": -3.5505551550852\n            },\n            {\n                \"lat\": 40.297009105503,\n                \"long\": -3.5505950649463\n            },\n            {\n                \"lat\": 40.29692870445,\n                \"long\": -3.5508680932716\n            },\n            {\n                \"lat\": 40.296850497965,\n                \"long\": -3.5511341967517\n            },\n            {\n                \"lat\": 40.296788867285,\n                \"long\": -3.5513437215735\n            },\n            {\n                \"lat\": 40.296774215268,\n                \"long\": -3.5513934908967\n            },\n            {\n                \"lat\": 40.29669289574,\n                \"long\": -3.5516698043714\n            },\n            {\n                \"lat\": 40.296623113701,\n                \"long\": -3.5519070299176\n            },\n            {\n                \"lat\": 40.296613039995,\n                \"long\": -3.5519413049891\n            },\n            {\n                \"lat\": 40.296557543222,\n                \"long\": -3.5521300522777\n            },\n            {\n                \"lat\": 40.296540050372,\n                \"long\": -3.5521897993162\n            },\n            {\n                \"lat\": 40.296460835274,\n                \"long\": -3.5524589507095\n            },\n            {\n                \"lat\": 40.296383816543,\n                \"long\": -3.5527208244079\n            },\n            {\n                \"lat\": 40.296327677759,\n                \"long\": -3.5529116830763\n            },\n            {\n                \"lat\": 40.296306706009,\n                \"long\": -3.5529829320834\n            },\n            {\n                \"lat\": 40.296267052294,\n                \"long\": -3.553117565385\n            },\n            {\n                \"lat\": 40.296229319552,\n                \"long\": -3.5532460958553\n            },\n            {\n                \"lat\": 40.296153125049,\n                \"long\": -3.5535047976615\n            },\n            {\n                \"lat\": 40.296128030804,\n                \"long\": -3.5535902495463\n            },\n            {\n                \"lat\": 40.296110538893,\n                \"long\": -3.5536496428558\n            },\n            {\n                \"lat\": 40.296109531584,\n                \"long\": -3.55365304678\n            },\n            {\n                \"lat\": 40.296103211831,\n                \"long\": -3.553674644673\n            },\n            {\n                \"lat\": 40.29609927437,\n                \"long\": -3.5536879081348\n            },\n            {\n                \"lat\": 40.296088008708,\n                \"long\": -3.5537264087121\n            },\n            {\n                \"lat\": 40.296075003745,\n                \"long\": -3.5537706604244\n            },\n            {\n                \"lat\": 40.296015383514,\n                \"long\": -3.5539732549246\n            },\n            {\n                \"lat\": 40.29599752598,\n                \"long\": -3.5540337039901\n            },\n            {\n                \"lat\": 40.295917664716,\n                \"long\": -3.5543051989876\n            },\n            {\n                \"lat\": 40.295907131965,\n                \"long\": -3.5543411168318\n            },\n            {\n                \"lat\": 40.295889913885,\n                \"long\": -3.5543996883729\n            },\n            {\n                \"lat\": 40.295873612454,\n                \"long\": -3.5544549729026\n            },\n            {\n                \"lat\": 40.295849891406,\n                \"long\": -3.5545357289187\n            },\n            {\n                \"lat\": 40.295805564631,\n                \"long\": -3.5546863239068\n            },\n            {\n                \"lat\": 40.295772502563,\n                \"long\": -3.5547986538024\n            },\n            {\n                \"lat\": 40.295765084036,\n                \"long\": -3.5548238899416\n            },\n            {\n                \"lat\": 40.295693921646,\n                \"long\": -3.555065804072\n            },\n            {\n                \"lat\": 40.295669284603,\n                \"long\": -3.5551496113087\n            },\n            {\n                \"lat\": 40.295653806604,\n                \"long\": -3.5552021960511\n            },\n            {\n                \"lat\": 40.295590431986,\n                \"long\": -3.5553042762538\n            },\n            {\n                \"lat\": 40.29557708497,\n                \"long\": -3.5553258162985\n            },\n            {\n                \"lat\": 40.295481478357,\n                \"long\": -3.5554797553389\n            },\n            {\n                \"lat\": 40.295397038392,\n                \"long\": -3.5556159012506\n            },\n            {\n                \"lat\": 40.295369527789,\n                \"long\": -3.5556601509867\n            },\n            {\n                \"lat\": 40.295303519837,\n                \"long\": -3.5557664444776\n            },\n            {\n                \"lat\": 40.295262752155,\n                \"long\": -3.5558322346743\n            },\n            {\n                \"lat\": 40.295154252135,\n                \"long\": -3.5560068921753\n            },\n            {\n                \"lat\": 40.29504702215,\n                \"long\": -3.556179676998\n            },\n            {\n                \"lat\": 40.294953321555,\n                \"long\": -3.5563304524975\n            },\n            {\n                \"lat\": 40.294942516648,\n                \"long\": -3.5563478949519\n            },\n            {\n                \"lat\": 40.294832380101,\n                \"long\": -3.5565254788302\n            },\n            {\n                \"lat\": 40.29481403947,\n                \"long\": -3.5565549781659\n            },\n            {\n                \"lat\": 40.294767370264,\n                \"long\": -3.5566301316207\n            },\n            {\n                \"lat\": 40.294759289497,\n                \"long\": -3.5566431253351\n            },\n            {\n                \"lat\": 40.294655055292,\n                \"long\": -3.5568109911181\n            },\n            {\n                \"lat\": 40.294609293609,\n                \"long\": -3.5568847397804\n            },\n            {\n                \"lat\": 40.29454845927,\n                \"long\": -3.5569828373487\n            },\n            {\n                \"lat\": 40.294547007081,\n                \"long\": -3.5569850609174\n            },\n            {\n                \"lat\": 40.294439549563,\n                \"long\": -3.5571299560063\n            },\n            {\n                \"lat\": 40.294329643589,\n                \"long\": -3.5572781249226\n            },\n            {\n                \"lat\": 40.29432583491,\n                \"long\": -3.5572832705467\n            },\n            {\n                \"lat\": 40.294243768633,\n                \"long\": -3.5573937821926\n            },\n            {\n                \"lat\": 40.294221913738,\n                \"long\": -3.5574233698187\n            },\n            {\n                \"lat\": 40.294116632555,\n                \"long\": -3.5575652223356\n            },\n            {\n                \"lat\": 40.294009446283,\n                \"long\": -3.557709764852\n            },\n            {\n                \"lat\": 40.293911510191,\n                \"long\": -3.5578416760917\n            },\n            {\n                \"lat\": 40.293897998412,\n                \"long\": -3.5578599193734\n            },\n            {\n                \"lat\": 40.293787184376,\n                \"long\": -3.5580093726796\n            },\n            {\n                \"lat\": 40.293664672589,\n                \"long\": -3.5581744951497\n            },\n            {\n                \"lat\": 40.293606635777,\n                \"long\": -3.5582527293858\n            },\n            {\n                \"lat\": 40.293592869953,\n                \"long\": -3.5582862656701\n            },\n            {\n                \"lat\": 40.293562420789,\n                \"long\": -3.5583604911869\n            },\n            {\n                \"lat\": 40.293455939853,\n                \"long\": -3.5586199865826\n            },\n            {\n                \"lat\": 40.293344627349,\n                \"long\": -3.5588910892432\n            },\n            {\n                \"lat\": 40.293286826479,\n                \"long\": -3.5590322700212\n            },\n            {\n                \"lat\": 40.293263305484,\n                \"long\": -3.5590896096119\n            },\n            {\n                \"lat\": 40.293237597303,\n                \"long\": -3.5591521079646\n            },\n            {\n                \"lat\": 40.29313776961,\n                \"long\": -3.5593954193443\n            },\n            {\n                \"lat\": 40.293028733708,\n                \"long\": -3.55966112612\n            },\n            {\n                \"lat\": 40.292992540318,\n                \"long\": -3.5597493039263\n            },\n            {\n                \"lat\": 40.292984973554,\n                \"long\": -3.5597677132906\n            },\n            {\n                \"lat\": 40.292920481681,\n                \"long\": -3.5599136611908\n            },\n            {\n                \"lat\": 40.292811447354,\n                \"long\": -3.5601601886188\n            },\n            {\n                \"lat\": 40.292707694661,\n                \"long\": -3.5603949934563\n            },\n            {\n                \"lat\": 40.292672351412,\n                \"long\": -3.5604749416824\n            },\n            {\n                \"lat\": 40.292603578287,\n                \"long\": -3.5606303828409\n            },\n            {\n                \"lat\": 40.292492445868,\n                \"long\": -3.5608819497382\n            },\n            {\n                \"lat\": 40.292388874179,\n                \"long\": -3.5611162832506\n            },\n            {\n                \"lat\": 40.292326111713,\n                \"long\": -3.561258242672\n            },\n            {\n                \"lat\": 40.292288490529,\n                \"long\": -3.5613433479069\n            },\n            {\n                \"lat\": 40.292188106436,\n                \"long\": -3.5615704118878\n            },\n            {\n                \"lat\": 40.292149665083,\n                \"long\": -3.5616573924395\n            },\n            {\n                \"lat\": 40.292094930416,\n                \"long\": -3.5617044711969\n            },\n            {\n                \"lat\": 40.292004912449,\n                \"long\": -3.5617818475201\n            },\n            {\n                \"lat\": 40.291977228066,\n                \"long\": -3.561805737142\n            },\n            {\n                \"lat\": 40.29194266834,\n                \"long\": -3.5618354524548\n            },\n            {\n                \"lat\": 40.291873277456,\n                \"long\": -3.5618951160477\n            },\n            {\n                \"lat\": 40.291763626588,\n                \"long\": -3.5619895065259\n            },\n            {\n                \"lat\": 40.291655423928,\n                \"long\": -3.5620824968699\n            },\n            {\n                \"lat\": 40.291548125514,\n                \"long\": -3.5621747884983\n            },\n            {\n                \"lat\": 40.291463534877,\n                \"long\": -3.5622476201273\n            },\n            {\n                \"lat\": 40.291460006537,\n                \"long\": -3.5622506498415\n            },\n            {\n                \"lat\": 40.291437026703,\n                \"long\": -3.5622704602501\n            },\n            {\n                \"lat\": 40.291428703627,\n                \"long\": -3.5622775680464\n            },\n            {\n                \"lat\": 40.29136618845,\n                \"long\": -3.5623312874815\n            },\n            {\n                \"lat\": 40.291327828834,\n                \"long\": -3.5623642650174\n            },\n            {\n                \"lat\": 40.29131697182,\n                \"long\": -3.5623737048239\n            },\n            {\n                \"lat\": 40.291273364719,\n                \"long\": -3.562411227232\n            },\n            {\n                \"lat\": 40.291256809209,\n                \"long\": -3.5624253258541\n            },\n            {\n                \"lat\": 40.291240162465,\n                \"long\": -3.5624396590164\n            },\n            {\n                \"lat\": 40.291222792147,\n                \"long\": -3.5624545744315\n            },\n            {\n                \"lat\": 40.291218901156,\n                \"long\": -3.5624580717245\n            },\n            {\n                \"lat\": 40.291206235488,\n                \"long\": -3.5624689083264\n            },\n            {\n                \"lat\": 40.291202887892,\n                \"long\": -3.5624718218645\n            },\n            {\n                \"lat\": 40.291189226666,\n                \"long\": -3.5624835914204\n            },\n            {\n                \"lat\": 40.291172218415,\n                \"long\": -3.5624981568603\n            },\n            {\n                \"lat\": 40.291155210161,\n                \"long\": -3.5625127222929\n            },\n            {\n                \"lat\": 40.29114525803,\n                \"long\": -3.5625213459936\n            },\n            {\n                \"lat\": 40.29113964848,\n                \"long\": -3.5625262408483\n            },\n            {\n                \"lat\": 40.291123001723,\n                \"long\": -3.5625405739613\n            },\n            {\n                \"lat\": 40.29110554073,\n                \"long\": -3.5625556062248\n            },\n            {\n                \"lat\": 40.291088985203,\n                \"long\": -3.562569704777\n            },\n            {\n                \"lat\": 40.291072519192,\n                \"long\": -3.5625839217161\n            },\n            {\n                \"lat\": 40.291055782339,\n                \"long\": -3.5625982540538\n            },\n            {\n                \"lat\": 40.291038954823,\n                \"long\": -3.562612703284\n            },\n            {\n                \"lat\": 40.291022307484,\n                \"long\": -3.5626271540012\n            },\n            {\n                \"lat\": 40.291005299214,\n                \"long\": -3.5626417193695\n            },\n            {\n                \"lat\": 40.290987928869,\n                \"long\": -3.5626566346817\n            },\n            {\n                \"lat\": 40.290971553508,\n                \"long\": -3.5626707346793\n            },\n            {\n                \"lat\": 40.290954816072,\n                \"long\": -3.5626851846209\n            },\n            {\n                \"lat\": 40.290937988546,\n                \"long\": -3.5626996338082\n            },\n            {\n                \"lat\": 40.290921522518,\n                \"long\": -3.5627138506843\n            },\n            {\n                \"lat\": 40.290904694988,\n                \"long\": -3.5627282998575\n            },\n            {\n                \"lat\": 40.290888319618,\n                \"long\": -3.5627423998206\n            },\n            {\n                \"lat\": 40.290869863613,\n                \"long\": -3.562758247285\n            },\n            {\n                \"lat\": 40.290842360352,\n                \"long\": -3.5627819023138\n            },\n            {\n                \"lat\": 40.290842896309,\n                \"long\": -3.5627828479679\n            },\n            {\n                \"lat\": 40.290894609808,\n                \"long\": -3.5628753977657\n            },\n            {\n                \"lat\": 40.291282953276,\n                \"long\": -3.5635697063204\n            },\n            {\n                \"lat\": 40.291622258136,\n                \"long\": -3.5641765522134\n            },\n            {\n                \"lat\": 40.291784183799,\n                \"long\": -3.5644661477889\n            },\n            {\n                \"lat\": 40.291910562779,\n                \"long\": -3.5646920339397\n            },\n            {\n                \"lat\": 40.291822340526,\n                \"long\": -3.5647887160805\n            },\n            {\n                \"lat\": 40.291469448987,\n                \"long\": -3.5651757950749\n            },\n            {\n                \"lat\": 40.291384396693,\n                \"long\": -3.5652689728161\n            },\n            {\n                \"lat\": 40.291018007232,\n                \"long\": -3.5656708760153\n            },\n            {\n                \"lat\": 40.290663482518,\n                \"long\": -3.5660596970055\n            },\n            {\n                \"lat\": 40.290482324538,\n                \"long\": -3.5662584265346\n            },\n            {\n                \"lat\": 40.29031194557,\n                \"long\": -3.5664452446911\n            },\n            {\n                \"lat\": 40.289970824646,\n                \"long\": -3.5668192281172\n            },\n            {\n                \"lat\": 40.289615209254,\n                \"long\": -3.5672092045272\n            },\n            {\n                \"lat\": 40.289566477169,\n                \"long\": -3.567262680284\n            },\n            {\n                \"lat\": 40.289254519863,\n                \"long\": -3.5676047815363\n            },\n            {\n                \"lat\": 40.288817379818,\n                \"long\": -3.5680840676219\n            },\n            {\n                \"lat\": 40.287572382558,\n                \"long\": -3.5705933720216\n            },\n            {\n                \"lat\": 40.287167897693,\n                \"long\": -3.5714084243831\n            },\n            {\n                \"lat\": 40.287119395069,\n                \"long\": -3.5715062491367\n            },\n            {\n                \"lat\": 40.287123370027,\n                \"long\": -3.5715040473694\n            },\n            {\n                \"lat\": 40.287520301932,\n                \"long\": -3.571288570406\n            },\n            {\n                \"lat\": 40.28754848639,\n                \"long\": -3.5712732785248\n            },\n            {\n                \"lat\": 40.28765950844,\n                \"long\": -3.5712129199485\n            },\n            {\n                \"lat\": 40.288551590184,\n                \"long\": -3.5710156065032\n            },\n            {\n                \"lat\": 40.288733382222,\n                \"long\": -3.5710004304986\n            },\n            {\n                \"lat\": 40.288768262356,\n                \"long\": -3.5709975475546\n            },\n            {\n                \"lat\": 40.289007827582,\n                \"long\": -3.5709775634905\n            },\n            {\n                \"lat\": 40.289817926255,\n                \"long\": -3.5711267364224\n            },\n            {\n                \"lat\": 40.29084423017,\n                \"long\": -3.5713158524557\n            },\n            {\n                \"lat\": 40.290896791164,\n                \"long\": -3.5711806433451\n            },\n            {\n                \"lat\": 40.291064325856,\n                \"long\": -3.5707501555427\n            },\n            {\n                \"lat\": 40.291353098638,\n                \"long\": -3.5702882128536\n            },\n            {\n                \"lat\": 40.291680122539,\n                \"long\": -3.5700714222921\n            },\n            {\n                \"lat\": 40.291877660824,\n                \"long\": -3.570060258008\n            },\n            {\n                \"lat\": 40.292124277105,\n                \"long\": -3.5701268042198\n            },\n            {\n                \"lat\": 40.292961735267,\n                \"long\": -3.5709213049089\n            },\n            {\n                \"lat\": 40.293349991647,\n                \"long\": -3.5712585959266\n            },\n            {\n                \"lat\": 40.294476449537,\n                \"long\": -3.5722372250459\n            },\n            {\n                \"lat\": 40.295505859476,\n                \"long\": -3.5730541091519\n            },\n            {\n                \"lat\": 40.295666147716,\n                \"long\": -3.5731605330636\n            },\n            {\n                \"lat\": 40.295713022572,\n                \"long\": -3.5731915205883\n            },\n            {\n                \"lat\": 40.295753161737,\n                \"long\": -3.5732182154942\n            },\n            {\n                \"lat\": 40.295863882241,\n                \"long\": -3.5732916295045\n            },\n            {\n                \"lat\": 40.295949368762,\n                \"long\": -3.5733484757442\n            },\n            {\n                \"lat\": 40.296026414886,\n                \"long\": -3.5733996031006\n            },\n            {\n                \"lat\": 40.296079844586,\n                \"long\": -3.5734349997928\n            },\n            {\n                \"lat\": 40.296215887187,\n                \"long\": -3.5735253363741\n            },\n            {\n                \"lat\": 40.296235553079,\n                \"long\": -3.5735383276281\n            },\n            {\n                \"lat\": 40.296473164672,\n                \"long\": -3.5736943546379\n            },\n            {\n                \"lat\": 40.296786388087,\n                \"long\": -3.573899969528\n            },\n            {\n                \"lat\": 40.296838920818,\n                \"long\": -3.5739345357983\n            },\n            {\n                \"lat\": 40.296882294825,\n                \"long\": -3.5739629062271\n            },\n            {\n                \"lat\": 40.297208742516,\n                \"long\": -3.5741541631286\n            },\n            {\n                \"lat\": 40.297399814352,\n                \"long\": -3.5742660301212\n            },\n            {\n                \"lat\": 40.297842054164,\n                \"long\": -3.5745251033013\n            },\n            {\n                \"lat\": 40.297998241166,\n                \"long\": -3.5746044370877\n            },\n            {\n                \"lat\": 40.298017921535,\n                \"long\": -3.5746144875383\n            },\n            {\n                \"lat\": 40.298059107423,\n                \"long\": -3.5746298973793\n            },\n            {\n                \"lat\": 40.298133564814,\n                \"long\": -3.5746579438013\n            },\n            {\n                \"lat\": 40.298526805516,\n                \"long\": -3.5748057672737\n            },\n            {\n                \"lat\": 40.298549646573,\n                \"long\": -3.5748143150121\n            },\n            {\n                \"lat\": 40.298842801195,\n                \"long\": -3.5749244627919\n            },\n            {\n                \"lat\": 40.298915910092,\n                \"long\": -3.5749519101154\n            },\n            {\n                \"lat\": 40.299589424271,\n                \"long\": -3.5751730662487\n            },\n            {\n                \"lat\": 40.300229658318,\n                \"long\": -3.5753832367896\n            },\n            {\n                \"lat\": 40.300316350006,\n                \"long\": -3.5754149187834\n            },\n            {\n                \"lat\": 40.300699718397,\n                \"long\": -3.5755549016762\n            },\n            {\n                \"lat\": 40.300933909604,\n                \"long\": -3.5756734985828\n            },\n            {\n                \"lat\": 40.301012624945,\n                \"long\": -3.5756786381367\n            },\n            {\n                \"lat\": 40.301356847033,\n                \"long\": -3.5757010930834\n            },\n            {\n                \"lat\": 40.301729528361,\n                \"long\": -3.57572555492\n            },\n            {\n                \"lat\": 40.301764022988,\n                \"long\": -3.5757277304681\n            },\n            {\n                \"lat\": 40.301849132859,\n                \"long\": -3.5757332774544\n            },\n            {\n                \"lat\": 40.302464264551,\n                \"long\": -3.5757735655557\n            },\n            {\n                \"lat\": 40.302894136327,\n                \"long\": -3.5758016909812\n            },\n            {\n                \"lat\": 40.302956108597,\n                \"long\": -3.5758039822433\n            },\n            {\n                \"lat\": 40.30317571449,\n                \"long\": -3.575811965813\n            },\n            {\n                \"lat\": 40.303354875803,\n                \"long\": -3.5758185469736\n            },\n            {\n                \"lat\": 40.303491340908,\n                \"long\": -3.5758235889067\n            },\n            {\n                \"lat\": 40.303737249173,\n                \"long\": -3.5758325020046\n            },\n            {\n                \"lat\": 40.303900647283,\n                \"long\": -3.5758384787447\n            },\n            {\n                \"lat\": 40.30394631641,\n                \"long\": -3.5758400432789\n            },\n            {\n                \"lat\": 40.304164157863,\n                \"long\": -3.5758586028064\n            },\n            {\n                \"lat\": 40.304319140808,\n                \"long\": -3.5758719216835\n            },\n            {\n                \"lat\": 40.304702682212,\n                \"long\": -3.575904597529\n            },\n            {\n                \"lat\": 40.304841092447,\n                \"long\": -3.5758989478373\n            },\n            {\n                \"lat\": 40.305689577378,\n                \"long\": -3.5758640255683\n            },\n            {\n                \"lat\": 40.305955674897,\n                \"long\": -3.5758531055299\n            },\n            {\n                \"lat\": 40.306127245938,\n                \"long\": -3.5758460897835\n            },\n            {\n                \"lat\": 40.306498349469,\n                \"long\": -3.575825470319\n            },\n            {\n                \"lat\": 40.306573687623,\n                \"long\": -3.5758212852844\n            },\n            {\n                \"lat\": 40.306650647373,\n                \"long\": -3.5758171140119\n            },\n            {\n                \"lat\": 40.307038422544,\n                \"long\": -3.5757955767236\n            },\n            {\n                \"lat\": 40.307455035432,\n                \"long\": -3.5757724012156\n            },\n            {\n                \"lat\": 40.307660502606,\n                \"long\": -3.5757610834572\n            },\n            {\n                \"lat\": 40.307672758765,\n                \"long\": -3.5757603637682\n            },\n            {\n                \"lat\": 40.307695604391,\n                \"long\": -3.5757679716147\n            },\n            {\n                \"lat\": 40.307726185342,\n                \"long\": -3.5757781164381\n            },\n            {\n                \"lat\": 40.307727444826,\n                \"long\": -3.5757784801741\n            },\n            {\n                \"lat\": 40.307747772068,\n                \"long\": -3.5757852428851\n            },\n            {\n                \"lat\": 40.307771157637,\n                \"long\": -3.5757929730142\n            },\n            {\n                \"lat\": 40.307792024238,\n                \"long\": -3.5757999756752\n            },\n            {\n                \"lat\": 40.307794363029,\n                \"long\": -3.5758007016187\n            },\n            {\n                \"lat\": 40.307974070248,\n                \"long\": -3.5758604796622\n            },\n            {\n                \"lat\": 40.307987742052,\n                \"long\": -3.575864949964\n            },\n            {\n                \"lat\": 40.308290852851,\n                \"long\": -3.5759655528139\n            },\n            {\n                \"lat\": 40.308792738906,\n                \"long\": -3.5761322175513\n            },\n            {\n                \"lat\": 40.309212326627,\n                \"long\": -3.5762714712679\n            },\n            {\n                \"lat\": 40.309877009837,\n                \"long\": -3.5764922471666\n            },\n            {\n                \"lat\": 40.310245058943,\n                \"long\": -3.5766144735427\n            },\n            {\n                \"lat\": 40.310302442803,\n                \"long\": -3.5766335557724\n            },\n            {\n                \"lat\": 40.310374937496,\n                \"long\": -3.5766575916385\n            },\n            {\n                \"lat\": 40.310416761241,\n                \"long\": -3.5766714811389\n            },\n            {\n                \"lat\": 40.310424856311,\n                \"long\": -3.5766741390623\n            },\n            {\n                \"lat\": 40.310568945955,\n                \"long\": -3.5767219679996\n            },\n            {\n                \"lat\": 40.31059682825,\n                \"long\": -3.5767312669452\n            },\n            {\n                \"lat\": 40.310660598403,\n                \"long\": -3.5767524043553\n            },\n            {\n                \"lat\": 40.310750901859,\n                \"long\": -3.5767823585761\n            },\n            {\n                \"lat\": 40.310873404803,\n                \"long\": -3.5768230608594\n            },\n            {\n                \"lat\": 40.31089193313,\n                \"long\": -3.5768292204742\n            },\n            {\n                \"lat\": 40.310906504012,\n                \"long\": -3.5768340518777\n            },\n            {\n                \"lat\": 40.310958041456,\n                \"long\": -3.5768512017673\n            },\n            {\n                \"lat\": 40.311005351775,\n                \"long\": -3.5768669034841\n            },\n            {\n                \"lat\": 40.311015335765,\n                \"long\": -3.5768701659571\n            },\n            {\n                \"lat\": 40.311023250652,\n                \"long\": -3.5768728223954\n            },\n            {\n                \"lat\": 40.311234617889,\n                \"long\": -3.5769429966762\n            },\n            {\n                \"lat\": 40.311260881502,\n                \"long\": -3.5769516936001\n            },\n            {\n                \"lat\": 40.311394357571,\n                \"long\": -3.576996020495\n            },\n            {\n                \"lat\": 40.311478364725,\n                \"long\": -3.5770239211113\n            },\n            {\n                \"lat\": 40.311701694257,\n                \"long\": -3.5770980818547\n            },\n            {\n                \"lat\": 40.311714016433,\n                \"long\": -3.5771021881105\n            },\n            {\n                \"lat\": 40.312182945809,\n                \"long\": -3.5769580106756\n            },\n            {\n                \"lat\": 40.312367647639,\n                \"long\": -3.5769013268515\n            },\n            {\n                \"lat\": 40.312602969519,\n                \"long\": -3.5768289500871\n            },\n            {\n                \"lat\": 40.313035264471,\n                \"long\": -3.5766961085667\n            },\n            {\n                \"lat\": 40.313117554896,\n                \"long\": -3.5766707991894\n            },\n            {\n                \"lat\": 40.313419466382,\n                \"long\": -3.5765780383841\n            },\n            {\n                \"lat\": 40.313581881522,\n                \"long\": -3.5765281067311\n            },\n            {\n                \"lat\": 40.313722731457,\n                \"long\": -3.5764848175164\n            },\n            {\n                \"lat\": 40.313875762681,\n                \"long\": -3.5764377479054\n            },\n            {\n                \"lat\": 40.313915193541,\n                \"long\": -3.5764256079489\n            },\n            {\n                \"lat\": 40.3140335762,\n                \"long\": -3.576389188762\n            },\n            {\n                \"lat\": 40.314531197281,\n                \"long\": -3.5762363009484\n            },\n            {\n                \"lat\": 40.314536250447,\n                \"long\": -3.5762346962134\n            },\n            {\n                \"lat\": 40.314556552613,\n                \"long\": -3.5762283957241\n            },\n            {\n                \"lat\": 40.314570177088,\n                \"long\": -3.5762242746198\n            },\n            {\n                \"lat\": 40.314615112116,\n                \"long\": -3.5762104158222\n            },\n            {\n                \"lat\": 40.314884630403,\n                \"long\": -3.5761276149556\n            },\n            {\n                \"lat\": 40.314647560856,\n                \"long\": -3.5777968307037\n            },\n            {\n                \"lat\": 40.315455631937,\n                \"long\": -3.5787815177009\n            },\n            {\n                \"lat\": 40.315663110175,\n                \"long\": -3.5790344483368\n            },\n            {\n                \"lat\": 40.315867185696,\n                \"long\": -3.579283114449\n            },\n            {\n                \"lat\": 40.315886563481,\n                \"long\": -3.5795153734815\n            },\n            {\n                \"lat\": 40.315939423737,\n                \"long\": -3.5801492573533\n            },\n            {\n                \"lat\": 40.315967466801,\n                \"long\": -3.5804856330728\n            },\n            {\n                \"lat\": 40.315949395958,\n                \"long\": -3.5804960708297\n            },\n            {\n                \"lat\": 40.315937867417,\n                \"long\": -3.5807287718688\n            },\n            {\n                \"lat\": 40.315920130496,\n                \"long\": -3.5810853519165\n            },\n            {\n                \"lat\": 40.315902398392,\n                \"long\": -3.5814407548706\n            },\n            {\n                \"lat\": 40.315880246112,\n                \"long\": -3.5818866267052\n            },\n            {\n                \"lat\": 40.3161406807,\n                \"long\": -3.582410250638\n            },\n            {\n                \"lat\": 40.315811952241,\n                \"long\": -3.5838185808079\n            },\n            {\n                \"lat\": 40.317549819797,\n                \"long\": -3.584677439013\n            },\n            {\n                \"lat\": 40.318354315865,\n                \"long\": -3.5850750207097\n            },\n            {\n                \"lat\": 40.319367141418,\n                \"long\": -3.5850734060803\n            },\n            {\n                \"lat\": 40.320285459979,\n                \"long\": -3.5850717996568\n            },\n            {\n                \"lat\": 40.320415644152,\n                \"long\": -3.5850716287661\n            },\n            {\n                \"lat\": 40.320674640479,\n                \"long\": -3.5849862937735\n            },\n            {\n                \"lat\": 40.320904488221,\n                \"long\": -3.5849105936428\n            },\n            {\n                \"lat\": 40.321297223779,\n                \"long\": -3.5847812132495\n            },\n            {\n                \"lat\": 40.322158498235,\n                \"long\": -3.5844974420969\n            },\n            {\n                \"lat\": 40.322171132601,\n                \"long\": -3.5844931959674\n            },\n            {\n                \"lat\": 40.322189000415,\n                \"long\": -3.5844873470977\n            },\n            {\n                \"lat\": 40.322328694081,\n                \"long\": -3.5844594786157\n            },\n            {\n                \"lat\": 40.322435561702,\n                \"long\": -3.5844380361662\n            },\n            {\n                \"lat\": 40.322580263129,\n                \"long\": -3.584399734834\n            },\n            {\n                \"lat\": 40.322715461249,\n                \"long\": -3.5843343966575\n            },\n            {\n                \"lat\": 40.322809657585,\n                \"long\": -3.5842888325265\n            },\n            {\n                \"lat\": 40.32291514288,\n                \"long\": -3.5842378333832\n            },\n            {\n                \"lat\": 40.323128200034,\n                \"long\": -3.5841508014004\n            },\n            {\n                \"lat\": 40.323220844587,\n                \"long\": -3.5841092254116\n            },\n            {\n                \"lat\": 40.323479815641,\n                \"long\": -3.5839930437238\n            },\n            {\n                \"lat\": 40.323603206385,\n                \"long\": -3.583946553108\n            },\n            {\n                \"lat\": 40.32372244473,\n                \"long\": -3.5839016744593\n            },\n            {\n                \"lat\": 40.323979166129,\n                \"long\": -3.5837492175491\n            },\n            {\n                \"lat\": 40.32399435026,\n                \"long\": -3.5837395785429\n            },\n            {\n                \"lat\": 40.324340870529,\n                \"long\": -3.5835202110247\n            },\n            {\n                \"lat\": 40.324371871151,\n                \"long\": -3.583500585122\n            },\n            {\n                \"lat\": 40.324506990677,\n                \"long\": -3.5834149967725\n            },\n            {\n                \"lat\": 40.324644855984,\n                \"long\": -3.5833387307824\n            },\n            {\n                \"lat\": 40.324852195565,\n                \"long\": -3.583224100463\n            },\n            {\n                \"lat\": 40.324930049274,\n                \"long\": -3.5831855730579\n            },\n            {\n                \"lat\": 40.325053964884,\n                \"long\": -3.5831242530204\n            },\n            {\n                \"lat\": 40.325059654686,\n                \"long\": -3.5831214769345\n            },\n            {\n                \"lat\": 40.325108654004,\n                \"long\": -3.5830878802709\n            },\n            {\n                \"lat\": 40.325183961553,\n                \"long\": -3.5830361470747\n            },\n            {\n                \"lat\": 40.325241523386,\n                \"long\": -3.5830017999825\n            },\n            {\n                \"lat\": 40.325312548698,\n                \"long\": -3.582959564326\n            },\n            {\n                \"lat\": 40.3255704471,\n                \"long\": -3.5828056979254\n            },\n            {\n                \"lat\": 40.325579656267,\n                \"long\": -3.5828017749487\n            },\n            {\n                \"lat\": 40.325719960619,\n                \"long\": -3.5827420071143\n            },\n            {\n                \"lat\": 40.325767721677,\n                \"long\": -3.5827217006155\n            },\n            {\n                \"lat\": 40.325890420234,\n                \"long\": -3.5826694323329\n            },\n            {\n                \"lat\": 40.325910784927,\n                \"long\": -3.5826686657519\n            },\n            {\n                \"lat\": 40.325955478789,\n                \"long\": -3.5826670489669\n            },\n            {\n                \"lat\": 40.326001074127,\n                \"long\": -3.5826653222197\n            },\n            {\n                \"lat\": 40.32605373788,\n                \"long\": -3.5826375241677\n            },\n            {\n                \"lat\": 40.326155541845,\n                \"long\": -3.5825838987495\n            },\n            {\n                \"lat\": 40.326290838485,\n                \"long\": -3.5824987787322\n            },\n            {\n                \"lat\": 40.326345973667,\n                \"long\": -3.5823737710756\n            },\n            {\n                \"lat\": 40.326352535282,\n                \"long\": -3.5823588779695\n            },\n            {\n                \"lat\": 40.326421431232,\n                \"long\": -3.5822026767411\n            },\n            {\n                \"lat\": 40.326423345598,\n                \"long\": -3.5821982201059\n            },\n            {\n                \"lat\": 40.326432003509,\n                \"long\": -3.5821785187543\n            },\n            {\n                \"lat\": 40.326435192735,\n                \"long\": -3.5821713656777\n            },\n            {\n                \"lat\": 40.326438638007,\n                \"long\": -3.5821670399064\n            },\n            {\n                \"lat\": 40.326458948696,\n                \"long\": -3.5821411998815\n            },\n            {\n                \"lat\": 40.326484338085,\n                \"long\": -3.5821086938401\n            },\n            {\n                \"lat\": 40.326570750725,\n                \"long\": -3.581998432848\n            },\n            {\n                \"lat\": 40.326573561228,\n                \"long\": -3.5819949255982\n            },\n            {\n                \"lat\": 40.326593963151,\n                \"long\": -3.5819688508281\n            },\n            {\n                \"lat\": 40.326647414008,\n                \"long\": -3.5818561875966\n            },\n            {\n                \"lat\": 40.326685749084,\n                \"long\": -3.5817754123985\n            },\n            {\n                \"lat\": 40.326743091547,\n                \"long\": -3.5816950357094\n            },\n            {\n                \"lat\": 40.326782740677,\n                \"long\": -3.5816395799572\n            },\n            {\n                \"lat\": 40.326827709587,\n                \"long\": -3.5815653356513\n            },\n            {\n                \"lat\": 40.326836976114,\n                \"long\": -3.5815499947226\n            },\n            {\n                \"lat\": 40.32691319626,\n                \"long\": -3.5814241067925\n            },\n            {\n                \"lat\": 40.326960346081,\n                \"long\": -3.5813461140754\n            },\n            {\n                \"lat\": 40.327004378842,\n                \"long\": -3.5812609139719\n            },\n            {\n                \"lat\": 40.327088352359,\n                \"long\": -3.5810980120292\n            },\n            {\n                \"lat\": 40.327091628059,\n                \"long\": -3.5810915658576\n            },\n            {\n                \"lat\": 40.327170688098,\n                \"long\": -3.5809382739202\n            },\n            {\n                \"lat\": 40.327185972486,\n                \"long\": -3.5809086233074\n            },\n            {\n                \"lat\": 40.327254231407,\n                \"long\": -3.580771247495\n            },\n            {\n                \"lat\": 40.327331317354,\n                \"long\": -3.5806162899004\n            },\n            {\n                \"lat\": 40.327339599874,\n                \"long\": -3.5805995277247\n            },\n            {\n                \"lat\": 40.327382101769,\n                \"long\": -3.5805140781156\n            },\n            {\n                \"lat\": 40.327410861468,\n                \"long\": -3.5804561735762\n            },\n            {\n                \"lat\": 40.327445627796,\n                \"long\": -3.5803861958447\n            },\n            {\n                \"lat\": 40.327477936306,\n                \"long\": -3.5803212587175\n            },\n            {\n                \"lat\": 40.327479843514,\n                \"long\": -3.5803182144733\n            },\n            {\n                \"lat\": 40.327589807187,\n                \"long\": -3.5801463510054\n            },\n            {\n                \"lat\": 40.327609874908,\n                \"long\": -3.5801149752625\n            },\n            {\n                \"lat\": 40.327642927952,\n                \"long\": -3.5800632282867\n            },\n            {\n                \"lat\": 40.327752528536,\n                \"long\": -3.5798918317458\n            },\n            {\n                \"lat\": 40.327759231654,\n                \"long\": -3.5798845907805\n            },\n            {\n                \"lat\": 40.327874654335,\n                \"long\": -3.5797558563949\n            },\n            {\n                \"lat\": 40.327918558682,\n                \"long\": -3.5796780690789\n            },\n            {\n                \"lat\": 40.327941283664,\n                \"long\": -3.5796377694098\n            },\n            {\n                \"lat\": 40.328067788635,\n                \"long\": -3.57943685167\n            },\n            {\n                \"lat\": 40.328096667838,\n                \"long\": -3.5793909541068\n            },\n            {\n                \"lat\": 40.328142059335,\n                \"long\": -3.5793039971889\n            },\n            {\n                \"lat\": 40.328162707442,\n                \"long\": -3.5792646212321\n            },\n            {\n                \"lat\": 40.328206096863,\n                \"long\": -3.5791816493696\n            },\n            {\n                \"lat\": 40.32820827961,\n                \"long\": -3.5791775479735\n            },\n            {\n                \"lat\": 40.328355547293,\n                \"long\": -3.5788961704786\n            },\n            {\n                \"lat\": 40.328359276847,\n                \"long\": -3.5788890216613\n            },\n            {\n                \"lat\": 40.328362278625,\n                \"long\": -3.5788832792186\n            },\n            {\n                \"lat\": 40.328418857208,\n                \"long\": -3.5787751105522\n            },\n            {\n                \"lat\": 40.32852377954,\n                \"long\": -3.5786740644246\n            },\n            {\n                \"lat\": 40.328549308098,\n                \"long\": -3.5786495620053\n            },\n            {\n                \"lat\": 40.328644723362,\n                \"long\": -3.5785579693556\n            },\n            {\n                \"lat\": 40.32866954002,\n                \"long\": -3.5785316950209\n            },\n            {\n                \"lat\": 40.328684392799,\n                \"long\": -3.5785161655265\n            },\n            {\n                \"lat\": 40.328845698257,\n                \"long\": -3.5783459115124\n            },\n            {\n                \"lat\": 40.328984179422,\n                \"long\": -3.5781998293792\n            },\n            {\n                \"lat\": 40.32900851967,\n                \"long\": -3.5781787302759\n            },\n            {\n                \"lat\": 40.329063625249,\n                \"long\": -3.5781308186996\n            },\n            {\n                \"lat\": 40.329124068961,\n                \"long\": -3.5780783616117\n            },\n            {\n                \"lat\": 40.329161801666,\n                \"long\": -3.5780454872158\n            },\n            {\n                \"lat\": 40.329229846281,\n                \"long\": -3.5779863849146\n            },\n            {\n                \"lat\": 40.329276898047,\n                \"long\": -3.5779455851074\n            },\n            {\n                \"lat\": 40.329357429487,\n                \"long\": -3.5778756413517\n            },\n            {\n                \"lat\": 40.329364136008,\n                \"long\": -3.5778676937388\n            },\n            {\n                \"lat\": 40.329400477222,\n                \"long\": -3.57782480122\n            },\n            {\n                \"lat\": 40.329620428953,\n                \"long\": -3.5775648715766\n            },\n            {\n                \"lat\": 40.329712449209,\n                \"long\": -3.5774493501818\n            },\n            {\n                \"lat\": 40.329834296399,\n                \"long\": -3.5772964126639\n            },\n            {\n                \"lat\": 40.330011350373,\n                \"long\": -3.5770932079995\n            },\n            {\n                \"lat\": 40.330185866843,\n                \"long\": -3.5768929236528\n            },\n            {\n                \"lat\": 40.330364938738,\n                \"long\": -3.5767004465478\n            },\n            {\n                \"lat\": 40.330418288887,\n                \"long\": -3.5766431003045\n            },\n            {\n                \"lat\": 40.330496383907,\n                \"long\": -3.5765557105667\n            },\n            {\n                \"lat\": 40.330584626241,\n                \"long\": -3.5764568704115\n            },\n            {\n                \"lat\": 40.330664805469,\n                \"long\": -3.5763670258548\n            },\n            {\n                \"lat\": 40.330718983256,\n                \"long\": -3.5763062722514\n            },\n            {\n                \"lat\": 40.330820180128,\n                \"long\": -3.5761930620196\n            },\n            {\n                \"lat\": 40.33105964772,\n                \"long\": -3.5759754316276\n            },\n            {\n                \"lat\": 40.331063448426,\n                \"long\": -3.5759720500363\n            },\n            {\n                \"lat\": 40.331374181588,\n                \"long\": -3.5757175883482\n            },\n            {\n                \"lat\": 40.331407471762,\n                \"long\": -3.5756902067143\n            },\n            {\n                \"lat\": 40.331505801957,\n                \"long\": -3.5756098143887\n            },\n            {\n                \"lat\": 40.331542167408,\n                \"long\": -3.5755799866223\n            },\n            {\n                \"lat\": 40.331673292213,\n                \"long\": -3.5754631433377\n            },\n            {\n                \"lat\": 40.331679083632,\n                \"long\": -3.5754580127687\n            },\n            {\n                \"lat\": 40.331918166657,\n                \"long\": -3.5752449649549\n            },\n            {\n                \"lat\": 40.331948958833,\n                \"long\": -3.5752126173229\n            },\n            {\n                \"lat\": 40.332053744125,\n                \"long\": -3.5751022592232\n            },\n            {\n                \"lat\": 40.332235305134,\n                \"long\": -3.57484339756\n            },\n            {\n                \"lat\": 40.332629364711,\n                \"long\": -3.5742817860359\n            },\n            {\n                \"lat\": 40.332819180349,\n                \"long\": -3.5740112175435\n            },\n            {\n                \"lat\": 40.332947078484,\n                \"long\": -3.5738180564958\n            },\n            {\n                \"lat\": 40.33314151303,\n                \"long\": -3.5735242151097\n            },\n            {\n                \"lat\": 40.333262643462,\n                \"long\": -3.5733512435898\n            },\n            {\n                \"lat\": 40.333582209236,\n                \"long\": -3.5728948199971\n            },\n            {\n                \"lat\": 40.33361056954,\n                \"long\": -3.5728622144935\n            },\n            {\n                \"lat\": 40.333787527428,\n                \"long\": -3.5726586330137\n            },\n            {\n                \"lat\": 40.333812388791,\n                \"long\": -3.5726230545964\n            },\n            {\n                \"lat\": 40.333851495984,\n                \"long\": -3.5725669945732\n            },\n            {\n                \"lat\": 40.334308895392,\n                \"long\": -3.5719110037906\n            },\n            {\n                \"lat\": 40.334422192145,\n                \"long\": -3.5717366653112\n            },\n            {\n                \"lat\": 40.334480838365,\n                \"long\": -3.5716462752266\n            },\n            {\n                \"lat\": 40.334594198952,\n                \"long\": -3.5715501071072\n            },\n            {\n                \"lat\": 40.33474024737,\n                \"long\": -3.5715117830325\n            },\n            {\n                \"lat\": 40.33491830594,\n                \"long\": -3.5715408335361\n            },\n            {\n                \"lat\": 40.334985870935,\n                \"long\": -3.5715598868464\n            },\n            {\n                \"lat\": 40.335078356646,\n                \"long\": -3.5715859786881\n            },\n            {\n                \"lat\": 40.335135538206,\n                \"long\": -3.5716096535874\n            },\n            {\n                \"lat\": 40.335152502731,\n                \"long\": -3.5716041458004\n            },\n            {\n                \"lat\": 40.33525031901,\n                \"long\": -3.5715724782532\n            },\n            {\n                \"lat\": 40.335732479492,\n                \"long\": -3.5712649182147\n            },\n            {\n                \"lat\": 40.335838171167,\n                \"long\": -3.5712074159216\n            },\n            {\n                \"lat\": 40.335858676439,\n                \"long\": -3.5711964045658\n            },\n            {\n                \"lat\": 40.335863554578,\n                \"long\": -3.57119373793\n            },\n            {\n                \"lat\": 40.33590700564,\n                \"long\": -3.5711700875649\n            },\n            {\n                \"lat\": 40.335925705073,\n                \"long\": -3.571159885065\n            },\n            {\n                \"lat\": 40.335927331313,\n                \"long\": -3.5711589569432\n            },\n            {\n                \"lat\": 40.336160484505,\n                \"long\": -3.5710322443541\n            },\n            {\n                \"lat\": 40.336499853774,\n                \"long\": -3.5707964660551\n            },\n            {\n                \"lat\": 40.337021924479,\n                \"long\": -3.5704337796683\n            },\n            {\n                \"lat\": 40.337175788835,\n                \"long\": -3.570326762522\n            },\n            {\n                \"lat\": 40.337477579394,\n                \"long\": -3.5700927800956\n            },\n            {\n                \"lat\": 40.337557437344,\n                \"long\": -3.570048831766\n            },\n            {\n                \"lat\": 40.337639553286,\n                \"long\": -3.5700037250132\n            },\n            {\n                \"lat\": 40.3378587971,\n                \"long\": -3.5699753127717\n            },\n            {\n                \"lat\": 40.338132382291,\n                \"long\": -3.5699619565315\n            },\n            {\n                \"lat\": 40.338208798619,\n                \"long\": -3.5699582434452\n            },\n            {\n                \"lat\": 40.338636324113,\n                \"long\": -3.5699869184352\n            },\n            {\n                \"lat\": 40.338681289185,\n                \"long\": -3.5699850598923\n            },\n            {\n                \"lat\": 40.338754369339,\n                \"long\": -3.5699819074049\n            },\n            {\n                \"lat\": 40.338836279884,\n                \"long\": -3.5699784760202\n            },\n            {\n                \"lat\": 40.33903259987,\n                \"long\": -3.569939980621\n            },\n            {\n                \"lat\": 40.339210635616,\n                \"long\": -3.5698640091606\n            },\n            {\n                \"lat\": 40.339344703791,\n                \"long\": -3.5698068582584\n            },\n            {\n                \"lat\": 40.339685355266,\n                \"long\": -3.5695479974757\n            },\n            {\n                \"lat\": 40.339760522945,\n                \"long\": -3.5694868182128\n            },\n            {\n                \"lat\": 40.340040476791,\n                \"long\": -3.5692594684176\n            },\n            {\n                \"lat\": 40.340261726586,\n                \"long\": -3.5690796601537\n            },\n            {\n                \"lat\": 40.340331697277,\n                \"long\": -3.5690126670831\n            },\n            {\n                \"lat\": 40.340500062906,\n                \"long\": -3.568851133295\n            },\n            {\n                \"lat\": 40.340782606432,\n                \"long\": -3.5684815729834\n            },\n            {\n                \"lat\": 40.340875820619,\n                \"long\": -3.5683595547936\n            },\n            {\n                \"lat\": 40.341046379654,\n                \"long\": -3.5681364594245\n            },\n            {\n                \"lat\": 40.341174501366,\n                \"long\": -3.5680425193279\n            },\n            {\n                \"lat\": 40.341324232717,\n                \"long\": -3.5679327476414\n            },\n            {\n                \"lat\": 40.341687196608,\n                \"long\": -3.5676241355298\n            },\n            {\n                \"lat\": 40.341770880672,\n                \"long\": -3.5675530158651\n            },\n            {\n                \"lat\": 40.341863068801,\n                \"long\": -3.5674746674292\n            },\n            {\n                \"lat\": 40.34214318158,\n                \"long\": -3.5673059382482\n            },\n            {\n                \"lat\": 40.342277059004,\n                \"long\": -3.5671955596416\n            },\n            {\n                \"lat\": 40.342529256025,\n                \"long\": -3.5669873868777\n            },\n            {\n                \"lat\": 40.342792431047,\n                \"long\": -3.5667266741211\n            },\n            {\n                \"lat\": 40.342846116427,\n                \"long\": -3.5666734333487\n            },\n            {\n                \"lat\": 40.343221519935,\n                \"long\": -3.5663443068267\n            },\n            {\n                \"lat\": 40.343305524777,\n                \"long\": -3.5662627076216\n            },\n            {\n                \"lat\": 40.343434972286,\n                \"long\": -3.5661368637978\n            },\n            {\n                \"lat\": 40.343542061268,\n                \"long\": -3.5660326149866\n            },\n            {\n                \"lat\": 40.343715320918,\n                \"long\": -3.5658642780218\n            },\n            {\n                \"lat\": 40.343739219418,\n                \"long\": -3.5658409291448\n            },\n            {\n                \"lat\": 40.343847265953,\n                \"long\": -3.5657618844187\n            },\n            {\n                \"lat\": 40.344133431152,\n                \"long\": -3.5655524545729\n            },\n            {\n                \"lat\": 40.344377976657,\n                \"long\": -3.565360808077\n            },\n            {\n                \"lat\": 40.344410427369,\n                \"long\": -3.5653203395635\n            },\n            {\n                \"lat\": 40.346921326241,\n                \"long\": -3.5621889418947\n            },\n            {\n                \"lat\": 40.346993657887,\n                \"long\": -3.5620987583168\n            },\n            {\n                \"lat\": 40.347009248627,\n                \"long\": -3.5620792237303\n            },\n            {\n                \"lat\": 40.347025198828,\n                \"long\": -3.5620784141476\n            },\n            {\n                \"lat\": 40.347037364749,\n                \"long\": -3.5620776908991\n            },\n            {\n                \"lat\": 40.347061245578,\n                \"long\": -3.5620763584061\n            },\n            {\n                \"lat\": 40.347225797676,\n                \"long\": -3.5620672447329\n            },\n            {\n                \"lat\": 40.347244779723,\n                \"long\": -3.5620543321669\n            },\n            {\n                \"lat\": 40.349154898963,\n                \"long\": -3.5607568971024\n            },\n            {\n                \"lat\": 40.34917614049,\n                \"long\": -3.5607424717396\n            },\n            {\n                \"lat\": 40.349272018061,\n                \"long\": -3.5605711116238\n            },\n            {\n                \"lat\": 40.34928642613,\n                \"long\": -3.5605167114878\n            },\n            {\n                \"lat\": 40.349309367001,\n                \"long\": -3.5604304710122\n            },\n            {\n                \"lat\": 40.349318658128,\n                \"long\": -3.5604094702039\n            },\n            {\n                \"lat\": 40.349328313027,\n                \"long\": -3.560387765885\n            },\n            {\n                \"lat\": 40.349338424068,\n                \"long\": -3.5603648878089\n            },\n            {\n                \"lat\": 40.349582531961,\n                \"long\": -3.5598152350981\n            },\n            {\n                \"lat\": 40.349776814046,\n                \"long\": -3.5593778568478\n            },\n            {\n                \"lat\": 40.349918097371,\n                \"long\": -3.5591875567187\n            },\n            {\n                \"lat\": 40.350157693284,\n                \"long\": -3.5589179947608\n            },\n            {\n                \"lat\": 40.350201949575,\n                \"long\": -3.5588763218871\n            },\n            {\n                \"lat\": 40.350331459822,\n                \"long\": -3.5587544554153\n            },\n            {\n                \"lat\": 40.350472281006,\n                \"long\": -3.5587155810593\n            },\n            {\n                \"lat\": 40.350478135606,\n                \"long\": -3.558715864884\n            },\n            {\n                \"lat\": 40.350548930762,\n                \"long\": -3.5587193929949\n            },\n            {\n                \"lat\": 40.350602432952,\n                \"long\": -3.5587219541165\n            },\n            {\n                \"lat\": 40.350736259656,\n                \"long\": -3.558676309785\n            },\n            {\n                \"lat\": 40.350883803641,\n                \"long\": -3.5586258327392\n            },\n            {\n                \"lat\": 40.351104081569,\n                \"long\": -3.5585505203455\n            },\n            {\n                \"lat\": 40.351274775396,\n                \"long\": -3.5584634938615\n            },\n            {\n                \"lat\": 40.351463442195,\n                \"long\": -3.5583671946741\n            },\n            {\n                \"lat\": 40.351904319586,\n                \"long\": -3.5581685242254\n            },\n            {\n                \"lat\": 40.352016414898,\n                \"long\": -3.5581268202977\n            },\n            {\n                \"lat\": 40.352208391294,\n                \"long\": -3.5579980453127\n            },\n            {\n                \"lat\": 40.352339821206,\n                \"long\": -3.5578889072589\n            },\n            {\n                \"lat\": 40.352438958896,\n                \"long\": -3.5578065870675\n            },\n            {\n                \"lat\": 40.352550307273,\n                \"long\": -3.5577142400264\n            },\n            {\n                \"lat\": 40.352570297403,\n                \"long\": -3.5576976830384\n            },\n            {\n                \"lat\": 40.352666691611,\n                \"long\": -3.5576050947083\n            },\n            {\n                \"lat\": 40.352755218479,\n                \"long\": -3.5573877349769\n            },\n            {\n                \"lat\": 40.352928989261,\n                \"long\": -3.5569609944038\n            },\n            {\n                \"lat\": 40.352988163079,\n                \"long\": -3.5567773061752\n            },\n            {\n                \"lat\": 40.353097850585,\n                \"long\": -3.5566367795331\n            },\n            {\n                \"lat\": 40.353401691179,\n                \"long\": -3.5561579939433\n            },\n            {\n                \"lat\": 40.353997384928,\n                \"long\": -3.5552190355408\n            },\n            {\n                \"lat\": 40.354307937619,\n                \"long\": -3.5547295759789\n            },\n            {\n                \"lat\": 40.355000746706,\n                \"long\": -3.5541463232016\n            },\n            {\n                \"lat\": 40.355439913737,\n                \"long\": -3.5537764910873\n            },\n            {\n                \"lat\": 40.355620193659,\n                \"long\": -3.5536246377795\n            },\n            {\n                \"lat\": 40.3556641558,\n                \"long\": -3.5535875484942\n            },\n            {\n                \"lat\": 40.355701061737,\n                \"long\": -3.5535565251708\n            },\n            {\n                \"lat\": 40.355727745986,\n                \"long\": -3.5535341327462\n            },\n            {\n                \"lat\": 40.35575524497,\n                \"long\": -3.5535109226196\n            },\n            {\n                \"lat\": 40.355809428185,\n                \"long\": -3.5534653199957\n            },\n            {\n                \"lat\": 40.355851400444,\n                \"long\": -3.553429862931\n            },\n            {\n                \"lat\": 40.355884054723,\n                \"long\": -3.5534024553625\n            },\n            {\n                \"lat\": 40.355906669194,\n                \"long\": -3.5533833269401\n            },\n            {\n                \"lat\": 40.356013045114,\n                \"long\": -3.5532938714073\n            },\n            {\n                \"lat\": 40.356116408506,\n                \"long\": -3.5532691614232\n            },\n            {\n                \"lat\": 40.357680871255,\n                \"long\": -3.5529072142821\n            },\n            {\n                \"lat\": 40.359375494425,\n                \"long\": -3.5528700635185\n            },\n            {\n                \"lat\": 40.360032152444,\n                \"long\": -3.5528555243613\n            },\n            {\n                \"lat\": 40.361289283044,\n                \"long\": -3.5528009007111\n            },\n            {\n                \"lat\": 40.361498979698,\n                \"long\": -3.5529028391102\n            },\n            {\n                \"lat\": 40.361251100624,\n                \"long\": -3.5532119712709\n            },\n            {\n                \"lat\": 40.360523069682,\n                \"long\": -3.5541340644765\n            },\n            {\n                \"lat\": 40.360450628754,\n                \"long\": -3.5542295732911\n            },\n            {\n                \"lat\": 40.360309401564,\n                \"long\": -3.5544099030189\n            },\n            {\n                \"lat\": 40.360102942385,\n                \"long\": -3.5546664844012\n            },\n            {\n                \"lat\": 40.359989423869,\n                \"long\": -3.5548173611183\n            },\n            {\n                \"lat\": 40.359445966043,\n                \"long\": -3.5555356620165\n            },\n            {\n                \"lat\": 40.359460609686,\n                \"long\": -3.5555442616735\n            },\n            {\n                \"lat\": 40.359473182433,\n                \"long\": -3.5555526087947\n            },\n            {\n                \"lat\": 40.359486474187,\n                \"long\": -3.555561315132\n            },\n            {\n                \"lat\": 40.359499857725,\n                \"long\": -3.5555696689152\n            },\n            {\n                \"lat\": 40.359513146084,\n                \"long\": -3.5555790818536\n            },\n            {\n                \"lat\": 40.359530749056,\n                \"long\": -3.555590532311\n            },\n            {\n                \"lat\": 40.359545130351,\n                \"long\": -3.5555974810513\n            },\n            {\n                \"lat\": 40.359549713533,\n                \"long\": -3.5555998740837\n            },\n            {\n                \"lat\": 40.359553936928,\n                \"long\": -3.5556021463924\n            },\n            {\n                \"lat\": 40.359558789808,\n                \"long\": -3.5556046594098\n            },\n            {\n                \"lat\": 40.359563013203,\n                \"long\": -3.5556069317191\n            },\n            {\n                \"lat\": 40.359567414512,\n                \"long\": -3.555609676571\n            },\n            {\n                \"lat\": 40.359572175607,\n                \"long\": -3.5556125421474\n            },\n            {\n                \"lat\": 40.359576848311,\n                \"long\": -3.5556150536871\n            },\n            {\n                \"lat\": 40.359581161794,\n                \"long\": -3.5556173267373\n            },\n            {\n                \"lat\": 40.359585653755,\n                \"long\": -3.5556199545643\n            },\n            {\n                \"lat\": 40.359590145151,\n                \"long\": -3.5556227001576\n            },\n            {\n                \"lat\": 40.359594277326,\n                \"long\": -3.5556252072612\n            },\n            {\n                \"lat\": 40.359599219163,\n                \"long\": -3.5556279565532\n            },\n            {\n                \"lat\": 40.359604070911,\n                \"long\": -3.5556307051059\n            },\n            {\n                \"lat\": 40.359608473916,\n                \"long\": -3.5556330966634\n            },\n            {\n                \"lat\": 40.35961323784,\n                \"long\": -3.5556353734138\n            },\n            {\n                \"lat\": 40.359617552454,\n                \"long\": -3.5556374109347\n            },\n            {\n                \"lat\": 40.359622137332,\n                \"long\": -3.5556394506746\n            },\n            {\n                \"lat\": 40.359627083129,\n                \"long\": -3.5556413756074\n            },\n            {\n                \"lat\": 40.359632030623,\n                \"long\": -3.5556429472427\n            },\n            {\n                \"lat\": 40.359637158293,\n                \"long\": -3.5556445203574\n            },\n            {\n                \"lat\": 40.359641746001,\n                \"long\": -3.5556459712688\n            },\n            {\n                \"lat\": 40.359646692929,\n                \"long\": -3.5556476606707\n            },\n            {\n                \"lat\": 40.359651639857,\n                \"long\": -3.5556493500729\n            },\n            {\n                \"lat\": 40.359656497263,\n                \"long\": -3.5556509209697\n            },\n            {\n                \"lat\": 40.359661623236,\n                \"long\": -3.5556528473836\n            },\n            {\n                \"lat\": 40.35966657073,\n                \"long\": -3.5556544190205\n            },\n            {\n                \"lat\": 40.359671428136,\n                \"long\": -3.5556559899181\n            },\n            {\n                \"lat\": 40.359676375064,\n                \"long\": -3.5556576793215\n            },\n            {\n                \"lat\": 40.359680781463,\n                \"long\": -3.5556593642874\n            },\n            {\n                \"lat\": 40.359685456429,\n                \"long\": -3.5556614047704\n            },\n            {\n                \"lat\": 40.359689771608,\n                \"long\": -3.5556633245292\n            },\n            {\n                \"lat\": 40.359694714575,\n                \"long\": -3.5556658382958\n            },\n            {\n                \"lat\": 40.35969929719,\n                \"long\": -3.5556683491042\n            },\n            {\n                \"lat\": 40.359711157143,\n                \"long\": -3.5556750416363\n            },\n            {\n                \"lat\": 40.359722843708,\n                \"long\": -3.5556803194986\n            },\n            {\n                \"lat\": 40.359727427454,\n                \"long\": -3.5556825947768\n            },\n            {\n                \"lat\": 40.35973174037,\n                \"long\": -3.5556849856025\n            },\n            {\n                \"lat\": 40.359736502594,\n                \"long\": -3.555687615659\n            },\n            {\n                \"lat\": 40.359741265385,\n                \"long\": -3.5556901279498\n            },\n            {\n                \"lat\": 40.359745757911,\n                \"long\": -3.555692638022\n            },\n            {\n                \"lat\": 40.3597507904,\n                \"long\": -3.5556952702986\n            },\n            {\n                \"lat\": 40.359755821757,\n                \"long\": -3.555698138108\n            },\n            {\n                \"lat\": 40.3597609449,\n                \"long\": -3.555700653359\n            },\n            {\n                \"lat\": 40.359765708255,\n                \"long\": -3.5557030478855\n            },\n            {\n                \"lat\": 40.359770561134,\n                \"long\": -3.5557055609182\n            },\n            {\n                \"lat\": 40.359774693306,\n                \"long\": -3.5557080680336\n            },\n            {\n                \"lat\": 40.359779635141,\n                \"long\": -3.5557108173391\n            },\n            {\n                \"lat\": 40.359784218886,\n                \"long\": -3.5557130926213\n            },\n            {\n                \"lat\": 40.359789070632,\n                \"long\": -3.5557158411878\n            },\n            {\n                \"lat\": 40.359793921813,\n                \"long\": -3.5557187075209\n            },\n            {\n                \"lat\": 40.359799045521,\n                \"long\": -3.5557211050087\n            },\n            {\n                \"lat\": 40.359803450221,\n                \"long\": -3.5557231432805\n            },\n            {\n                \"lat\": 40.359808302533,\n                \"long\": -3.5557257740823\n            },\n            {\n                \"lat\": 40.359812525925,\n                \"long\": -3.5557280464077\n            },\n            {\n                \"lat\": 40.359817378803,\n                \"long\": -3.5557305594439\n            },\n            {\n                \"lat\": 40.359821784069,\n                \"long\": -3.5557324799506\n            },\n            {\n                \"lat\": 40.359826547424,\n                \"long\": -3.5557348744815\n            },\n            {\n                \"lat\": 40.359831310213,\n                \"long\": -3.5557373867791\n            },\n            {\n                \"lat\": 40.359835984046,\n                \"long\": -3.5557396628047\n            },\n            {\n                \"lat\": 40.359840299224,\n                \"long\": -3.5557415825728\n            },\n            {\n                \"lat\": 40.359845064842,\n                \"long\": -3.5557435060399\n            },\n            {\n                \"lat\": 40.359850011203,\n                \"long\": -3.5557453132204\n            },\n            {\n                \"lat\": 40.359854868042,\n                \"long\": -3.5557470018952\n            },\n            {\n                \"lat\": 40.359859905622,\n                \"long\": -3.5557485742835\n            },\n            {\n                \"lat\": 40.359864312586,\n                \"long\": -3.5557501414936\n            },\n            {\n                \"lat\": 40.359869078204,\n                \"long\": -3.555752064962\n            },\n            {\n                \"lat\": 40.359873665344,\n                \"long\": -3.5557536336522\n            },\n            {\n                \"lat\": 40.35987852388,\n                \"long\": -3.5557549690291\n            },\n            {\n                \"lat\": 40.359883022063,\n                \"long\": -3.5557563014472\n            },\n            {\n                \"lat\": 40.359887700988,\n                \"long\": -3.5557575175786\n            },\n            {\n                \"lat\": 40.359892289826,\n                \"long\": -3.5557587329705\n            },\n            {\n                \"lat\": 40.359897148927,\n                \"long\": -3.5557599505818\n            },\n            {\n                \"lat\": 40.359913979003,\n                \"long\": -3.5557635041449\n            },\n            {\n                \"lat\": 40.360053455496,\n                \"long\": -3.555797978764\n            },\n            {\n                \"lat\": 40.360172299323,\n                \"long\": -3.5557953038252\n            },\n            {\n                \"lat\": 40.360243147099,\n                \"long\": -3.5557878771747\n            },\n            {\n                \"lat\": 40.360358611715,\n                \"long\": -3.5557759882615\n            },\n            {\n                \"lat\": 40.360444015745,\n                \"long\": -3.5557578460858\n            },\n            {\n                \"lat\": 40.360561419285,\n                \"long\": -3.5557549236972\n            },\n            {\n                \"lat\": 40.360661992291,\n                \"long\": -3.5557672912712\n            },\n            {\n                \"lat\": 40.360773256921,\n                \"long\": -3.5557857530852\n            },\n            {\n                \"lat\": 40.360880899909,\n                \"long\": -3.5558079539465\n            },\n            {\n                \"lat\": 40.360990737267,\n                \"long\": -3.555823459846\n            },\n            {\n                \"lat\": 40.361031509842,\n                \"long\": -3.555831567725\n            },\n            {\n                \"lat\": 40.361066859014,\n                \"long\": -3.5558433998088\n            },\n            {\n                \"lat\": 40.361138680389,\n                \"long\": -3.5558770839586\n            },\n            {\n                \"lat\": 40.361212796977,\n                \"long\": -3.5559018362625\n            },\n            {\n                \"lat\": 40.36152638064,\n                \"long\": -3.5560195949293\n            },\n            {\n                \"lat\": 40.36161258542,\n                \"long\": -3.5560410314104\n            },\n            {\n                \"lat\": 40.361669996533,\n                \"long\": -3.55605504714\n            },\n            {\n                \"lat\": 40.361802670358,\n                \"long\": -3.5560802809996\n            },\n            {\n                \"lat\": 40.361981570035,\n                \"long\": -3.5560662047582\n            },\n            {\n                \"lat\": 40.362159917794,\n                \"long\": -3.5560357531934\n            },\n            {\n                \"lat\": 40.362208558587,\n                \"long\": -3.5560375661454\n            },\n            {\n                \"lat\": 40.362261440315,\n                \"long\": -3.5560380006442\n            },\n            {\n                \"lat\": 40.362286795278,\n                \"long\": -3.5560298469339\n            },\n            {\n                \"lat\": 40.362333386628,\n                \"long\": -3.5560082057699\n            },\n            {\n                \"lat\": 40.36246161069,\n                \"long\": -3.5559470738081\n            },\n            {\n                \"lat\": 40.362598837304,\n                \"long\": -3.5558873110997\n            },\n            {\n                \"lat\": 40.362655942898,\n                \"long\": -3.5558711737922\n            },\n            {\n                \"lat\": 40.36272163969,\n                \"long\": -3.5558482760204\n            },\n            {\n                \"lat\": 40.362781007008,\n                \"long\": -3.5558114286452\n            },\n            {\n                \"lat\": 40.362801196271,\n                \"long\": -3.555790865875\n            },\n            {\n                \"lat\": 40.362945391617,\n                \"long\": -3.5556869936624\n            },\n            {\n                \"lat\": 40.363013186993,\n                \"long\": -3.5556585773557\n            },\n            {\n                \"lat\": 40.363067797244,\n                \"long\": -3.5556367659974\n            },\n            {\n                \"lat\": 40.363147160789,\n                \"long\": -3.555619515577\n            },\n            {\n                \"lat\": 40.363216942174,\n                \"long\": -3.5556090174994\n            },\n            {\n                \"lat\": 40.363275165687,\n                \"long\": -3.5556039600226\n            },\n            {\n                \"lat\": 40.363322798973,\n                \"long\": -3.5555904534232\n            },\n            {\n                \"lat\": 40.363370431691,\n                \"long\": -3.5555770645776\n            },\n            {\n                \"lat\": 40.363412683015,\n                \"long\": -3.5555774114591\n            },\n            {\n                \"lat\": 40.363466542127,\n                \"long\": -3.5555806802948\n            },\n            {\n                \"lat\": 40.363563824273,\n                \"long\": -3.5555841878664\n            },\n            {\n                \"lat\": 40.363632478201,\n                \"long\": -3.5555833381934\n            },\n            {\n                \"lat\": 40.363686975282,\n                \"long\": -3.5555850811752\n            },\n            {\n                \"lat\": 40.363749243267,\n                \"long\": -3.555600785733\n            },\n            {\n                \"lat\": 40.363823254511,\n                \"long\": -3.5556287178595\n            },\n            {\n                \"lat\": 40.36385206648,\n                \"long\": -3.55557607215\n            },\n            {\n                \"lat\": 40.363870787564,\n                \"long\": -3.555542305805\n            },\n            {\n                \"lat\": 40.363898232899,\n                \"long\": -3.5554928288091\n            },\n            {\n                \"lat\": 40.36392151904,\n                \"long\": -3.5554652243471\n            },\n            {\n                \"lat\": 40.364073393015,\n                \"long\": -3.5555632847591\n            },\n            {\n                \"lat\": 40.364334006714,\n                \"long\": -3.555248835128\n            },\n            {\n                \"lat\": 40.36463040505,\n                \"long\": -3.5548552933225\n            },\n            {\n                \"lat\": 40.364633215298,\n                \"long\": -3.5548516652082\n            },\n            {\n                \"lat\": 40.364748865739,\n                \"long\": -3.5546883111363\n            },\n            {\n                \"lat\": 40.364878238143,\n                \"long\": -3.5545190621922\n            },\n            {\n                \"lat\": 40.364958803912,\n                \"long\": -3.5544389254417\n            },\n            {\n                \"lat\": 40.365096989654,\n                \"long\": -3.5541976662823\n            },\n            {\n                \"lat\": 40.365238313138,\n                \"long\": -3.5539783389668\n            },\n            {\n                \"lat\": 40.365353540112,\n                \"long\": -3.553809089457\n            },\n            {\n                \"lat\": 40.365501310636,\n                \"long\": -3.5536355121908\n            },\n            {\n                \"lat\": 40.365652597809,\n                \"long\": -3.5534424112793\n            },\n            {\n                \"lat\": 40.365773662889,\n                \"long\": -3.5532578959982\n            },\n            {\n                \"lat\": 40.365859711532,\n                \"long\": -3.5530860498005\n            },\n            {\n                \"lat\": 40.365915325867,\n                \"long\": -3.5529860367595\n            },\n            {\n                \"lat\": 40.365975884263,\n                \"long\": -3.5528883018025\n            },\n            {\n                \"lat\": 40.366090038796,\n                \"long\": -3.5527734550375\n            },\n            {\n                \"lat\": 40.366133019789,\n                \"long\": -3.5527342314488\n            },\n            {\n                \"lat\": 40.366179801918,\n                \"long\": -3.5526913876178\n            },\n            {\n                \"lat\": 40.366372527105,\n                \"long\": -3.5525553920962\n            },\n            {\n                \"lat\": 40.366534953976,\n                \"long\": -3.552462845784\n            },\n            {\n                \"lat\": 40.366727554016,\n                \"long\": -3.5523529956957\n            },\n            {\n                \"lat\": 40.36689053382,\n                \"long\": -3.5522955523298\n            },\n            {\n                \"lat\": 40.367171161545,\n                \"long\": -3.5522782908687\n            },\n            {\n                \"lat\": 40.367418603449,\n                \"long\": -3.5522300167541\n            },\n            {\n                \"lat\": 40.36756658694,\n                \"long\": -3.5521811661859\n            },\n            {\n                \"lat\": 40.367943560071,\n                \"long\": -3.5519484370326\n            },\n            {\n                \"lat\": 40.368158538371,\n                \"long\": -3.551812146252\n            },\n            {\n                \"lat\": 40.368313514269,\n                \"long\": -3.5517705362035\n            },\n            {\n                \"lat\": 40.368389973032,\n                \"long\": -3.551757732152\n            },\n            {\n                \"lat\": 40.370169173782,\n                \"long\": -3.5514592769544\n            },\n            {\n                \"lat\": 40.370345115777,\n                \"long\": -3.5514607110746\n            },\n            {\n                \"lat\": 40.3705110105,\n                \"long\": -3.5511885560602\n            },\n            {\n                \"lat\": 40.370958165019,\n                \"long\": -3.551125529834\n            },\n            {\n                \"lat\": 40.370958256229,\n                \"long\": -3.5511252949965\n            },\n            {\n                \"lat\": 40.371066408207,\n                \"long\": -3.5511353637004\n            },\n            {\n                \"lat\": 40.371112593904,\n                \"long\": -3.5511608293437\n            },\n            {\n                \"lat\": 40.371127780053,\n                \"long\": -3.5511690806147\n            },\n            {\n                \"lat\": 40.371314313122,\n                \"long\": -3.5511788456796\n            },\n            {\n                \"lat\": 40.371316474674,\n                \"long\": -3.5511789810812\n            },\n            {\n                \"lat\": 40.371367490897,\n                \"long\": -3.5511738605464\n            },\n            {\n                \"lat\": 40.371389123257,\n                \"long\": -3.5511716809685\n            },\n            {\n                \"lat\": 40.371493769939,\n                \"long\": -3.5511611077954\n            },\n            {\n                \"lat\": 40.371571556345,\n                \"long\": -3.5511532605474\n            },\n            {\n                \"lat\": 40.371637174688,\n                \"long\": -3.5511466098572\n            },\n            {\n                \"lat\": 40.371659798015,\n                \"long\": -3.5511444383361\n            },\n            {\n                \"lat\": 40.371663223045,\n                \"long\": -3.5511441128647\n            },\n            {\n                \"lat\": 40.371670794371,\n                \"long\": -3.5511433500063\n            },\n            {\n                \"lat\": 40.371676923726,\n                \"long\": -3.5511426931919\n            },\n            {\n                \"lat\": 40.371699097174,\n                \"long\": -3.5511404002118\n            },\n            {\n                \"lat\": 40.371715411531,\n                \"long\": -3.5511387662473\n            },\n            {\n                \"lat\": 40.371776883576,\n                \"long\": -3.5511325529187\n            },\n            {\n                \"lat\": 40.371787789282,\n                \"long\": -3.5511315816386\n            },\n            {\n                \"lat\": 40.371830819934,\n                \"long\": -3.5511385285376\n            },\n            {\n                \"lat\": 40.371911209619,\n                \"long\": -3.5511515516125\n            },\n            {\n                \"lat\": 40.372012664746,\n                \"long\": -3.5511679267321\n            },\n            {\n                \"lat\": 40.372060029164,\n                \"long\": -3.5511729065203\n            },\n            {\n                \"lat\": 40.372084341147,\n                \"long\": -3.5511755782366\n            },\n            {\n                \"lat\": 40.372241562448,\n                \"long\": -3.5511920544257\n            },\n            {\n                \"lat\": 40.372293088877,\n                \"long\": -3.551193298797\n            },\n            {\n                \"lat\": 40.372420283644,\n                \"long\": -3.5511963376288\n            },\n            {\n                \"lat\": 40.372566951458,\n                \"long\": -3.5511965903121\n            },\n            {\n                \"lat\": 40.37259623063,\n                \"long\": -3.5511967110821\n            },\n            {\n                \"lat\": 40.372872088607,\n                \"long\": -3.5511971918513\n            },\n            {\n                \"lat\": 40.373066780887,\n                \"long\": -3.5512151515665\n            },\n            {\n                \"lat\": 40.373088123328,\n                \"long\": -3.551217092381\n            },\n            {\n                \"lat\": 40.373094246507,\n                \"long\": -3.5512177312448\n            },\n            {\n                \"lat\": 40.373110546264,\n                \"long\": -3.5512191597952\n            },\n            {\n                \"lat\": 40.373202759347,\n                \"long\": -3.5512276855997\n            },\n            {\n                \"lat\": 40.373229333068,\n                \"long\": -3.5512283733132\n            },\n            {\n                \"lat\": 40.373345176722,\n                \"long\": -3.5512313197773\n            },\n            {\n                \"lat\": 40.373444174474,\n                \"long\": -3.5512340111873\n            },\n            {\n                \"lat\": 40.373445976234,\n                \"long\": -3.5512340258692\n            },\n            {\n                \"lat\": 40.373453543067,\n                \"long\": -3.5512342053236\n            },\n            {\n                \"lat\": 40.373470298316,\n                \"long\": -3.5512345774462\n            },\n            {\n                \"lat\": 40.373480296963,\n                \"long\": -3.5512348945115\n            },\n            {\n                \"lat\": 40.373482008635,\n                \"long\": -3.5512349084594\n            },\n            {\n                \"lat\": 40.373493538779,\n                \"long\": -3.5512352380045\n            },\n            {\n                \"lat\": 40.373494800011,\n                \"long\": -3.551235248282\n            },\n            {\n                \"lat\": 40.373499934467,\n                \"long\": -3.5512354079159\n            },\n            {\n                \"lat\": 40.373506330155,\n                \"long\": -3.5512355778272\n            },\n            {\n                \"lat\": 40.373507591387,\n                \"long\": -3.5512355881047\n            },\n            {\n                \"lat\": 40.373513086195,\n                \"long\": -3.5512357506751\n            },\n            {\n                \"lat\": 40.373514527603,\n                \"long\": -3.5512357624207\n            },\n            {\n                \"lat\": 40.373515068131,\n                \"long\": -3.5512357668253\n            },\n            {\n                \"lat\": 40.373519217233,\n                \"long\": -3.5512347404824\n            },\n            {\n                \"lat\": 40.37352255442,\n                \"long\": -3.5512339431129\n            },\n            {\n                \"lat\": 40.373526973786,\n                \"long\": -3.5512329189721\n            },\n            {\n                \"lat\": 40.373542937893,\n                \"long\": -3.5512291618305\n            },\n            {\n                \"lat\": 40.373556105903,\n                \"long\": -3.5512260886718\n            },\n            {\n                \"lat\": 40.37357838347,\n                \"long\": -3.5512208516394\n            },\n            {\n                \"lat\": 40.373684902057,\n                \"long\": -3.5511955691118\n            },\n            {\n                \"lat\": 40.373704662772,\n                \"long\": -3.5511891336015\n            },\n            {\n                \"lat\": 40.373763312052,\n                \"long\": -3.5511702930727\n            },\n            {\n                \"lat\": 40.373822322804,\n                \"long\": -3.5511512198664\n            },\n            {\n                \"lat\": 40.37389414626,\n                \"long\": -3.5511280103818\n            },\n            {\n                \"lat\": 40.373986542334,\n                \"long\": -3.5510981363094\n            },\n            {\n                \"lat\": 40.374034193563,\n                \"long\": -3.5510807373731\n            },\n            {\n                \"lat\": 40.374162616686,\n                \"long\": -3.5510339584616\n            },\n            {\n                \"lat\": 40.374179402802,\n                \"long\": -3.5510278520173\n            },\n            {\n                \"lat\": 40.374330749785,\n                \"long\": -3.5509725427111\n            },\n            {\n                \"lat\": 40.374413777784,\n                \"long\": -3.5509423563478\n            },\n            {\n                \"lat\": 40.374462422201,\n                \"long\": -3.5509244940986\n            },\n            {\n                \"lat\": 40.374554665535,\n                \"long\": -3.5508888462307\n            },\n            {\n                \"lat\": 40.37467542997,\n                \"long\": -3.550842239833\n            },\n            {\n                \"lat\": 40.374738339694,\n                \"long\": -3.550817896982\n            },\n            {\n                \"lat\": 40.374930317609,\n                \"long\": -3.5507437166399\n            },\n            {\n                \"lat\": 40.374934289335,\n                \"long\": -3.5507420998161\n            },\n            {\n                \"lat\": 40.374989977972,\n                \"long\": -3.5507206429239\n            },\n            {\n                \"lat\": 40.37509388466,\n                \"long\": -3.5506762546476\n            },\n            {\n                \"lat\": 40.375200408929,\n                \"long\": -3.5506308273654\n            },\n            {\n                \"lat\": 40.375219547406,\n                \"long\": -3.5506226195201\n            },\n            {\n                \"lat\": 40.375348060977,\n                \"long\": -3.5505757218823\n            },\n            {\n                \"lat\": 40.375412859124,\n                \"long\": -3.5505521007067\n            },\n            {\n                \"lat\": 40.375438160589,\n                \"long\": -3.5505361683005\n            },\n            {\n                \"lat\": 40.375553009528,\n                \"long\": -3.5504641859062\n            },\n            {\n                \"lat\": 40.375557617472,\n                \"long\": -3.5504613962459\n            },\n            {\n                \"lat\": 40.375571172163,\n                \"long\": -3.5504527894759\n            },\n            {\n                \"lat\": 40.375578762543,\n                \"long\": -3.5504480215125\n            },\n            {\n                \"lat\": 40.375590702937,\n                \"long\": -3.550437870222\n            },\n            {\n                \"lat\": 40.375611779782,\n                \"long\": -3.5504199007821\n            },\n            {\n                \"lat\": 40.375632857185,\n                \"long\": -3.5504018135372\n            },\n            {\n                \"lat\": 40.375653843375,\n                \"long\": -3.5503839611358\n            },\n            {\n                \"lat\": 40.375662437053,\n                \"long\": -3.5503766097557\n            },\n            {\n                \"lat\": 40.375674920212,\n                \"long\": -3.5503659916625\n            },\n            {\n                \"lat\": 40.375677453327,\n                \"long\": -3.5503637741014\n            },\n            {\n                \"lat\": 40.375698348863,\n                \"long\": -3.5503460387375\n            },\n            {\n                \"lat\": 40.375703776566,\n                \"long\": -3.5503413709561\n            },\n            {\n                \"lat\": 40.375743216373,\n                \"long\": -3.550307765839\n            },\n            {\n                \"lat\": 40.375812891847,\n                \"long\": -3.5502436611817\n            },\n            {\n                \"lat\": 40.375896321746,\n                \"long\": -3.5501668281891\n            },\n            {\n                \"lat\": 40.375913604766,\n                \"long\": -3.5501509481086\n            },\n            {\n                \"lat\": 40.375979089162,\n                \"long\": -3.5500777385201\n            },\n            {\n                \"lat\": 40.376056438345,\n                \"long\": -3.5499913139594\n            },\n            {\n                \"lat\": 40.37606442155,\n                \"long\": -3.5499797167516\n            },\n            {\n                \"lat\": 40.376149331506,\n                \"long\": -3.5498568356425\n            },\n            {\n                \"lat\": 40.376197321285,\n                \"long\": -3.5497871351014\n            },\n            {\n                \"lat\": 40.376234278912,\n                \"long\": -3.5497070962474\n            },\n            {\n                \"lat\": 40.376314839275,\n                \"long\": -3.5495325829118\n            },\n            {\n                \"lat\": 40.376344605337,\n                \"long\": -3.5494681527187\n            },\n            {\n                \"lat\": 40.376357987072,\n                \"long\": -3.549439047098\n            },\n            {\n                \"lat\": 40.376376830042,\n                \"long\": -3.5493982058516\n            },\n            {\n                \"lat\": 40.376391849572,\n                \"long\": -3.5493656973123\n            },\n            {\n                \"lat\": 40.376403296347,\n                \"long\": -3.5493456465194\n            },\n            {\n                \"lat\": 40.376409053026,\n                \"long\": -3.5493286123033\n            },\n            {\n                \"lat\": 40.37647250007,\n                \"long\": -3.5491910660959\n            },\n            {\n                \"lat\": 40.376502630211,\n                \"long\": -3.5491258139585\n            },\n            {\n                \"lat\": 40.37651325217,\n                \"long\": -3.5491087013957\n            },\n            {\n                \"lat\": 40.376555376832,\n                \"long\": -3.5490408371431\n            },\n            {\n                \"lat\": 40.376621536439,\n                \"long\": -3.5489580894569\n            },\n            {\n                \"lat\": 40.376628424505,\n                \"long\": -3.5489494281473\n            },\n            {\n                \"lat\": 40.376650809879,\n                \"long\": -3.5489214555721\n            },\n            {\n                \"lat\": 40.3766985714,\n                \"long\": -3.5488617650258\n            },\n            {\n                \"lat\": 40.376807100192,\n                \"long\": -3.5487734707221\n            },\n            {\n                \"lat\": 40.376830343363,\n                \"long\": -3.5487545756151\n            },\n            {\n                \"lat\": 40.376840006256,\n                \"long\": -3.5487497063873\n            },\n            {\n                \"lat\": 40.376960025535,\n                \"long\": -3.5486890703045\n            },\n            {\n                \"lat\": 40.37697382409,\n                \"long\": -3.5486860016183\n            },\n            {\n                \"lat\": 40.377070411736,\n                \"long\": -3.5486649919668\n            },\n            {\n                \"lat\": 40.377098258429,\n                \"long\": -3.5486632152353\n            },\n            {\n                \"lat\": 40.377179275487,\n                \"long\": -3.5486579823679\n            },\n            {\n                \"lat\": 40.377223614432,\n                \"long\": -3.5486550435973\n            },\n            {\n                \"lat\": 40.37737412577,\n                \"long\": -3.5486616833634\n            },\n            {\n                \"lat\": 40.377462348959,\n                \"long\": -3.5486946766581\n            },\n            {\n                \"lat\": 40.377541399929,\n                \"long\": -3.5487240615748\n            },\n            {\n                \"lat\": 40.37756530744,\n                \"long\": -3.5487360357112\n            },\n            {\n                \"lat\": 40.377669655884,\n                \"long\": -3.5487882439526\n            },\n            {\n                \"lat\": 40.377812203363,\n                \"long\": -3.5488593750779\n            },\n            {\n                \"lat\": 40.378005286238,\n                \"long\": -3.5489317412663\n            },\n            {\n                \"lat\": 40.378115452777,\n                \"long\": -3.5489729239209\n            },\n            {\n                \"lat\": 40.378244388357,\n                \"long\": -3.5490077799001\n            },\n            {\n                \"lat\": 40.378349660426,\n                \"long\": -3.5490362003536\n            },\n            {\n                \"lat\": 40.37844377556,\n                \"long\": -3.5490615852416\n            },\n            {\n                \"lat\": 40.378518005294,\n                \"long\": -3.549081743215\n            },\n            {\n                \"lat\": 40.378667366187,\n                \"long\": -3.5491219488123\n            },\n            {\n                \"lat\": 40.378695451259,\n                \"long\": -3.5491268889849\n            },\n            {\n                \"lat\": 40.378777007192,\n                \"long\": -3.5491409807885\n            },\n            {\n                \"lat\": 40.378828857026,\n                \"long\": -3.5491500014645\n            },\n            {\n                \"lat\": 40.378984046731,\n                \"long\": -3.549176942852\n            },\n            {\n                \"lat\": 40.379012682956,\n                \"long\": -3.5491796492653\n            },\n            {\n                \"lat\": 40.379037536605,\n                \"long\": -3.5491820893579\n            },\n            {\n                \"lat\": 40.379089946541,\n                \"long\": -3.5491869914942\n            },\n            {\n                \"lat\": 40.379112639198,\n                \"long\": -3.5491891784362\n            },\n            {\n                \"lat\": 40.37956127279,\n                \"long\": -3.5492316971614\n            },\n            {\n                \"lat\": 40.379715781474,\n                \"long\": -3.5492502693224\n            },\n            {\n                \"lat\": 40.380127262946,\n                \"long\": -3.5493000267324\n            },\n            {\n                \"lat\": 40.380282767608,\n                \"long\": -3.5492985801978\n            },\n            {\n                \"lat\": 40.380308197028,\n                \"long\": -3.5492936032469\n            },\n            {\n                \"lat\": 40.380447968188,\n                \"long\": -3.5492663470229\n            },\n            {\n                \"lat\": 40.380501351725,\n                \"long\": -3.5492559423469\n            },\n            {\n                \"lat\": 40.380509652684,\n                \"long\": -3.5492533002035\n            },\n            {\n                \"lat\": 40.380523367312,\n                \"long\": -3.5492489349215\n            },\n            {\n                \"lat\": 40.380592482658,\n                \"long\": -3.5492267594677\n            },\n            {\n                \"lat\": 40.380620724382,\n                \"long\": -3.5492176820577\n            },\n            {\n                \"lat\": 40.380688125253,\n                \"long\": -3.5491960816547\n            },\n            {\n                \"lat\": 40.380727735957,\n                \"long\": -3.5491833267074\n            },\n            {\n                \"lat\": 40.380796670553,\n                \"long\": -3.5491612674616\n            },\n            {\n                \"lat\": 40.380863015529,\n                \"long\": -3.5491343570347\n            },\n            {\n                \"lat\": 40.380964473508,\n                \"long\": -3.549093241302\n            },\n            {\n                \"lat\": 40.381189938709,\n                \"long\": -3.5489674857148\n            },\n            {\n                \"lat\": 40.381396980878,\n                \"long\": -3.5487941029653\n            },\n            {\n                \"lat\": 40.381439402625,\n                \"long\": -3.5487585156044\n            },\n            {\n                \"lat\": 40.381561442599,\n                \"long\": -3.5486327436521\n            },\n            {\n                \"lat\": 40.381628980718,\n                \"long\": -3.5485631952728\n            },\n            {\n                \"lat\": 40.381642940318,\n                \"long\": -3.5485451659346\n            },\n            {\n                \"lat\": 40.381780451845,\n                \"long\": -3.5483674470436\n            },\n            {\n                \"lat\": 40.381972452911,\n                \"long\": -3.5481359767674\n            },\n            {\n                \"lat\": 40.382067536024,\n                \"long\": -3.5480331927654\n            },\n            {\n                \"lat\": 40.382087821236,\n                \"long\": -3.5480110911227\n            },\n            {\n                \"lat\": 40.38211779442,\n                \"long\": -3.5479788185229\n            },\n            {\n                \"lat\": 40.382151892661,\n                \"long\": -3.5479505848515\n            },\n            {\n                \"lat\": 40.382214933457,\n                \"long\": -3.5478984346198\n            },\n            {\n                \"lat\": 40.382254006049,\n                \"long\": -3.5478661178182\n            },\n            {\n                \"lat\": 40.382256536325,\n                \"long\": -3.5478644889773\n            },\n            {\n                \"lat\": 40.38228653984,\n                \"long\": -3.5478448221521\n            },\n            {\n                \"lat\": 40.382377543563,\n                \"long\": -3.5477853583769\n            },\n            {\n                \"lat\": 40.382492767264,\n                \"long\": -3.5477099505867\n            },\n            {\n                \"lat\": 40.382522137904,\n                \"long\": -3.5476907497416\n            },\n            {\n                \"lat\": 40.382640253282,\n                \"long\": -3.5476134800773\n            },\n            {\n                \"lat\": 40.38274671045,\n                \"long\": -3.5475438912677\n            },\n            {\n                \"lat\": 40.382757916495,\n                \"long\": -3.5475365599169\n            },\n            {\n                \"lat\": 40.382793167364,\n                \"long\": -3.5475122228507\n            },\n            {\n                \"lat\": 40.382835196574,\n                \"long\": -3.5474833460082\n            },\n            {\n                \"lat\": 40.38313771904,\n                \"long\": -3.5472749126085\n            },\n            {\n                \"lat\": 40.383318400742,\n                \"long\": -3.5471504340094\n            },\n            {\n                \"lat\": 40.383412283574,\n                \"long\": -3.5470916985717\n            },\n            {\n                \"lat\": 40.383539689306,\n                \"long\": -3.5470120279551\n            },\n            {\n                \"lat\": 40.38369492564,\n                \"long\": -3.5469149102617\n            },\n            {\n                \"lat\": 40.383772595471,\n                \"long\": -3.5468363683536\n            },\n            {\n                \"lat\": 40.383804006949,\n                \"long\": -3.5468046951301\n            },\n            {\n                \"lat\": 40.383858864264,\n                \"long\": -3.54674929546\n            },\n            {\n                \"lat\": 40.383877421965,\n                \"long\": -3.5467304776436\n            },\n            {\n                \"lat\": 40.383948120929,\n                \"long\": -3.5466590655504\n            },\n            {\n                \"lat\": 40.383958077938,\n                \"long\": -3.5466491319426\n            },\n            {\n                \"lat\": 40.383965229969,\n                \"long\": -3.5466417675424\n            },\n            {\n                \"lat\": 40.383977450312,\n                \"long\": -3.546629495966\n            },\n            {\n                \"lat\": 40.384002525508,\n                \"long\": -3.5466041332377\n            },\n            {\n                \"lat\": 40.384032670123,\n                \"long\": -3.5465736276906\n            },\n            {\n                \"lat\": 40.384079379883,\n                \"long\": -3.5465265265333\n            },\n            {\n                \"lat\": 40.384080737884,\n                \"long\": -3.5465251237509\n            },\n            {\n                \"lat\": 40.38408906606,\n                \"long\": -3.5465167085113\n            },\n            {\n                \"lat\": 40.384097122859,\n                \"long\": -3.5465085267028\n            },\n            {\n                \"lat\": 40.384100652991,\n                \"long\": -3.5465050208369\n            },\n            {\n                \"lat\": 40.384115770609,\n                \"long\": -3.5464897094823\n            },\n            {\n                \"lat\": 40.384153156743,\n                \"long\": -3.5464519579295\n            },\n            {\n                \"lat\": 40.384266311049,\n                \"long\": -3.5463376507467\n            },\n            {\n                \"lat\": 40.384273009837,\n                \"long\": -3.5463308716858\n            },\n            {\n                \"lat\": 40.38428295346,\n                \"long\": -3.5463237653988\n            },\n            {\n                \"lat\": 40.384383565818,\n                \"long\": -3.5462516515918\n            },\n            {\n                \"lat\": 40.38442521377,\n                \"long\": -3.5462271293263\n            },\n            {\n                \"lat\": 40.384615747261,\n                \"long\": -3.5461147421937\n            },\n            {\n                \"lat\": 40.384645290022,\n                \"long\": -3.5460971908505\n            },\n            {\n                \"lat\": 40.384666430124,\n                \"long\": -3.546084755459\n            },\n            {\n                \"lat\": 40.384727875721,\n                \"long\": -3.5460459017062\n            },\n            {\n                \"lat\": 40.38487498497,\n                \"long\": -3.5459526023799\n            },\n            {\n                \"lat\": 40.384941581662,\n                \"long\": -3.5459103733503\n            },\n            {\n                \"lat\": 40.385042334452,\n                \"long\": -3.5458466242234\n            },\n            {\n                \"lat\": 40.385081732343,\n                \"long\": -3.5458216120517\n            },\n            {\n                \"lat\": 40.385211412758,\n                \"long\": -3.5457560932826\n            },\n            {\n                \"lat\": 40.385219536239,\n                \"long\": -3.5457528600235\n            },\n            {\n                \"lat\": 40.38527941687,\n                \"long\": -3.545721061942\n            },\n            {\n                \"lat\": 40.385607562541,\n                \"long\": -3.5456377047309\n            },\n            {\n                \"lat\": 40.385853880477,\n                \"long\": -3.5455404910994\n            },\n            {\n                \"lat\": 40.386214767637,\n                \"long\": -3.5453725682999\n            },\n            {\n                \"lat\": 40.386438957598,\n                \"long\": -3.5452679875529\n            },\n            {\n                \"lat\": 40.386561932852,\n                \"long\": -3.5452105417767\n            },\n            {\n                \"lat\": 40.386825318856,\n                \"long\": -3.5450472491693\n            },\n            {\n                \"lat\": 40.386831107804,\n                \"long\": -3.5450423474798\n            },\n            {\n                \"lat\": 40.386849343744,\n                \"long\": -3.5450152785228\n            },\n            {\n                \"lat\": 40.38684667942,\n                \"long\": -3.5450071276056\n            },\n            {\n                \"lat\": 40.386871524384,\n                \"long\": -3.5449540741169\n            },\n            {\n                \"lat\": 40.38688886331,\n                \"long\": -3.5449261731643\n            },\n            {\n                \"lat\": 40.386957903556,\n                \"long\": -3.5448050233961\n            },\n            {\n                \"lat\": 40.387436790015,\n                \"long\": -3.5445072653823\n            },\n            {\n                \"lat\": 40.387860553171,\n                \"long\": -3.5443023727496\n            },\n            {\n                \"lat\": 40.387984657785,\n                \"long\": -3.5442345649697\n            },\n            {\n                \"lat\": 40.388013289949,\n                \"long\": -3.544219007557\n            },\n            {\n                \"lat\": 40.388022593399,\n                \"long\": -3.54421389836\n            },\n            {\n                \"lat\": 40.388095213136,\n                \"long\": -3.5441743062045\n            },\n            {\n                \"lat\": 40.388185807473,\n                \"long\": -3.5441248438956\n            },\n            {\n                \"lat\": 40.388204775825,\n                \"long\": -3.5441143927167\n            },\n            {\n                \"lat\": 40.388292118102,\n                \"long\": -3.544066789208\n            },\n            {\n                \"lat\": 40.388363609878,\n                \"long\": -3.5440179976542\n            },\n            {\n                \"lat\": 40.388504750354,\n                \"long\": -3.5439483229611\n            },\n            {\n                \"lat\": 40.388682544369,\n                \"long\": -3.543881534898\n            },\n            {\n                \"lat\": 40.388751857103,\n                \"long\": -3.5438554648569\n            },\n            {\n                \"lat\": 40.38897014817,\n                \"long\": -3.5437788693663\n            },\n            {\n                \"lat\": 40.389354946773,\n                \"long\": -3.543621608053\n            },\n            {\n                \"lat\": 40.390091807628,\n                \"long\": -3.5433140042931\n            },\n            {\n                \"lat\": 40.390193399361,\n                \"long\": -3.5432823013445\n            },\n            {\n                \"lat\": 40.390644155841,\n                \"long\": -3.5431417062927\n            },\n            {\n                \"lat\": 40.39095404549,\n                \"long\": -3.5430317907528\n            },\n            {\n                \"lat\": 40.391206616928,\n                \"long\": -3.5429453325019\n            },\n            {\n                \"lat\": 40.391229995602,\n                \"long\": -3.5429357407332\n            },\n            {\n                \"lat\": 40.391236223835,\n                \"long\": -3.5429331985884\n            },\n            {\n                \"lat\": 40.391258683374,\n                \"long\": -3.5429274876775\n            },\n            {\n                \"lat\": 40.391269867546,\n                \"long\": -3.5429247496802\n            },\n            {\n                \"lat\": 40.391381621388,\n                \"long\": -3.542896897649\n            },\n            {\n                \"lat\": 40.391726243767,\n                \"long\": -3.5427959778553\n            },\n            {\n                \"lat\": 40.39179172277,\n                \"long\": -3.5427804791767\n            },\n            {\n                \"lat\": 40.392092960195,\n                \"long\": -3.5427096093285\n            },\n            {\n                \"lat\": 40.392202461179,\n                \"long\": -3.5427010622148\n            },\n            {\n                \"lat\": 40.392338244634,\n                \"long\": -3.5426784689298\n            },\n            {\n                \"lat\": 40.392372776483,\n                \"long\": -3.542672736928\n            },\n            {\n                \"lat\": 40.392389095655,\n                \"long\": -3.5426700400665\n            },\n            {\n                \"lat\": 40.392399280006,\n                \"long\": -3.5426691791997\n            },\n            {\n                \"lat\": 40.39248426658,\n                \"long\": -3.5426626739301\n            },\n            {\n                \"lat\": 40.392558298928,\n                \"long\": -3.5426483040675\n            },\n            {\n                \"lat\": 40.392871799666,\n                \"long\": -3.5426518810747\n            },\n            {\n                \"lat\": 40.39311557733,\n                \"long\": -3.542673044086\n            },\n            {\n                \"lat\": 40.393152769785,\n                \"long\": -3.5426762883815\n            },\n            {\n                \"lat\": 40.39312245579,\n                \"long\": -3.542474321892\n            },\n            {\n                \"lat\": 40.393120709308,\n                \"long\": -3.5424625249837\n            },\n            {\n                \"lat\": 40.393054600226,\n                \"long\": -3.542266634307\n            },\n            {\n                \"lat\": 40.393024388042,\n                \"long\": -3.5421773134085\n            },\n            {\n                \"lat\": 40.393023679493,\n                \"long\": -3.5421747154928\n            },\n            {\n                \"lat\": 40.393015860039,\n                \"long\": -3.5421515583433\n            },\n            {\n                \"lat\": 40.392985559887,\n                \"long\": -3.5420617655272\n            },\n            {\n                \"lat\": 40.392857605728,\n                \"long\": -3.5416825101077\n            },\n            {\n                \"lat\": 40.392252650901,\n                \"long\": -3.5398892780441\n            },\n            {\n                \"lat\": 40.391313876457,\n                \"long\": -3.5373412211162\n            },\n            {\n                \"lat\": 40.391471890885,\n                \"long\": -3.5354585559309\n            },\n            {\n                \"lat\": 40.391689929642,\n                \"long\": -3.5328607954777\n            },\n            {\n                \"lat\": 40.391429193891,\n                \"long\": -3.5321002942749\n            },\n            {\n                \"lat\": 40.391423770628,\n                \"long\": -3.5320845807304\n            },\n            {\n                \"lat\": 40.391125017472,\n                \"long\": -3.5316559367716\n            },\n            {\n                \"lat\": 40.391125291528,\n                \"long\": -3.5316551141485\n            },\n            {\n                \"lat\": 40.390773378943,\n                \"long\": -3.531148880984\n            },\n            {\n                \"lat\": 40.39077283625,\n                \"long\": -3.5311493480198\n            },\n            {\n                \"lat\": 40.389853313247,\n                \"long\": -3.529825095318\n            },\n            {\n                \"lat\": 40.389853044063,\n                \"long\": -3.5298248575619\n            },\n            {\n                \"lat\": 40.389384771198,\n                \"long\": -3.5291511315405\n            },\n            {\n                \"lat\": 40.389794558216,\n                \"long\": -3.5268906020863\n            },\n            {\n                \"lat\": 40.389922007803,\n                \"long\": -3.5265806593778\n            },\n            {\n                \"lat\": 40.389921827627,\n                \"long\": -3.5265806579745\n            },\n            {\n                \"lat\": 40.390221362623,\n                \"long\": -3.5258522469949\n            },\n            {\n                \"lat\": 40.390326216972,\n                \"long\": -3.5255972664129\n            },\n            {\n                \"lat\": 40.390340246378,\n                \"long\": -3.5255630886581\n            },\n            {\n                \"lat\": 40.39035136029,\n                \"long\": -3.5255360754996\n            },\n            {\n                \"lat\": 40.390416313222,\n                \"long\": -3.5253781067636\n            },\n            {\n                \"lat\": 40.390844640428,\n                \"long\": -3.5243386839602\n            },\n            {\n                \"lat\": 40.391865005106,\n                \"long\": -3.5225894468702\n            },\n            {\n                \"lat\": 40.392102058999,\n                \"long\": -3.5204067626905\n            },\n            {\n                \"lat\": 40.39208239973,\n                \"long\": -3.5203710275413\n            },\n            {\n                \"lat\": 40.392180098357,\n                \"long\": -3.52032217426\n            },\n            {\n                \"lat\": 40.392319655629,\n                \"long\": -3.520280830472\n            },\n            {\n                \"lat\": 40.392482303495,\n                \"long\": -3.5202734808175\n            },\n            {\n                \"lat\": 40.39260557328,\n                \"long\": -3.5202679489802\n            },\n            {\n                \"lat\": 40.392732057668,\n                \"long\": -3.5202287429645\n            },\n            {\n                \"lat\": 40.392842216423,\n                \"long\": -3.5202338325286\n            },\n            {\n                \"lat\": 40.392955408424,\n                \"long\": -3.5202856056246\n            },\n            {\n                \"lat\": 40.393062228569,\n                \"long\": -3.5203118788079\n            },\n            {\n                \"lat\": 40.393120605703,\n                \"long\": -3.5203123281314\n            },\n            {\n                \"lat\": 40.393188717699,\n                \"long\": -3.5202916431435\n            },\n            {\n                \"lat\": 40.393318933271,\n                \"long\": -3.5202841616553\n            },\n            {\n                \"lat\": 40.393493789059,\n                \"long\": -3.5203067167859\n            },\n            {\n                \"lat\": 40.393636417705,\n                \"long\": -3.5203035727175\n            },\n            {\n                \"lat\": 40.393727058588,\n                \"long\": -3.5203015602844\n            },\n            {\n                \"lat\": 40.393817969734,\n                \"long\": -3.5202995499274\n            },\n            {\n                \"lat\": 40.393833158052,\n                \"long\": -3.5203077971175\n            },\n            {\n                \"lat\": 40.393876117865,\n                \"long\": -3.5203308690328\n            },\n            {\n                \"lat\": 40.394005735634,\n                \"long\": -3.5203361086555\n            },\n            {\n                \"lat\": 40.394103376877,\n                \"long\": -3.5203400416814\n            },\n            {\n                \"lat\": 40.39418741953,\n                \"long\": -3.520362840811\n            },\n            {\n                \"lat\": 40.394278304739,\n                \"long\": -3.5203465727765\n            },\n            {\n                \"lat\": 40.394372255062,\n                \"long\": -3.5203298569687\n            },\n            {\n                \"lat\": 40.394485763477,\n                \"long\": -3.5203313198616\n            },\n            {\n                \"lat\": 40.394546597848,\n                \"long\": -3.5203462814121\n            },\n            {\n                \"lat\": 40.394556947381,\n                \"long\": -3.5203487177109\n            },\n            {\n                \"lat\": 40.394595750929,\n                \"long\": -3.5203744680346\n            },\n            {\n                \"lat\": 40.394663767478,\n                \"long\": -3.5203749916434\n            },\n            {\n                \"lat\": 40.394745310978,\n                \"long\": -3.5203925871722\n            },\n            {\n                \"lat\": 40.394924876015,\n                \"long\": -3.5202695388236\n            },\n            {\n                \"lat\": 40.395142035249,\n                \"long\": -3.5201206202934\n            },\n            {\n                \"lat\": 40.395173574587,\n                \"long\": -3.5200989461175\n            },\n            {\n                \"lat\": 40.395179629571,\n                \"long\": -3.5200947507333\n            },\n            {\n                \"lat\": 40.395207372484,\n                \"long\": -3.5200758753073\n            },\n            {\n                \"lat\": 40.395228157939,\n                \"long\": -3.5200615418115\n            },\n            {\n                \"lat\": 40.395239453932,\n                \"long\": -3.5200538517626\n            },\n            {\n                \"lat\": 40.395258973911,\n                \"long\": -3.5200404511792\n            },\n            {\n                \"lat\": 40.395223434024,\n                \"long\": -3.5198899411036\n            },\n            {\n                \"lat\": 40.395211941347,\n                \"long\": -3.5198411878274\n            },\n            {\n                \"lat\": 40.395200850315,\n                \"long\": -3.5197832467112\n            },\n            {\n                \"lat\": 40.395178669224,\n                \"long\": -3.5196671288781\n            },\n            {\n                \"lat\": 40.39517751464,\n                \"long\": -3.5195631916591\n            },\n            {\n                \"lat\": 40.395197392951,\n                \"long\": -3.5194700210145\n            },\n            {\n                \"lat\": 40.395234994321,\n                \"long\": -3.5194024383535\n            },\n            {\n                \"lat\": 40.395290323966,\n                \"long\": -3.519339233805\n            },\n            {\n                \"lat\": 40.395365064994,\n                \"long\": -3.5192867832379\n            },\n            {\n                \"lat\": 40.395407846148,\n                \"long\": -3.5192694369499\n            },\n            {\n                \"lat\": 40.395410915494,\n                \"long\": -3.5192680465331\n            },\n            {\n                \"lat\": 40.395561661537,\n                \"long\": -3.519262841587\n            },\n            {\n                \"lat\": 40.395754447654,\n                \"long\": -3.5192849434677\n            },\n            {\n                \"lat\": 40.395853046545,\n                \"long\": -3.5192963059885\n            },\n            {\n                \"lat\": 40.395930394686,\n                \"long\": -3.5193052664341\n            },\n            {\n                \"lat\": 40.396007383002,\n                \"long\": -3.5193141063027\n            },\n            {\n                \"lat\": 40.3961027403,\n                \"long\": -3.5193250905043\n            },\n            {\n                \"lat\": 40.396175226322,\n                \"long\": -3.5193334244904\n            },\n            {\n                \"lat\": 40.396867219638,\n                \"long\": -3.5194130955774\n            },\n            {\n                \"lat\": 40.397087919233,\n                \"long\": -3.5194384766031\n            },\n            {\n                \"lat\": 40.397279174291,\n                \"long\": -3.5194604499274\n            },\n            {\n                \"lat\": 40.397661325516,\n                \"long\": -3.5194840084211\n            },\n            {\n                \"lat\": 40.397859035997,\n                \"long\": -3.519472801588\n            },\n            {\n                \"lat\": 40.398106239466,\n                \"long\": -3.5193941005712\n            },\n            {\n                \"lat\": 40.398219271115,\n                \"long\": -3.5193412351088\n            },\n            {\n                \"lat\": 40.398356316975,\n                \"long\": -3.5192772415167\n            },\n            {\n                \"lat\": 40.398541354603,\n                \"long\": -3.5191790896803\n            },\n            {\n                \"lat\": 40.398805812679,\n                \"long\": -3.5190095477026\n            },\n            {\n                \"lat\": 40.398987058442,\n                \"long\": -3.5189131329682\n            },\n            {\n                \"lat\": 40.399304388005,\n                \"long\": -3.5187662663782\n            },\n            {\n                \"lat\": 40.399347541042,\n                \"long\": -3.5187463291536\n            },\n            {\n                \"lat\": 40.399387636367,\n                \"long\": -3.5187251900361\n            },\n            {\n                \"lat\": 40.399483901799,\n                \"long\": -3.5186743149258\n            },\n            {\n                \"lat\": 40.399585404473,\n                \"long\": -3.5186207695347\n            },\n            {\n                \"lat\": 40.400000792018,\n                \"long\": -3.5184450744696\n            },\n            {\n                \"lat\": 40.40018278128,\n                \"long\": -3.5183836611236\n            },\n            {\n                \"lat\": 40.400445621245,\n                \"long\": -3.5183135580332\n            },\n            {\n                \"lat\": 40.400713650882,\n                \"long\": -3.5182513896352\n            },\n            {\n                \"lat\": 40.401701807793,\n                \"long\": -3.5180219832812\n            },\n            {\n                \"lat\": 40.401903100271,\n                \"long\": -3.5179753279436\n            },\n            {\n                \"lat\": 40.402153619165,\n                \"long\": -3.5179405983973\n            },\n            {\n                \"lat\": 40.402289058998,\n                \"long\": -3.5179332694564\n            },\n            {\n                \"lat\": 40.402429184461,\n                \"long\": -3.5179257407099\n            },\n            {\n                \"lat\": 40.402685086622,\n                \"long\": -3.5179361868828\n            },\n            {\n                \"lat\": 40.40298627419,\n                \"long\": -3.5179936473385\n            },\n            {\n                \"lat\": 40.403184364031,\n                \"long\": -3.5180585672104\n            },\n            {\n                \"lat\": 40.40336223503,\n                \"long\": -3.5181320531125\n            },\n            {\n                \"lat\": 40.403410869685,\n                \"long\": -3.5181554061718\n            },\n            {\n                \"lat\": 40.40360477975,\n                \"long\": -3.5182483425392\n            },\n            {\n                \"lat\": 40.403801363066,\n                \"long\": -3.5183679335155\n            },\n            {\n                \"lat\": 40.404106390781,\n                \"long\": -3.5185534094618\n            },\n            {\n                \"lat\": 40.404344482876,\n                \"long\": -3.5186981868875\n            },\n            {\n                \"lat\": 40.404581525778,\n                \"long\": -3.5188157341695\n            },\n            {\n                \"lat\": 40.404782150948,\n                \"long\": -3.5188977656556\n            },\n            {\n                \"lat\": 40.405057926369,\n                \"long\": -3.5189766036288\n            },\n            {\n                \"lat\": 40.405306471025,\n                \"long\": -3.5190204672559\n            },\n            {\n                \"lat\": 40.4053591323,\n                \"long\": -3.5190298283806\n            },\n            {\n                \"lat\": 40.405773688453,\n                \"long\": -3.5190795639078\n            },\n            {\n                \"lat\": 40.406104504526,\n                \"long\": -3.5191193464208\n            },\n            {\n                \"lat\": 40.406571183815,\n                \"long\": -3.5191578161985\n            },\n            {\n                \"lat\": 40.406927255005,\n                \"long\": -3.5191709231691\n            },\n            {\n                \"lat\": 40.407008683946,\n                \"long\": -3.5191739059183\n            },\n            {\n                \"lat\": 40.407388732132,\n                \"long\": -3.5191640979651\n            },\n            {\n                \"lat\": 40.407722697983,\n                \"long\": -3.5191243543673\n            },\n            {\n                \"lat\": 40.408059983686,\n                \"long\": -3.519067546917\n            },\n            {\n                \"lat\": 40.408383790744,\n                \"long\": -3.5189627859951\n            },\n            {\n                \"lat\": 40.408715628214,\n                \"long\": -3.5188552572073\n            },\n            {\n                \"lat\": 40.408747386239,\n                \"long\": -3.5188450118901\n            },\n            {\n                \"lat\": 40.408747476327,\n                \"long\": -3.5188450125819\n            },\n            {\n                \"lat\": 40.408772626912,\n                \"long\": -3.5189219301758\n            },\n            {\n                \"lat\": 40.408804299589,\n                \"long\": -3.5189708481159\n            },\n            {\n                \"lat\": 40.408850974984,\n                \"long\": -3.5190091564184\n            },\n            {\n                \"lat\": 40.408864349418,\n                \"long\": -3.5190201019541\n            },\n            {\n                \"lat\": 40.408943889963,\n                \"long\": -3.5190624342286\n            },\n            {\n                \"lat\": 40.409018461614,\n                \"long\": -3.5190677214135\n            },\n            {\n                \"lat\": 40.409055567792,\n                \"long\": -3.5190702457736\n            },\n            {\n                \"lat\": 40.409149431768,\n                \"long\": -3.5191128061409\n            },\n            {\n                \"lat\": 40.409210703602,\n                \"long\": -3.5191707911729\n            },\n            {\n                \"lat\": 40.40934230795,\n                \"long\": -3.5192953169208\n            },\n            {\n                \"lat\": 40.409413057013,\n                \"long\": -3.519369403747\n            },\n            {\n                \"lat\": 40.409451704382,\n                \"long\": -3.519409890247\n            },\n            {\n                \"lat\": 40.409608693835,\n                \"long\": -3.5195990803106\n            },\n            {\n                \"lat\": 40.409704989563,\n                \"long\": -3.5197018858715\n            },\n            {\n                \"lat\": 40.409718349095,\n                \"long\": -3.5197161315922\n            },\n            {\n                \"lat\": 40.409722568394,\n                \"long\": -3.5197194640724\n            },\n            {\n                \"lat\": 40.409780912741,\n                \"long\": -3.519426446338\n            },\n            {\n                \"lat\": 40.409826189095,\n                \"long\": -3.5191744601705\n            },\n            {\n                \"lat\": 40.409781812428,\n                \"long\": -3.5188448237346\n            },\n            {\n                \"lat\": 40.409780414916,\n                \"long\": -3.5188350307833\n            },\n            {\n                \"lat\": 40.409706651479,\n                \"long\": -3.5182879570915\n            },\n            {\n                \"lat\": 40.409706127857,\n                \"long\": -3.5182841816208\n            },\n            {\n                \"lat\": 40.409685464736,\n                \"long\": -3.5181305721278\n            },\n            {\n                \"lat\": 40.40971598386,\n                \"long\": -3.5180952130837\n            },\n            {\n                \"lat\": 40.40972765567,\n                \"long\": -3.5180036090917\n            },\n            {\n                \"lat\": 40.409725463372,\n                \"long\": -3.5178494340656\n            },\n            {\n                \"lat\": 40.409698612251,\n                \"long\": -3.5175887622532\n            },\n            {\n                \"lat\": 40.409644908768,\n                \"long\": -3.5170673013779\n            },\n            {\n                \"lat\": 40.409628341108,\n                \"long\": -3.5170048278041\n            },\n            {\n                \"lat\": 40.409587932763,\n                \"long\": -3.5167736352929\n            },\n            {\n                \"lat\": 40.409580728848,\n                \"long\": -3.516732565705\n            },\n            {\n                \"lat\": 40.409529379887,\n                \"long\": -3.5165302828534\n            },\n            {\n                \"lat\": 40.409482706629,\n                \"long\": -3.5163097681227\n            },\n            {\n                \"lat\": 40.409479767731,\n                \"long\": -3.5162617776442\n            },\n            {\n                \"lat\": 40.409474902008,\n                \"long\": -3.5161812437687\n            },\n            {\n                \"lat\": 40.409497906804,\n                \"long\": -3.5160530726343\n            },\n            {\n                \"lat\": 40.409557160276,\n                \"long\": -3.5159580605157\n            },\n            {\n                \"lat\": 40.409624980442,\n                \"long\": -3.5158612279176\n            },\n            {\n                \"lat\": 40.410417920119,\n                \"long\": -3.5150824582847\n            },\n            {\n                \"lat\": 40.410435288412,\n                \"long\": -3.5150665618519\n            },\n            {\n                \"lat\": 40.410476084658,\n                \"long\": -3.5148474188984\n            },\n            {\n                \"lat\": 40.410463430008,\n                \"long\": -3.5148365972675\n            },\n            {\n                \"lat\": 40.41042878619,\n                \"long\": -3.5148071041793\n            },\n            {\n                \"lat\": 40.410383115529,\n                \"long\": -3.5147046901634\n            },\n            {\n                \"lat\": 40.410257176476,\n                \"long\": -3.5145004240781\n            },\n            {\n                \"lat\": 40.410210574674,\n                \"long\": -3.5144249931104\n            },\n            {\n                \"lat\": 40.410049922412,\n                \"long\": -3.5142269460748\n            },\n            {\n                \"lat\": 40.409954588161,\n                \"long\": -3.5141094227934\n            },\n            {\n                \"lat\": 40.409785405279,\n                \"long\": -3.5138644048573\n            },\n            {\n                \"lat\": 40.409663286657,\n                \"long\": -3.513671839129\n            },\n            {\n                \"lat\": 40.409601913486,\n                \"long\": -3.5135752005673\n            },\n            {\n                \"lat\": 40.409642942622,\n                \"long\": -3.5135058584791\n            },\n            {\n                \"lat\": 40.409739656772,\n                \"long\": -3.5133533781712\n            },\n            {\n                \"lat\": 40.41013921254,\n                \"long\": -3.5127235129837\n            },\n            {\n                \"lat\": 40.41092153211,\n                \"long\": -3.5122426882294\n            },\n            {\n                \"lat\": 40.410975634124,\n                \"long\": -3.5120285929531\n            },\n            {\n                \"lat\": 40.411033922072,\n                \"long\": -3.5116624893034\n            },\n            {\n                \"lat\": 40.411038646944,\n                \"long\": -3.51163306002\n            },\n            {\n                \"lat\": 40.410908246936,\n                \"long\": -3.5115399059038\n            },\n            {\n                \"lat\": 40.410762220853,\n                \"long\": -3.5114762166604\n            },\n            {\n                \"lat\": 40.410645626102,\n                \"long\": -3.5114800483149\n            },\n            {\n                \"lat\": 40.410306474306,\n                \"long\": -3.5114911522745\n            },\n            {\n                \"lat\": 40.410024335066,\n                \"long\": -3.5115260237735\n            },\n            {\n                \"lat\": 40.409835496514,\n                \"long\": -3.5116092161632\n            },\n            {\n                \"lat\": 40.409382396069,\n                \"long\": -3.5116572887046\n            },\n            {\n                \"lat\": 40.409208150156,\n                \"long\": -3.5116595048152\n            },\n            {\n                \"lat\": 40.409023273327,\n                \"long\": -3.5116617582658\n            },\n            {\n                \"lat\": 40.409013182423,\n                \"long\": -3.5116619175586\n            },\n            {\n                \"lat\": 40.408843518086,\n                \"long\": -3.5116467255988\n            },\n            {\n                \"lat\": 40.408793087032,\n                \"long\": -3.5116422187151\n            },\n            {\n                \"lat\": 40.408788223842,\n                \"long\": -3.5116418283178\n            },\n            {\n                \"lat\": 40.408735662486,\n                \"long\": -3.5116301160779\n            },\n            {\n                \"lat\": 40.408698131231,\n                \"long\": -3.5116218176453\n            },\n            {\n                \"lat\": 40.4086085781,\n                \"long\": -3.5116020468247\n            },\n            {\n                \"lat\": 40.408529645446,\n                \"long\": -3.511584595737\n            },\n            {\n                \"lat\": 40.408502464405,\n                \"long\": -3.5115786149872\n            },\n            {\n                \"lat\": 40.408500124201,\n                \"long\": -3.5115781258442\n            },\n            {\n                \"lat\": 40.408461243184,\n                \"long\": -3.5115694636834\n            },\n            {\n                \"lat\": 40.408394101108,\n                \"long\": -3.511554576914\n            },\n            {\n                \"lat\": 40.408323538291,\n                \"long\": -3.511539074998\n            },\n            {\n                \"lat\": 40.408286666318,\n                \"long\": -3.5115242996094\n            },\n            {\n                \"lat\": 40.408180006441,\n                \"long\": -3.5114817713195\n            },\n            {\n                \"lat\": 40.408054460373,\n                \"long\": -3.5114317931893\n            },\n            {\n                \"lat\": 40.407984133484,\n                \"long\": -3.5114036827897\n            },\n            {\n                \"lat\": 40.407912752113,\n                \"long\": -3.5113695538725\n            },\n            {\n                \"lat\": 40.407793994904,\n                \"long\": -3.5113123205444\n            },\n            {\n                \"lat\": 40.407711916472,\n                \"long\": -3.5112728074239\n            },\n            {\n                \"lat\": 40.407678596977,\n                \"long\": -3.511249220118\n            },\n            {\n                \"lat\": 40.407564808661,\n                \"long\": -3.511168453955\n            },\n            {\n                \"lat\": 40.407512809172,\n                \"long\": -3.5111315257735\n            },\n            {\n                \"lat\": 40.407469432633,\n                \"long\": -3.5110800489747\n            },\n            {\n                \"lat\": 40.407389668854,\n                \"long\": -3.5109856339151\n            },\n            {\n                \"lat\": 40.40729054803,\n                \"long\": -3.5108679733813\n            },\n            {\n                \"lat\": 40.407243585548,\n                \"long\": -3.5108124627874\n            },\n            {\n                \"lat\": 40.407202538657,\n                \"long\": -3.5107638324967\n            },\n            {\n                \"lat\": 40.407110765788,\n                \"long\": -3.5106550671567\n            },\n            {\n                \"lat\": 40.407104165889,\n                \"long\": -3.5106399320391\n            },\n            {\n                \"lat\": 40.407029784365,\n                \"long\": -3.5104690719011\n            },\n            {\n                \"lat\": 40.406970028796,\n                \"long\": -3.5103319107581\n            },\n            {\n                \"lat\": 40.406960575683,\n                \"long\": -3.5103100365236\n            },\n            {\n                \"lat\": 40.406876204146,\n                \"long\": -3.5101163560542\n            },\n            {\n                \"lat\": 40.406832679929,\n                \"long\": -3.5100165595744\n            },\n            {\n                \"lat\": 40.406800606343,\n                \"long\": -3.5099351168361\n            },\n            {\n                \"lat\": 40.406724785266,\n                \"long\": -3.5097431517385\n            },\n            {\n                \"lat\": 40.406649499203,\n                \"long\": -3.5095523696327\n            },\n            {\n                \"lat\": 40.406586212434,\n                \"long\": -3.5093371650861\n            },\n            {\n                \"lat\": 40.406569169875,\n                \"long\": -3.5092792888996\n            },\n            {\n                \"lat\": 40.406562206382,\n                \"long\": -3.5091625624664\n            },\n            {\n                \"lat\": 40.406557509118,\n                \"long\": -3.509083565919\n            },\n            {\n                \"lat\": 40.406550802204,\n                \"long\": -3.508969905622\n            },\n            {\n                \"lat\": 40.406551848332,\n                \"long\": -3.5089369148149\n            },\n            {\n                \"lat\": 40.406557329528,\n                \"long\": -3.5087559347149\n            },\n            {\n                \"lat\": 40.406565899183,\n                \"long\": -3.508692005344\n            },\n            {\n                \"lat\": 40.406602879138,\n                \"long\": -3.5084160373864\n            },\n            {\n                \"lat\": 40.406621324342,\n                \"long\": -3.5082779351042\n            },\n            {\n                \"lat\": 40.406638929068,\n                \"long\": -3.5081465440243\n            },\n            {\n                \"lat\": 40.406658583931,\n                \"long\": -3.5079996117406\n            },\n            {\n                \"lat\": 40.406665476187,\n                \"long\": -3.5079482798013\n            },\n            {\n                \"lat\": 40.406673879731,\n                \"long\": -3.5079015554657\n            },\n            {\n                \"lat\": 40.406696599387,\n                \"long\": -3.507774681026\n            },\n            {\n                \"lat\": 40.406742681316,\n                \"long\": -3.5075181082496\n            },\n            {\n                \"lat\": 40.406742959857,\n                \"long\": -3.5075162246971\n            },\n            {\n                \"lat\": 40.406762894326,\n                \"long\": -3.5072437808399\n            },\n            {\n                \"lat\": 40.406781877151,\n                \"long\": -3.5069827614074\n            },\n            {\n                \"lat\": 40.406783312182,\n                \"long\": -3.506963680011\n            },\n            {\n                \"lat\": 40.406802865891,\n                \"long\": -3.5066955935263\n            },\n            {\n                \"lat\": 40.406822811334,\n                \"long\": -3.5064202029389\n            },\n            {\n                \"lat\": 40.406823385413,\n                \"long\": -3.5064125468009\n            },\n            {\n                \"lat\": 40.406842363784,\n                \"long\": -3.5061521161273\n            },\n            {\n                \"lat\": 40.406884624732,\n                \"long\": -3.5055736564074\n            },\n            {\n                \"lat\": 40.40694843233,\n                \"long\": -3.5049292413735\n            },\n            {\n                \"lat\": 40.406960034055,\n                \"long\": -3.5048719335753\n            },\n            {\n                \"lat\": 40.407054781361,\n                \"long\": -3.5044037030862\n            },\n            {\n                \"lat\": 40.407135618081,\n                \"long\": -3.5037780331231\n            },\n            {\n                \"lat\": 40.407183258689,\n                \"long\": -3.5034097423602\n            },\n            {\n                \"lat\": 40.407213768736,\n                \"long\": -3.5028578254382\n            },\n            {\n                \"lat\": 40.407205876036,\n                \"long\": -3.5027046748532\n            },\n            {\n                \"lat\": 40.407193081251,\n                \"long\": -3.5024563799933\n            },\n            {\n                \"lat\": 40.407094411294,\n                \"long\": -3.5016933703091\n            },\n            {\n                \"lat\": 40.40708918292,\n                \"long\": -3.5016525542066\n            },\n            {\n                \"lat\": 40.407075283348,\n                \"long\": -3.5015753748919\n            },\n            {\n                \"lat\": 40.407044231021,\n                \"long\": -3.5014024892415\n            },\n            {\n                \"lat\": 40.407034202677,\n                \"long\": -3.5013466702032\n            },\n            {\n                \"lat\": 40.406933837054,\n                \"long\": -3.5011398003429\n            },\n            {\n                \"lat\": 40.406820244074,\n                \"long\": -3.5009915237995\n            },\n            {\n                \"lat\": 40.406735228239,\n                \"long\": -3.5008805832151\n            },\n            {\n                \"lat\": 40.406496867039,\n                \"long\": -3.5007095802246\n            },\n            {\n                \"lat\": 40.406360698724,\n                \"long\": -3.5006357385351\n            },\n            {\n                \"lat\": 40.406145255675,\n                \"long\": -3.5005190010798\n            },\n            {\n                \"lat\": 40.406049645726,\n                \"long\": -3.5005035613979\n            },\n            {\n                \"lat\": 40.405915931398,\n                \"long\": -3.5005495936394\n            },\n            {\n                \"lat\": 40.405903209569,\n                \"long\": -3.5005539777484\n            },\n            {\n                \"lat\": 40.405784264732,\n                \"long\": -3.5007261020838\n            },\n            {\n                \"lat\": 40.40577110701,\n                \"long\": -3.5007479248864\n            },\n            {\n                \"lat\": 40.405702144831,\n                \"long\": -3.5008617292878\n            },\n            {\n                \"lat\": 40.405691560605,\n                \"long\": -3.5008717860166\n            },\n            {\n                \"lat\": 40.405532070267,\n                \"long\": -3.5010240453893\n            },\n            {\n                \"lat\": 40.405518500347,\n                \"long\": -3.5010370261956\n            },\n            {\n                \"lat\": 40.405426928718,\n                \"long\": -3.5010876121652\n            },\n            {\n                \"lat\": 40.405360552977,\n                \"long\": -3.5011242428159\n            },\n            {\n                \"lat\": 40.405227891548,\n                \"long\": -3.5011975045712\n            },\n            {\n                \"lat\": 40.40511299277,\n                \"long\": -3.5013297049452\n            },\n            {\n                \"lat\": 40.405094702971,\n                \"long\": -3.5013507822369\n            },\n            {\n                \"lat\": 40.405062533232,\n                \"long\": -3.501414771736\n            },\n            {\n                \"lat\": 40.404984560796,\n                \"long\": -3.5015702262023\n            },\n            {\n                \"lat\": 40.404958479508,\n                \"long\": -3.5016221221729\n            },\n            {\n                \"lat\": 40.404889189172,\n                \"long\": -3.5016867786097\n            },\n            {\n                \"lat\": 40.404644955664,\n                \"long\": -3.5019142997595\n            },\n            {\n                \"lat\": 40.404598187738,\n                \"long\": -3.5019790050633\n            },\n            {\n                \"lat\": 40.40441066472,\n                \"long\": -3.5022379398794\n            },\n            {\n                \"lat\": 40.404355649437,\n                \"long\": -3.5023138968994\n            },\n            {\n                \"lat\": 40.40434332269,\n                \"long\": -3.5023310111659\n            },\n            {\n                \"lat\": 40.40426492325,\n                \"long\": -3.5024393203561\n            },\n            {\n                \"lat\": 40.404113380948,\n                \"long\": -3.5026486704964\n            },\n            {\n                \"lat\": 40.40401513229,\n                \"long\": -3.5028257723796\n            },\n            {\n                \"lat\": 40.403882648889,\n                \"long\": -3.5030649604105\n            },\n            {\n                \"lat\": 40.403657714374,\n                \"long\": -3.5033701605614\n            },\n            {\n                \"lat\": 40.403650555335,\n                \"long\": -3.503379770721\n            },\n            {\n                \"lat\": 40.403321916817,\n                \"long\": -3.5037902579612\n            },\n            {\n                \"lat\": 40.403304640647,\n                \"long\": -3.5038060384829\n            },\n            {\n                \"lat\": 40.40327578594,\n                \"long\": -3.5038325745725\n            },\n            {\n                \"lat\": 40.403234720016,\n                \"long\": -3.503870332872\n            },\n            {\n                \"lat\": 40.403106004701,\n                \"long\": -3.5039886337446\n            },\n            {\n                \"lat\": 40.403021793004,\n                \"long\": -3.5040659021012\n            },\n            {\n                \"lat\": 40.402980093817,\n                \"long\": -3.5041042446256\n            },\n            {\n                \"lat\": 40.402623298708,\n                \"long\": -3.5044838742263\n            },\n            {\n                \"lat\": 40.402516042795,\n                \"long\": -3.5045979728265\n            },\n            {\n                \"lat\": 40.402325602537,\n                \"long\": -3.5047602376667\n            },\n            {\n                \"lat\": 40.402134890757,\n                \"long\": -3.5049227352581\n            },\n            {\n                \"lat\": 40.402020012425,\n                \"long\": -3.5050286441045\n            },\n            {\n                \"lat\": 40.401652037767,\n                \"long\": -3.5053682307776\n            },\n            {\n                \"lat\": 40.401579129962,\n                \"long\": -3.5054355635907\n            },\n            {\n                \"lat\": 40.401371895442,\n                \"long\": -3.5056266876836\n            },\n            {\n                \"lat\": 40.401196138637,\n                \"long\": -3.5057889389578\n            },\n            {\n                \"lat\": 40.401137161399,\n                \"long\": -3.5058432945649\n            },\n            {\n                \"lat\": 40.400726360698,\n                \"long\": -3.5062721117954\n            },\n            {\n                \"lat\": 40.400562818345,\n                \"long\": -3.5064428181693\n            },\n            {\n                \"lat\": 40.400325345532,\n                \"long\": -3.5066672945025\n            },\n            {\n                \"lat\": 40.400226647689,\n                \"long\": -3.5067604741886\n            },\n            {\n                \"lat\": 40.399917922415,\n                \"long\": -3.5070647812814\n            },\n            {\n                \"lat\": 40.399536720228,\n                \"long\": -3.5074404240479\n            },\n            {\n                \"lat\": 40.39951402275,\n                \"long\": -3.5074596972612\n            },\n            {\n                \"lat\": 40.39914868865,\n                \"long\": -3.5077707608959\n            },\n            {\n                \"lat\": 40.398717882825,\n                \"long\": -3.5081375381084\n            },\n            {\n                \"lat\": 40.398666428417,\n                \"long\": -3.5081813407734\n            },\n            {\n                \"lat\": 40.398320665045,\n                \"long\": -3.5084257296842\n            },\n            {\n                \"lat\": 40.398016833244,\n                \"long\": -3.5086406187827\n            },\n            {\n                \"lat\": 40.397931185948,\n                \"long\": -3.5086953578284\n            },\n            {\n                \"lat\": 40.397872371047,\n                \"long\": -3.5087329766217\n            },\n            {\n                \"lat\": 40.397825842874,\n                \"long\": -3.5087627927427\n            },\n            {\n                \"lat\": 40.397819338374,\n                \"long\": -3.5087668680842\n            },\n            {\n                \"lat\": 40.397803527822,\n                \"long\": -3.5087770009086\n            },\n            {\n                \"lat\": 40.397669816094,\n                \"long\": -3.5088626045638\n            },\n            {\n                \"lat\": 40.397647319816,\n                \"long\": -3.5088770469738\n            },\n            {\n                \"lat\": 40.39752101117,\n                \"long\": -3.5089795566318\n            },\n            {\n                \"lat\": 40.397418119332,\n                \"long\": -3.5090631527653\n            },\n            {\n                \"lat\": 40.397351660815,\n                \"long\": -3.5090975318011\n            },\n            {\n                \"lat\": 40.397155716859,\n                \"long\": -3.509198808982\n            },\n            {\n                \"lat\": 40.397116347569,\n                \"long\": -3.5092191336901\n            },\n            {\n                \"lat\": 40.396952346038,\n                \"long\": -3.5092680961414\n            },\n            {\n                \"lat\": 40.396899483216,\n                \"long\": -3.509283841324\n            },\n            {\n                \"lat\": 40.396758360358,\n                \"long\": -3.5092929118405\n            },\n            {\n                \"lat\": 40.396584434986,\n                \"long\": -3.509304091858\n            },\n            {\n                \"lat\": 40.396538655612,\n                \"long\": -3.5093070462908\n            },\n            {\n                \"lat\": 40.39621535932,\n                \"long\": -3.5092567694871\n            },\n            {\n                \"lat\": 40.39619616896,\n                \"long\": -3.5092569784064\n            },\n            {\n                \"lat\": 40.396159410867,\n                \"long\": -3.5092571728014\n            },\n            {\n                \"lat\": 40.396004538217,\n                \"long\": -3.5092584804819\n            },\n            {\n                \"lat\": 40.395979041677,\n                \"long\": -3.509258641889\n            },\n            {\n                \"lat\": 40.395968049869,\n                \"long\": -3.509258794743\n            },\n            {\n                \"lat\": 40.395906515421,\n                \"long\": -3.5092592738045\n            },\n            {\n                \"lat\": 40.395840927,\n                \"long\": -3.5092597223226\n            },\n            {\n                \"lat\": 40.395827322631,\n                \"long\": -3.5092598554929\n            },\n            {\n                \"lat\": 40.395753535138,\n                \"long\": -3.5092604779051\n            },\n            {\n                \"lat\": 40.395747768969,\n                \"long\": -3.5092605522957\n            },\n            {\n                \"lat\": 40.395569832669,\n                \"long\": -3.5092619218732\n            },\n            {\n                \"lat\": 40.395432708953,\n                \"long\": -3.5092630097683\n            },\n            {\n                \"lat\": 40.395340163057,\n                \"long\": -3.5092475834091\n            },\n            {\n                \"lat\": 40.395348139482,\n                \"long\": -3.5091956791859\n            },\n            {\n                \"lat\": 40.39536965837,\n                \"long\": -3.5090553844075\n            },\n            {\n                \"lat\": 40.395402927037,\n                \"long\": -3.5086197706378\n            },\n            {\n                \"lat\": 40.394989178403,\n                \"long\": -3.5079546755714\n            },\n            {\n                \"lat\": 40.394780916598,\n                \"long\": -3.5076197640393\n            },\n            {\n                \"lat\": 40.394189314156,\n                \"long\": -3.5066686679409\n            },\n            {\n                \"lat\": 40.394172584828,\n                \"long\": -3.50664179494\n            },\n            {\n                \"lat\": 40.394146999209,\n                \"long\": -3.5066005980479\n            },\n            {\n                \"lat\": 40.394123112866,\n                \"long\": -3.5065622418599\n            },\n            {\n                \"lat\": 40.394108709809,\n                \"long\": -3.506539039097\n            },\n            {\n                \"lat\": 40.393519155903,\n                \"long\": -3.5055912765059\n            },\n            {\n                \"lat\": 40.393458947801,\n                \"long\": -3.5054944415546\n            },\n            {\n                \"lat\": 40.393381515112,\n                \"long\": -3.5054633446894\n            },\n            {\n                \"lat\": 40.393300474758,\n                \"long\": -3.5054331635572\n            },\n            {\n                \"lat\": 40.39326908387,\n                \"long\": -3.50542149941\n            },\n            {\n                \"lat\": 40.393089431714,\n                \"long\": -3.5054031888417\n            },\n            {\n                \"lat\": 40.393010427809,\n                \"long\": -3.5054017733799\n            },\n            {\n                \"lat\": 40.392925028143,\n                \"long\": -3.5054001922774\n            },\n            {\n                \"lat\": 40.392886201595,\n                \"long\": -3.5053995485143\n            },\n            {\n                \"lat\": 40.392761164583,\n                \"long\": -3.5053973175975\n            },\n            {\n                \"lat\": 40.392712284182,\n                \"long\": -3.5053883506911\n            },\n            {\n                \"lat\": 40.392516312125,\n                \"long\": -3.5053524798316\n            },\n            {\n                \"lat\": 40.392372641243,\n                \"long\": -3.5053261906946\n            },\n            {\n                \"lat\": 40.392279717906,\n                \"long\": -3.5053145381274\n            },\n            {\n                \"lat\": 40.39223685797,\n                \"long\": -3.5053091511745\n            },\n            {\n                \"lat\": 40.392134210231,\n                \"long\": -3.5052962476974\n            },\n            {\n                \"lat\": 40.392083606295,\n                \"long\": -3.5052899780961\n            },\n            {\n                \"lat\": 40.392015379517,\n                \"long\": -3.505296302115\n            },\n            {\n                \"lat\": 40.391907600826,\n                \"long\": -3.5053236571634\n            },\n            {\n                \"lat\": 40.391871885143,\n                \"long\": -3.5053326985165\n            },\n            {\n                \"lat\": 40.391757760034,\n                \"long\": -3.5054104358238\n            },\n            {\n                \"lat\": 40.39162114404,\n                \"long\": -3.5055426761651\n            },\n            {\n                \"lat\": 40.391597348797,\n                \"long\": -3.5055658278488\n            },\n            {\n                \"lat\": 40.391574730366,\n                \"long\": -3.5055876922275\n            },\n            {\n                \"lat\": 40.391515740806,\n                \"long\": -3.5056448680988\n            },\n            {\n                \"lat\": 40.391445803631,\n                \"long\": -3.5057126841563\n            },\n            {\n                \"lat\": 40.391429608759,\n                \"long\": -3.5057283517076\n            },\n            {\n                \"lat\": 40.391309280166,\n                \"long\": -3.5058030957848\n            },\n            {\n                \"lat\": 40.391288502627,\n                \"long\": -3.505816019001\n            },\n            {\n                \"lat\": 40.391100430988,\n                \"long\": -3.5059100505323\n            },\n            {\n                \"lat\": 40.391042123049,\n                \"long\": -3.5059349466612\n            },\n            {\n                \"lat\": 40.390896803877,\n                \"long\": -3.5059971312585\n            },\n            {\n                \"lat\": 40.390662417051,\n                \"long\": -3.5061341745527\n            },\n            {\n                \"lat\": 40.39055682985,\n                \"long\": -3.5061959489227\n            },\n            {\n                \"lat\": 40.390444431823,\n                \"long\": -3.5062700436596\n            },\n            {\n                \"lat\": 40.390324017339,\n                \"long\": -3.5064054645036\n            },\n            {\n                \"lat\": 40.390292743037,\n                \"long\": -3.506428912892\n            },\n            {\n                \"lat\": 40.390211573765,\n                \"long\": -3.5064899268089\n            },\n            {\n                \"lat\": 40.390080316618,\n                \"long\": -3.5065708309786\n            },\n            {\n                \"lat\": 40.389892349407,\n                \"long\": -3.5066614426665\n            },\n            {\n                \"lat\": 40.389837392641,\n                \"long\": -3.506682239012\n            },\n            {\n                \"lat\": 40.389618287277,\n                \"long\": -3.5067651938244\n            },\n            {\n                \"lat\": 40.389485236708,\n                \"long\": -3.5068235791799\n            },\n            {\n                \"lat\": 40.389479719109,\n                \"long\": -3.5068286041936\n            },\n            {\n                \"lat\": 40.389438022581,\n                \"long\": -3.5068661126784\n            },\n            {\n                \"lat\": 40.389385381959,\n                \"long\": -3.5069134361557\n            },\n            {\n                \"lat\": 40.389200913763,\n                \"long\": -3.5068428914371\n            },\n            {\n                \"lat\": 40.389099100979,\n                \"long\": -3.5068039538497\n            },\n            {\n                \"lat\": 40.389009580209,\n                \"long\": -3.5067765372368\n            },\n            {\n                \"lat\": 40.388601562492,\n                \"long\": -3.5066517696748\n            },\n            {\n                \"lat\": 40.388716586212,\n                \"long\": -3.506327915939\n            },\n            {\n                \"lat\": 40.389245437842,\n                \"long\": -3.504840835414\n            },\n            {\n                \"lat\": 40.391866292215,\n                \"long\": -3.5037858256806\n            },\n            {\n                \"lat\": 40.392002588399,\n                \"long\": -3.5036024419641\n            },\n            {\n                \"lat\": 40.392022524843,\n                \"long\": -3.5035757258922\n            },\n            {\n                \"lat\": 40.392041374062,\n                \"long\": -3.5035504156322\n            },\n            {\n                \"lat\": 40.39253127525,\n                \"long\": -3.5028915178088\n            },\n            {\n                \"lat\": 40.392615643533,\n                \"long\": -3.5027780877592\n            },\n            {\n                \"lat\": 40.392598379928,\n                \"long\": -3.5027495627808\n            },\n            {\n                \"lat\": 40.392589971038,\n                \"long\": -3.5027358321814\n            },\n            {\n                \"lat\": 40.392561792443,\n                \"long\": -3.5026897875016\n            },\n            {\n                \"lat\": 40.392544437702,\n                \"long\": -3.502661497547\n            },\n            {\n                \"lat\": 40.392490042918,\n                \"long\": -3.5025739004013\n            },\n            {\n                \"lat\": 40.392451480051,\n                \"long\": -3.5025125788669\n            },\n            {\n                \"lat\": 40.392435196088,\n                \"long\": -3.5024866535204\n            },\n            {\n                \"lat\": 40.392379897213,\n                \"long\": -3.5023997569051\n            },\n            {\n                \"lat\": 40.392324325958,\n                \"long\": -3.5023133297191\n            },\n            {\n                \"lat\": 40.392268302149,\n                \"long\": -3.5022273706236\n            },\n            {\n                \"lat\": 40.392252907747,\n                \"long\": -3.5022040442306\n            },\n            {\n                \"lat\": 40.390424919575,\n                \"long\": -3.5016931284819\n            },\n            {\n                \"lat\": 40.389961041367,\n                \"long\": -3.5028333993601\n            },\n            {\n                \"lat\": 40.389924069386,\n                \"long\": -3.5029242019314\n            },\n            {\n                \"lat\": 40.389808222889,\n                \"long\": -3.5029009537472\n            },\n            {\n                \"lat\": 40.389617665977,\n                \"long\": -3.5028626577202\n            },\n            {\n                \"lat\": 40.389599663141,\n                \"long\": -3.5028591069534\n            },\n            {\n                \"lat\": 40.389498939191,\n                \"long\": -3.5028387992165\n            },\n            {\n                \"lat\": 40.389403307163,\n                \"long\": -3.50284916328\n            },\n            {\n                \"lat\": 40.389288926995,\n                \"long\": -3.5028616264973\n            },\n            {\n                \"lat\": 40.389257830589,\n                \"long\": -3.5028650477022\n            },\n            {\n                \"lat\": 40.389202839729,\n                \"long\": -3.5028731218923\n            },\n            {\n                \"lat\": 40.389168402363,\n                \"long\": -3.5028782855705\n            },\n            {\n                \"lat\": 40.388955018958,\n                \"long\": -3.5029098063644\n            },\n            {\n                \"lat\": 40.388945282741,\n                \"long\": -3.5029112656259\n            },\n            {\n                \"lat\": 40.388725408337,\n                \"long\": -3.5029437983263\n            },\n            {\n                \"lat\": 40.388629113998,\n                \"long\": -3.5029407255877\n            },\n            {\n                \"lat\": 40.388572509831,\n                \"long\": -3.5029261659893\n            },\n            {\n                \"lat\": 40.388548572427,\n                \"long\": -3.5029199790555\n            },\n            {\n                \"lat\": 40.38845790875,\n                \"long\": -3.50288584352\n            },\n            {\n                \"lat\": 40.388346655348,\n                \"long\": -3.5028215106577\n            },\n            {\n                \"lat\": 40.38833408548,\n                \"long\": -3.5028116380579\n            },\n            {\n                \"lat\": 40.388327261808,\n                \"long\": -3.5028062853805\n            },\n            {\n                \"lat\": 40.388297453346,\n                \"long\": -3.5027828530375\n            },\n            {\n                \"lat\": 40.388277790559,\n                \"long\": -3.5027673901392\n            },\n            {\n                \"lat\": 40.388266738872,\n                \"long\": -3.5027605921841\n            },\n            {\n                \"lat\": 40.388212109002,\n                \"long\": -3.502727078398\n            },\n            {\n                \"lat\": 40.388177157285,\n                \"long\": -3.5027054930166\n            },\n            {\n                \"lat\": 40.38815658131,\n                \"long\": -3.5026928510689\n            },\n            {\n                \"lat\": 40.388106466086,\n                \"long\": -3.5026570145506\n            },\n            {\n                \"lat\": 40.388076019291,\n                \"long\": -3.5026353449094\n            },\n            {\n                \"lat\": 40.38800944861,\n                \"long\": -3.5025715806006\n            },\n            {\n                \"lat\": 40.38798432726,\n                \"long\": -3.5025475942103\n            },\n            {\n                \"lat\": 40.387955035743,\n                \"long\": -3.5025088493373\n            },\n            {\n                \"lat\": 40.38790039404,\n                \"long\": -3.5024365730584\n            },\n            {\n                \"lat\": 40.387865176091,\n                \"long\": -3.5023725707882\n            },\n            {\n                \"lat\": 40.387831924189,\n                \"long\": -3.5023122356057\n            },\n            {\n                \"lat\": 40.387741574932,\n                \"long\": -3.5021641719628\n            },\n            {\n                \"lat\": 40.387720650772,\n                \"long\": -3.502127963748\n            },\n            {\n                \"lat\": 40.387701782778,\n                \"long\": -3.5020954232325\n            },\n            {\n                \"lat\": 40.387604403182,\n                \"long\": -3.5019272786687\n            },\n            {\n                \"lat\": 40.387508153986,\n                \"long\": -3.5017477145091\n            },\n            {\n                \"lat\": 40.38744568507,\n                \"long\": -3.5016313168821\n            },\n            {\n                \"lat\": 40.387402636322,\n                \"long\": -3.5015240177671\n            },\n            {\n                \"lat\": 40.387384078616,\n                \"long\": -3.5014614360152\n            },\n            {\n                \"lat\": 40.387367386171,\n                \"long\": -3.5014049947192\n            },\n            {\n                \"lat\": 40.387352883917,\n                \"long\": -3.5013420896458\n            },\n            {\n                \"lat\": 40.387323439585,\n                \"long\": -3.5012138021212\n            },\n            {\n                \"lat\": 40.387299517058,\n                \"long\": -3.5010794290466\n            },\n            {\n                \"lat\": 40.387293699113,\n                \"long\": -3.5009874871871\n            },\n            {\n                \"lat\": 40.387291171013,\n                \"long\": -3.5009471743922\n            },\n            {\n                \"lat\": 40.387305804537,\n                \"long\": -3.5008134405136\n            },\n            {\n                \"lat\": 40.38730711833,\n                \"long\": -3.5008013148954\n            },\n            {\n                \"lat\": 40.387309366682,\n                \"long\": -3.5007814201492\n            },\n            {\n                \"lat\": 40.387295581096,\n                \"long\": -3.5007817893225\n            },\n            {\n                \"lat\": 40.38725089055,\n                \"long\": -3.5007829899688\n            },\n            {\n                \"lat\": 40.387204537593,\n                \"long\": -3.5007936038011\n            },\n            {\n                \"lat\": 40.387144657578,\n                \"long\": -3.5008072985308\n            },\n            {\n                \"lat\": 40.387009382129,\n                \"long\": -3.5008184318722\n            },\n            {\n                \"lat\": 40.386975765837,\n                \"long\": -3.500821246156\n            },\n            {\n                \"lat\": 40.386930729732,\n                \"long\": -3.5008190274834\n            },\n            {\n                \"lat\": 40.386887429799,\n                \"long\": -3.5008111664003\n            },\n            {\n                \"lat\": 40.386750599302,\n                \"long\": -3.5007861180662\n            },\n            {\n                \"lat\": 40.386651431929,\n                \"long\": -3.5007599349554\n            },\n            {\n                \"lat\": 40.386620295984,\n                \"long\": -3.5007516927581\n            },\n            {\n                \"lat\": 40.386490915474,\n                \"long\": -3.5007122082663\n            },\n            {\n                \"lat\": 40.386432874166,\n                \"long\": -3.5006965800133\n            },\n            {\n                \"lat\": 40.386297982927,\n                \"long\": -3.5006605894517\n            },\n            {\n                \"lat\": 40.386260712791,\n                \"long\": -3.5006541869994\n            },\n            {\n                \"lat\": 40.386194183766,\n                \"long\": -3.5006429730534\n            },\n            {\n                \"lat\": 40.386128914959,\n                \"long\": -3.5006320040945\n            },\n            {\n                \"lat\": 40.386086693009,\n                \"long\": -3.5006248581117\n            },\n            {\n                \"lat\": 40.386076086021,\n                \"long\": -3.5006193600075\n            },\n            {\n                \"lat\": 40.386029251887,\n                \"long\": -3.5005954499203\n            },\n            {\n                \"lat\": 40.386021251856,\n                \"long\": -3.5005912671091\n            },\n            {\n                \"lat\": 40.385781834207,\n                \"long\": -3.5005807762331\n            },\n            {\n                \"lat\": 40.385753010457,\n                \"long\": -3.5005795025025\n            },\n            {\n                \"lat\": 40.385575208449,\n                \"long\": -3.5005497925947\n            },\n            {\n                \"lat\": 40.385553511893,\n                \"long\": -3.5005462153241\n            },\n            {\n                \"lat\": 40.385342336305,\n                \"long\": -3.5005256838051\n            },\n            {\n                \"lat\": 40.385239405355,\n                \"long\": -3.5005156144851\n            },\n            {\n                \"lat\": 40.38522782727,\n                \"long\": -3.5005679565944\n            },\n            {\n                \"lat\": 40.384293029359,\n                \"long\": -3.5048392044158\n            },\n            {\n                \"lat\": 40.384285215993,\n                \"long\": -3.5048748436192\n            },\n            {\n                \"lat\": 40.384279333053,\n                \"long\": -3.5049016612054\n            },\n            {\n                \"lat\": 40.384607343285,\n                \"long\": -3.5050902567965\n            },\n            {\n                \"lat\": 40.383120465995,\n                \"long\": -3.5057722367663\n            },\n            {\n                \"lat\": 40.382680567866,\n                \"long\": -3.5059739376105\n            },\n            {\n                \"lat\": 40.382635792716,\n                \"long\": -3.5059944551083\n            },\n            {\n                \"lat\": 40.382622073485,\n                \"long\": -3.506000242994\n            },\n            {\n                \"lat\": 40.382576131768,\n                \"long\": -3.5059373417755\n            },\n            {\n                \"lat\": 40.382519085,\n                \"long\": -3.5058592778185\n            },\n            {\n                \"lat\": 40.382333144096,\n                \"long\": -3.5056308665911\n            },\n            {\n                \"lat\": 40.382140302464,\n                \"long\": -3.5053940405481\n            },\n            {\n                \"lat\": 40.382127848115,\n                \"long\": -3.5053783965677\n            },\n            {\n                \"lat\": 40.381971945407,\n                \"long\": -3.5051823743931\n            },\n            {\n                \"lat\": 40.381963023455,\n                \"long\": -3.5051211645616\n            },\n            {\n                \"lat\": 40.381954983784,\n                \"long\": -3.5050435858027\n            },\n            {\n                \"lat\": 40.381791809577,\n                \"long\": -3.5034776240072\n            },\n            {\n                \"lat\": 40.381165105993,\n                \"long\": -3.5025103473989\n            },\n            {\n                \"lat\": 40.381124209353,\n                \"long\": -3.5024470161611\n            },\n            {\n                \"lat\": 40.381085548515,\n                \"long\": -3.5023874714673\n            },\n            {\n                \"lat\": 40.380585468058,\n                \"long\": -3.5016155358063\n            },\n            {\n                \"lat\": 40.379229709838,\n                \"long\": -3.5005275660572\n            },\n            {\n                \"lat\": 40.379187400797,\n                \"long\": -3.5005197134401\n            },\n            {\n                \"lat\": 40.377965837933,\n                \"long\": -3.5002933277019\n            },\n            {\n                \"lat\": 40.377859558763,\n                \"long\": -3.5002866514562\n            },\n            {\n                \"lat\": 40.377138121578,\n                \"long\": -3.5002412629148\n            },\n            {\n                \"lat\": 40.377111186656,\n                \"long\": -3.5003239957293\n            },\n            {\n                \"lat\": 40.376718851101,\n                \"long\": -3.5015272527507\n            },\n            {\n                \"lat\": 40.376712641799,\n                \"long\": -3.5015464081866\n            },\n            {\n                \"lat\": 40.376704607218,\n                \"long\": -3.5015709689048\n            },\n            {\n                \"lat\": 40.37659449092,\n                \"long\": -3.5019088281044\n            },\n            {\n                \"lat\": 40.376442462672,\n                \"long\": -3.5023753659882\n            },\n            {\n                \"lat\": 40.37600146253,\n                \"long\": -3.502769663025\n            },\n            {\n                \"lat\": 40.375989252418,\n                \"long\": -3.5027806453938\n            },\n            {\n                \"lat\": 40.375972520459,\n                \"long\": -3.5027955993187\n            },\n            {\n                \"lat\": 40.37513193917,\n                \"long\": -3.5035471438517\n            },\n            {\n                \"lat\": 40.374984494438,\n                \"long\": -3.5036838692724\n            },\n            {\n                \"lat\": 40.374752176295,\n                \"long\": -3.5038635468612\n            },\n            {\n                \"lat\": 40.374372050811,\n                \"long\": -3.5040562574334\n            },\n            {\n                \"lat\": 40.374002725365,\n                \"long\": -3.5042514022816\n            },\n            {\n                \"lat\": 40.373733495652,\n                \"long\": -3.5044249103384\n            },\n            {\n                \"lat\": 40.373629515992,\n                \"long\": -3.5045107143794\n            },\n            {\n                \"lat\": 40.373570745075,\n                \"long\": -3.5045591609859\n            },\n            {\n                \"lat\": 40.373400499359,\n                \"long\": -3.5047593200982\n            },\n            {\n                \"lat\": 40.373243787175,\n                \"long\": -3.5049548674513\n            },\n            {\n                \"lat\": 40.37304694628,\n                \"long\": -3.5052621364101\n            },\n            {\n                \"lat\": 40.372844411385,\n                \"long\": -3.5056352077188\n            },\n            {\n                \"lat\": 40.372735683934,\n                \"long\": -3.5058794055856\n            },\n            {\n                \"lat\": 40.372626955971,\n                \"long\": -3.5061236026638\n            },\n            {\n                \"lat\": 40.372497544905,\n                \"long\": -3.5064618786304\n            },\n            {\n                \"lat\": 40.372466357573,\n                \"long\": -3.5065888616466\n            },\n            {\n                \"lat\": 40.372448760819,\n                \"long\": -3.506698277389\n            },\n            {\n                \"lat\": 40.372453820339,\n                \"long\": -3.5067772366179\n            },\n            {\n                \"lat\": 40.37247459626,\n                \"long\": -3.506949723516\n            },\n            {\n                \"lat\": 40.372476422546,\n                \"long\": -3.506964696922\n            },\n            {\n                \"lat\": 40.372476848721,\n                \"long\": -3.5069702363902\n            },\n            {\n                \"lat\": 40.372478202357,\n                \"long\": -3.5069902713574\n            },\n            {\n                \"lat\": 40.372656288209,\n                \"long\": -3.509517449499\n            },\n            {\n                \"lat\": 40.372609473905,\n                \"long\": -3.5105312971808\n            },\n            {\n                \"lat\": 40.372583848663,\n                \"long\": -3.5106218045961\n            },\n            {\n                \"lat\": 40.372542080222,\n                \"long\": -3.5106956990269\n            },\n            {\n                \"lat\": 40.372456996359,\n                \"long\": -3.5107857573497\n            },\n            {\n                \"lat\": 40.372344199541,\n                \"long\": -3.5108882099985\n            },\n            {\n                \"lat\": 40.372113540297,\n                \"long\": -3.5110569137303\n            },\n            {\n                \"lat\": 40.371876553227,\n                \"long\": -3.5111896419363\n            },\n            {\n                \"lat\": 40.371771335467,\n                \"long\": -3.5112486851362\n            },\n            {\n                \"lat\": 40.371586730827,\n                \"long\": -3.51135212451\n            },\n            {\n                \"lat\": 40.371180650417,\n                \"long\": -3.5116050145621\n            },\n            {\n                \"lat\": 40.371146056784,\n                \"long\": -3.5116453907639\n            },\n            {\n                \"lat\": 40.370932968522,\n                \"long\": -3.5118945549277\n            },\n            {\n                \"lat\": 40.370866765554,\n                \"long\": -3.5119523601847\n            },\n            {\n                \"lat\": 40.370796947265,\n                \"long\": -3.5119720917549\n            },\n            {\n                \"lat\": 40.370639866853,\n                \"long\": -3.512003884208\n            },\n            {\n                \"lat\": 40.370513934407,\n                \"long\": -3.5120003397861\n            },\n            {\n                \"lat\": 40.370466055225,\n                \"long\": -3.5119891408032\n            },\n            {\n                \"lat\": 40.370288765183,\n                \"long\": -3.5119461017366\n            },\n            {\n                \"lat\": 40.37003239313,\n                \"long\": -3.5118581759506\n            },\n            {\n                \"lat\": 40.36970335668,\n                \"long\": -3.5117002061322\n            },\n            {\n                \"lat\": 40.369350990709,\n                \"long\": -3.5115208597057\n            },\n            {\n                \"lat\": 40.368940186564,\n                \"long\": -3.5113139825187\n            },\n            {\n                \"lat\": 40.368544811594,\n                \"long\": -3.5110813114563\n            },\n            {\n                \"lat\": 40.368024681013,\n                \"long\": -3.5107416944271\n            },\n            {\n                \"lat\": 40.367598080469,\n                \"long\": -3.5104393014164\n            },\n            {\n                \"lat\": 40.367492725052,\n                \"long\": -3.510366304786\n            },\n            {\n                \"lat\": 40.367486438073,\n                \"long\": -3.510361899342\n            },\n            {\n                \"lat\": 40.367479522033,\n                \"long\": -3.5103571358008\n            },\n            {\n                \"lat\": 40.36715977274,\n                \"long\": -3.5101356461415\n            },\n            {\n                \"lat\": 40.367001600832,\n                \"long\": -3.5099860463717\n            },\n            {\n                \"lat\": 40.36692065631,\n                \"long\": -3.5098525766153\n            },\n            {\n                \"lat\": 40.366766043161,\n                \"long\": -3.5096926399338\n            },\n            {\n                \"lat\": 40.366611615777,\n                \"long\": -3.5095722804244\n            },\n            {\n                \"lat\": 40.366539249703,\n                \"long\": -3.5095160242097\n            },\n            {\n                \"lat\": 40.366371926293,\n                \"long\": -3.509357642482\n            },\n            {\n                \"lat\": 40.36615407347,\n                \"long\": -3.5092373960247\n            },\n            {\n                \"lat\": 40.365949828702,\n                \"long\": -3.5091775569685\n            },\n            {\n                \"lat\": 40.365645081256,\n                \"long\": -3.5090882234937\n            },\n            {\n                \"lat\": 40.365474937001,\n                \"long\": -3.5090384176914\n            },\n            {\n                \"lat\": 40.365195486402,\n                \"long\": -3.5089124104967\n            },\n            {\n                \"lat\": 40.364893809948,\n                \"long\": -3.5086573860672\n            },\n            {\n                \"lat\": 40.364847225324,\n                \"long\": -3.5086180507835\n            },\n            {\n                \"lat\": 40.364606503611,\n                \"long\": -3.5084533525754\n            },\n            {\n                \"lat\": 40.364377938497,\n                \"long\": -3.5083309117316\n            },\n            {\n                \"lat\": 40.364169001688,\n                \"long\": -3.5081905990072\n            },\n            {\n                \"lat\": 40.364154622672,\n                \"long\": -3.508182482079\n            },\n            {\n                \"lat\": 40.363941994165,\n                \"long\": -3.5080621648629\n            },\n            {\n                \"lat\": 40.363746937734,\n                \"long\": -3.5080024003556\n            },\n            {\n                \"lat\": 40.363479339423,\n                \"long\": -3.5079056984782\n            },\n            {\n                \"lat\": 40.363334575921,\n                \"long\": -3.5078819987484\n            },\n            {\n                \"lat\": 40.363222762678,\n                \"long\": -3.5078636108148\n            },\n            {\n                \"lat\": 40.362998415981,\n                \"long\": -3.5078267119545\n            },\n            {\n                \"lat\": 40.362633432339,\n                \"long\": -3.5077906424845\n            },\n            {\n                \"lat\": 40.362523326846,\n                \"long\": -3.5078141958828\n            },\n            {\n                \"lat\": 40.362489510441,\n                \"long\": -3.5078214797727\n            },\n            {\n                \"lat\": 40.362456776654,\n                \"long\": -3.5078284184526\n            },\n            {\n                \"lat\": 40.362324037134,\n                \"long\": -3.5078567484432\n            },\n            {\n                \"lat\": 40.362133292711,\n                \"long\": -3.507861323546\n            },\n            {\n                \"lat\": 40.362013661879,\n                \"long\": -3.50783828411\n            },\n            {\n                \"lat\": 40.361938949169,\n                \"long\": -3.507823826042\n            },\n            {\n                \"lat\": 40.361938138887,\n                \"long\": -3.5078237021871\n            },\n            {\n                \"lat\": 40.361620102061,\n                \"long\": -3.507662438345\n            },\n            {\n                \"lat\": 40.361606362926,\n                \"long\": -3.5076522067057\n            },\n            {\n                \"lat\": 40.36140395547,\n                \"long\": -3.5075019401029\n            },\n            {\n                \"lat\": 40.361312562306,\n                \"long\": -3.5074289417374\n            },\n            {\n                \"lat\": 40.36119558263,\n                \"long\": -3.5073354947239\n            },\n            {\n                \"lat\": 40.360968992927,\n                \"long\": -3.5072142564803\n            },\n            {\n                \"lat\": 40.360856102648,\n                \"long\": -3.5071538173568\n            },\n            {\n                \"lat\": 40.360527605193,\n                \"long\": -3.5069946008303\n            },\n            {\n                \"lat\": 40.360372935662,\n                \"long\": -3.5068465804811\n            },\n            {\n                \"lat\": 40.360167425366,\n                \"long\": -3.5067051287057\n            },\n            {\n                \"lat\": 40.359938561409,\n                \"long\": -3.5065476038816\n            },\n            {\n                \"lat\": 40.359653259958,\n                \"long\": -3.5063785874101\n            },\n            {\n                \"lat\": 40.359410221897,\n                \"long\": -3.5061865699522\n            },\n            {\n                \"lat\": 40.359208392612,\n                \"long\": -3.5060272487071\n            },\n            {\n                \"lat\": 40.358983353775,\n                \"long\": -3.5057982708885\n            },\n            {\n                \"lat\": 40.358870228565,\n                \"long\": -3.505626542102\n            },\n            {\n                \"lat\": 40.358727186289,\n                \"long\": -3.5053944104375\n            },\n            {\n                \"lat\": 40.358621000401,\n                \"long\": -3.5052220281639\n            },\n            {\n                \"lat\": 40.358422732341,\n                \"long\": -3.5048244923391\n            },\n            {\n                \"lat\": 40.358287455297,\n                \"long\": -3.5044434447984\n            },\n            {\n                \"lat\": 40.358260529748,\n                \"long\": -3.5043167609322\n            },\n            {\n                \"lat\": 40.358247020849,\n                \"long\": -3.5042536542298\n            },\n            {\n                \"lat\": 40.35819678586,\n                \"long\": -3.5040179790602\n            },\n            {\n                \"lat\": 40.358190749784,\n                \"long\": -3.5039352608251\n            },\n            {\n                \"lat\": 40.358157593299,\n                \"long\": -3.5034807821772\n            },\n            {\n                \"lat\": 40.358191579728,\n                \"long\": -3.5031031167798\n            },\n            {\n                \"lat\": 40.358208732996,\n                \"long\": -3.5028877283866\n            },\n            {\n                \"lat\": 40.358229122905,\n                \"long\": -3.5026323227039\n            },\n            {\n                \"lat\": 40.358205498248,\n                \"long\": -3.5024089764398\n            },\n            {\n                \"lat\": 40.358254185872,\n                \"long\": -3.5021720346567\n            },\n            {\n                \"lat\": 40.358311776497,\n                \"long\": -3.5020217183523\n            },\n            {\n                \"lat\": 40.358449607983,\n                \"long\": -3.5017954471398\n            },\n            {\n                \"lat\": 40.3584922543,\n                \"long\": -3.5017255731415\n            },\n            {\n                \"lat\": 40.358569835107,\n                \"long\": -3.5015982512318\n            },\n            {\n                \"lat\": 40.358737552292,\n                \"long\": -3.501419071812\n            },\n            {\n                \"lat\": 40.3589440419,\n                \"long\": -3.5013361608173\n            },\n            {\n                \"lat\": 40.359004994622,\n                \"long\": -3.5013244820345\n            },\n            {\n                \"lat\": 40.359167204029,\n                \"long\": -3.5012935323438\n            },\n            {\n                \"lat\": 40.359336054739,\n                \"long\": -3.5012476748782\n            },\n            {\n                \"lat\": 40.359627935789,\n                \"long\": -3.5011683392246\n            },\n            {\n                \"lat\": 40.359865294005,\n                \"long\": -3.501051383544\n            },\n            {\n                \"lat\": 40.360103421502,\n                \"long\": -3.5008399799604\n            },\n            {\n                \"lat\": 40.36017319317,\n                \"long\": -3.5007057654892\n            },\n            {\n                \"lat\": 40.360189745005,\n                \"long\": -3.5006491219824\n            },\n            {\n                \"lat\": 40.36023254022,\n                \"long\": -3.5005030482355\n            },\n            {\n                \"lat\": 40.360342658964,\n                \"long\": -3.5002886932025\n            },\n            {\n                \"lat\": 40.360458868227,\n                \"long\": -3.5000825087552\n            },\n            {\n                \"lat\": 40.360654202719,\n                \"long\": -3.4998080111054\n            },\n            {\n                \"lat\": 40.360723826695,\n                \"long\": -3.4997494034217\n            },\n            {\n                \"lat\": 40.360816688476,\n                \"long\": -3.4996712991346\n            },\n            {\n                \"lat\": 40.360898067191,\n                \"long\": -3.4996027672477\n            },\n            {\n                \"lat\": 40.360938402536,\n                \"long\": -3.499567026467\n            },\n            {\n                \"lat\": 40.361083825594,\n                \"long\": -3.4994384315621\n            },\n            {\n                \"lat\": 40.361094135913,\n                \"long\": -3.4994292035602\n            },\n            {\n                \"lat\": 40.361441850954,\n                \"long\": -3.4990626662183\n            },\n            {\n                \"lat\": 40.361564211185,\n                \"long\": -3.4989337814799\n            },\n            {\n                \"lat\": 40.36185267728,\n                \"long\": -3.4987267404871\n            },\n            {\n                \"lat\": 40.362148904764,\n                \"long\": -3.4986000775455\n            },\n            {\n                \"lat\": 40.36226284146,\n                \"long\": -3.4985651132933\n            },\n            {\n                \"lat\": 40.362386069998,\n                \"long\": -3.4985272729867\n            },\n            {\n                \"lat\": 40.362666262674,\n                \"long\": -3.4984629113941\n            },\n            {\n                \"lat\": 40.362938172112,\n                \"long\": -3.4982718785456\n            },\n            {\n                \"lat\": 40.363013648764,\n                \"long\": -3.4981929350574\n            },\n            {\n                \"lat\": 40.363122429757,\n                \"long\": -3.498079021269\n            },\n            {\n                \"lat\": 40.363173018724,\n                \"long\": -3.4980261584528\n            },\n            {\n                \"lat\": 40.363369508857,\n                \"long\": -3.4977541257465\n            },\n            {\n                \"lat\": 40.363477995767,\n                \"long\": -3.4975618865015\n            },\n            {\n                \"lat\": 40.363558725338,\n                \"long\": -3.4973716804039\n            },\n            {\n                \"lat\": 40.363604050493,\n                \"long\": -3.4972648358704\n            },\n            {\n                \"lat\": 40.36370407831,\n                \"long\": -3.4968814973997\n            },\n            {\n                \"lat\": 40.363781408723,\n                \"long\": -3.4964335667156\n            },\n            {\n                \"lat\": 40.363785053851,\n                \"long\": -3.4959409281936\n            },\n            {\n                \"lat\": 40.363781785982,\n                \"long\": -3.4957995706818\n            },\n            {\n                \"lat\": 40.363770808271,\n                \"long\": -3.4953128317606\n            },\n            {\n                \"lat\": 40.363716583003,\n                \"long\": -3.4950369524535\n            },\n            {\n                \"lat\": 40.36363710064,\n                \"long\": -3.4949156488495\n            },\n            {\n                \"lat\": 40.363610941696,\n                \"long\": -3.4949021486575\n            },\n            {\n                \"lat\": 40.363546488498,\n                \"long\": -3.4948688173497\n            },\n            {\n                \"lat\": 40.363471427464,\n                \"long\": -3.4948301085536\n            },\n            {\n                \"lat\": 40.363106360872,\n                \"long\": -3.4945175683688\n            },\n            {\n                \"lat\": 40.363075249044,\n                \"long\": -3.4944824791023\n            },\n            {\n                \"lat\": 40.36287064309,\n                \"long\": -3.494252380085\n            },\n            {\n                \"lat\": 40.362685584428,\n                \"long\": -3.494001696574\n            },\n            {\n                \"lat\": 40.36250511695,\n                \"long\": -3.4936883912346\n            },\n            {\n                \"lat\": 40.36245354339,\n                \"long\": -3.4935291356296\n            },\n            {\n                \"lat\": 40.36244782617,\n                \"long\": -3.4934755060128\n            },\n            {\n                \"lat\": 40.362429892695,\n                \"long\": -3.4933077805313\n            },\n            {\n                \"lat\": 40.362430621466,\n                \"long\": -3.4931368934123\n            },\n            {\n                \"lat\": 40.362414447883,\n                \"long\": -3.4929577566487\n            },\n            {\n                \"lat\": 40.362340591611,\n                \"long\": -3.492572681751\n            },\n            {\n                \"lat\": 40.362329315822,\n                \"long\": -3.4925337337805\n            },\n            {\n                \"lat\": 40.362273910612,\n                \"long\": -3.4923430055687\n            },\n            {\n                \"lat\": 40.36226562027,\n                \"long\": -3.4921317740698\n            },\n            {\n                \"lat\": 40.362264523781,\n                \"long\": -3.4921142175706\n            },\n            {\n                \"lat\": 40.36223973472,\n                \"long\": -3.4917150146061\n            },\n            {\n                \"lat\": 40.3621025673,\n                \"long\": -3.4914082739136\n            },\n            {\n                \"lat\": 40.362087701086,\n                \"long\": -3.4913873197843\n            },\n            {\n                \"lat\": 40.361965010504,\n                \"long\": -3.4912142421424\n            },\n            {\n                \"lat\": 40.361836300929,\n                \"long\": -3.4911007154026\n            },\n            {\n                \"lat\": 40.361719450801,\n                \"long\": -3.4909524139168\n            },\n            {\n                \"lat\": 40.361676796362,\n                \"long\": -3.4908983993912\n            },\n            {\n                \"lat\": 40.361557411549,\n                \"long\": -3.4906891910102\n            },\n            {\n                \"lat\": 40.361554639274,\n                \"long\": -3.4906843421712\n            },\n            {\n                \"lat\": 40.361462093335,\n                \"long\": -3.4903920628774\n            },\n            {\n                \"lat\": 40.36144475033,\n                \"long\": -3.4901264747978\n            },\n            {\n                \"lat\": 40.361442968496,\n                \"long\": -3.4900792345536\n            },\n            {\n                \"lat\": 40.361428158302,\n                \"long\": -3.4896834070364\n            },\n            {\n                \"lat\": 40.361410880803,\n                \"long\": -3.4890398834197\n            },\n            {\n                \"lat\": 40.361397729308,\n                \"long\": -3.4885491425687\n            },\n            {\n                \"lat\": 40.361372071994,\n                \"long\": -3.4880965881993\n            },\n            {\n                \"lat\": 40.36136460817,\n                \"long\": -3.4879652165993\n            },\n            {\n                \"lat\": 40.361368174933,\n                \"long\": -3.4874826053196\n            },\n            {\n                \"lat\": 40.361414277051,\n                \"long\": -3.4871250226001\n            },\n            {\n                \"lat\": 40.361467934522,\n                \"long\": -3.4867915196226\n            },\n            {\n                \"lat\": 40.361538674201,\n                \"long\": -3.4862947862359\n            },\n            {\n                \"lat\": 40.361555290336,\n                \"long\": -3.4861783092531\n            },\n            {\n                \"lat\": 40.361601785643,\n                \"long\": -3.4857261547835\n            },\n            {\n                \"lat\": 40.361609321357,\n                \"long\": -3.4853904345758\n            },\n            {\n                \"lat\": 40.361618177696,\n                \"long\": -3.484997367704\n            },\n            {\n                \"lat\": 40.361621485272,\n                \"long\": -3.4848531179634\n            },\n            {\n                \"lat\": 40.361588003584,\n                \"long\": -3.4845874150821\n            },\n            {\n                \"lat\": 40.361503144306,\n                \"long\": -3.4842630466328\n            },\n            {\n                \"lat\": 40.361368773009,\n                \"long\": -3.4840369016198\n            },\n            {\n                \"lat\": 40.361215952306,\n                \"long\": -3.4839136774598\n            },\n            {\n                \"lat\": 40.361207781786,\n                \"long\": -3.4839070237204\n            },\n            {\n                \"lat\": 40.360899465306,\n                \"long\": -3.4836753974183\n            },\n            {\n                \"lat\": 40.360633711272,\n                \"long\": -3.483520511643\n            },\n            {\n                \"lat\": 40.360504276758,\n                \"long\": -3.4834708291824\n            },\n            {\n                \"lat\": 40.360329688821,\n                \"long\": -3.4834037474505\n            },\n            {\n                \"lat\": 40.36022154091,\n                \"long\": -3.4833696455743\n            },\n            {\n                \"lat\": 40.360154870458,\n                \"long\": -3.4833486771361\n            },\n            {\n                \"lat\": 40.360068586149,\n                \"long\": -3.4833214445492\n            },\n            {\n                \"lat\": 40.359975733686,\n                \"long\": -3.4832921630169\n            },\n            {\n                \"lat\": 40.359863626729,\n                \"long\": -3.4832568555223\n            },\n            {\n                \"lat\": 40.359671443694,\n                \"long\": -3.4831962445452\n            },\n            {\n                \"lat\": 40.359651639322,\n                \"long\": -3.4831924522594\n            },\n            {\n                \"lat\": 40.35945359903,\n                \"long\": -3.4831537051577\n            },\n            {\n                \"lat\": 40.3593706923,\n                \"long\": -3.4831374498609\n            },\n            {\n                \"lat\": 40.359241039529,\n                \"long\": -3.4830968358239\n            },\n            {\n                \"lat\": 40.359226284082,\n                \"long\": -3.4830921374698\n            },\n            {\n                \"lat\": 40.359030062976,\n                \"long\": -3.4829845086058\n            },\n            {\n                \"lat\": 40.358951232262,\n                \"long\": -3.4829414312402\n            },\n            {\n                \"lat\": 40.358841204212,\n                \"long\": -3.4829260427403\n            },\n            {\n                \"lat\": 40.358616735201,\n                \"long\": -3.4828948811042\n            },\n            {\n                \"lat\": 40.35858549145,\n                \"long\": -3.4828905362778\n            },\n            {\n                \"lat\": 40.358399422177,\n                \"long\": -3.4828760186725\n            },\n            {\n                \"lat\": 40.358302244908,\n                \"long\": -3.482868377042\n            },\n            {\n                \"lat\": 40.358185945724,\n                \"long\": -3.48288768572\n            },\n            {\n                \"lat\": 40.357977508465,\n                \"long\": -3.4829223533945\n            },\n            {\n                \"lat\": 40.357962434551,\n                \"long\": -3.4829291941487\n            },\n            {\n                \"lat\": 40.357749589567,\n                \"long\": -3.4830269535208\n            },\n            {\n                \"lat\": 40.357701478063,\n                \"long\": -3.4830491037576\n            },\n            {\n                \"lat\": 40.35751946317,\n                \"long\": -3.4831423717671\n            },\n            {\n                \"lat\": 40.35728752109,\n                \"long\": -3.4832610737403\n            },\n            {\n                \"lat\": 40.35715552373,\n                \"long\": -3.4833287891739\n            },\n            {\n                \"lat\": 40.357043660527,\n                \"long\": -3.4833860491719\n            },\n            {\n                \"lat\": 40.356857401804,\n                \"long\": -3.4834815226259\n            },\n            {\n                \"lat\": 40.356814433665,\n                \"long\": -3.4835017069737\n            },\n            {\n                \"lat\": 40.356579373534,\n                \"long\": -3.4836119051104\n            },\n            {\n                \"lat\": 40.356409306587,\n                \"long\": -3.4836917124748\n            },\n            {\n                \"lat\": 40.356361023144,\n                \"long\": -3.4837118585743\n            },\n            {\n                \"lat\": 40.356134675409,\n                \"long\": -3.4838068081215\n            },\n            {\n                \"lat\": 40.356098034149,\n                \"long\": -3.4838220911603\n            },\n            {\n                \"lat\": 40.355922315493,\n                \"long\": -3.4839176374572\n            },\n            {\n                \"lat\": 40.355857120769,\n                \"long\": -3.4839530894611\n            },\n            {\n                \"lat\": 40.35570828566,\n                \"long\": -3.4840184442268\n            },\n            {\n                \"lat\": 40.355555208431,\n                \"long\": -3.48408565259\n            },\n            {\n                \"lat\": 40.355319617287,\n                \"long\": -3.4841503862679\n            },\n            {\n                \"lat\": 40.355171159431,\n                \"long\": -3.4841686375836\n            },\n            {\n                \"lat\": 40.355133030969,\n                \"long\": -3.4841733109107\n            },\n            {\n                \"lat\": 40.355011057008,\n                \"long\": -3.4841707897985\n            },\n            {\n                \"lat\": 40.35489304648,\n                \"long\": -3.4841684148086\n            },\n            {\n                \"lat\": 40.354827014499,\n                \"long\": -3.4841671181779\n            },\n            {\n                \"lat\": 40.354576481406,\n                \"long\": -3.4841210477513\n            },\n            {\n                \"lat\": 40.354297711676,\n                \"long\": -3.4841270618607\n            },\n            {\n                \"lat\": 40.354223939514,\n                \"long\": -3.4841023931806\n            },\n            {\n                \"lat\": 40.354102566691,\n                \"long\": -3.4840853919228\n            },\n            {\n                \"lat\": 40.353984208701,\n                \"long\": -3.4840584026056\n            },\n            {\n                \"lat\": 40.353918058033,\n                \"long\": -3.4840639353884\n            },\n            {\n                \"lat\": 40.353854886121,\n                \"long\": -3.4840896265461\n            },\n            {\n                \"lat\": 40.353742272585,\n                \"long\": -3.4841753752307\n            },\n            {\n                \"lat\": 40.353647641694,\n                \"long\": -3.484291163405\n            },\n            {\n                \"lat\": 40.353593489699,\n                \"long\": -3.4843573105559\n            },\n            {\n                \"lat\": 40.353529147219,\n                \"long\": -3.4844258576422\n            },\n            {\n                \"lat\": 40.353471501888,\n                \"long\": -3.4844871514062\n            },\n            {\n                \"lat\": 40.353389768837,\n                \"long\": -3.4845348480218\n            },\n            {\n                \"lat\": 40.353291357792,\n                \"long\": -3.4845421513049\n            },\n            {\n                \"lat\": 40.353132966213,\n                \"long\": -3.4845230004025\n            },\n            {\n                \"lat\": 40.352683443646,\n                \"long\": -3.484535798251\n            },\n            {\n                \"lat\": 40.352403266343,\n                \"long\": -3.4845982066664\n            },\n            {\n                \"lat\": 40.352205176632,\n                \"long\": -3.4846573162404\n            },\n            {\n                \"lat\": 40.352067253928,\n                \"long\": -3.4846983683172\n            },\n            {\n                \"lat\": 40.351919445566,\n                \"long\": -3.4847335793356\n            },\n            {\n                \"lat\": 40.351788700814,\n                \"long\": -3.4847386488061\n            },\n            {\n                \"lat\": 40.351644141034,\n                \"long\": -3.4847296062726\n            },\n            {\n                \"lat\": 40.351336198989,\n                \"long\": -3.4847314051472\n            },\n            {\n                \"lat\": 40.351170214717,\n                \"long\": -3.4847182055993\n            },\n            {\n                \"lat\": 40.351007321815,\n                \"long\": -3.4846767668672\n            },\n            {\n                \"lat\": 40.350878318759,\n                \"long\": -3.4846316850019\n            },\n            {\n                \"lat\": 40.350676917965,\n                \"long\": -3.4845134301573\n            },\n            {\n                \"lat\": 40.350510134474,\n                \"long\": -3.484325359529\n            },\n            {\n                \"lat\": 40.350351280408,\n                \"long\": -3.4840507968773\n            },\n            {\n                \"lat\": 40.35018654138,\n                \"long\": -3.4837399251257\n            },\n            {\n                \"lat\": 40.350133320861,\n                \"long\": -3.4836049517518\n            },\n            {\n                \"lat\": 40.349970091667,\n                \"long\": -3.4831911758931\n            },\n            {\n                \"lat\": 40.349939496389,\n                \"long\": -3.4830962833882\n            },\n            {\n                \"lat\": 40.349908545592,\n                \"long\": -3.483000210894\n            },\n            {\n                \"lat\": 40.349836947876,\n                \"long\": -3.4827783230814\n            },\n            {\n                \"lat\": 40.349821294633,\n                \"long\": -3.482729696932\n            },\n            {\n                \"lat\": 40.349763889545,\n                \"long\": -3.4824961354756\n            },\n            {\n                \"lat\": 40.349735874926,\n                \"long\": -3.4821495048311\n            },\n            {\n                \"lat\": 40.349745363281,\n                \"long\": -3.4819913115823\n            },\n            {\n                \"lat\": 40.349747489996,\n                \"long\": -3.4819565894136\n            },\n            {\n                \"lat\": 40.349820562375,\n                \"long\": -3.4817601076144\n            },\n            {\n                \"lat\": 40.349916779548,\n                \"long\": -3.4815656740768\n            },\n            {\n                \"lat\": 40.349967044471,\n                \"long\": -3.4814806599716\n            },\n            {\n                \"lat\": 40.349997257938,\n                \"long\": -3.4814295340816\n            },\n            {\n                \"lat\": 40.350072456942,\n                \"long\": -3.4811764263552\n            },\n            {\n                \"lat\": 40.35008567424,\n                \"long\": -3.481117760956\n            },\n            {\n                \"lat\": 40.350110635977,\n                \"long\": -3.4810079558949\n            },\n            {\n                \"lat\": 40.350139820054,\n                \"long\": -3.48087934006\n            },\n            {\n                \"lat\": 40.350149511327,\n                \"long\": -3.4807152594112\n            },\n            {\n                \"lat\": 40.350159585718,\n                \"long\": -3.4805456469815\n            },\n            {\n                \"lat\": 40.350179035059,\n                \"long\": -3.4799406454499\n            },\n            {\n                \"lat\": 40.35016052244,\n                \"long\": -3.4795385009875\n            },\n            {\n                \"lat\": 40.350157875853,\n                \"long\": -3.4794814891557\n            },\n            {\n                \"lat\": 40.350166500222,\n                \"long\": -3.4792482789149\n            },\n            {\n                \"lat\": 40.35019527319,\n                \"long\": -3.4789791783294\n            },\n            {\n                \"lat\": 40.350196430483,\n                \"long\": -3.4786996376205\n            },\n            {\n                \"lat\": 40.350159417951,\n                \"long\": -3.4783475260266\n            },\n            {\n                \"lat\": 40.350079557652,\n                \"long\": -3.4779428294496\n            },\n            {\n                \"lat\": 40.350008039924,\n                \"long\": -3.4777428492149\n            },\n            {\n                \"lat\": 40.349919515656,\n                \"long\": -3.4775813727284\n            },\n            {\n                \"lat\": 40.349800097458,\n                \"long\": -3.4774398146965\n            },\n            {\n                \"lat\": 40.349643675059,\n                \"long\": -3.4773361484057\n            },\n            {\n                \"lat\": 40.349542310449,\n                \"long\": -3.4772951621503\n            },\n            {\n                \"lat\": 40.34918877419,\n                \"long\": -3.4771459500935\n            },\n            {\n                \"lat\": 40.348892592872,\n                \"long\": -3.4769830134276\n            },\n            {\n                \"lat\": 40.348800113909,\n                \"long\": -3.4769064119163\n            },\n            {\n                \"lat\": 40.348728554862,\n                \"long\": -3.4768471497124\n            },\n            {\n                \"lat\": 40.348607278605,\n                \"long\": -3.4767190060869\n            },\n            {\n                \"lat\": 40.348590504186,\n                \"long\": -3.4767013429929\n            },\n            {\n                \"lat\": 40.348432434718,\n                \"long\": -3.4766036740096\n            },\n            {\n                \"lat\": 40.34838995276,\n                \"long\": -3.4765936016202\n            },\n            {\n                \"lat\": 40.348335589665,\n                \"long\": -3.4765808550892\n            },\n            {\n                \"lat\": 40.348283387259,\n                \"long\": -3.4765684770405\n            },\n            {\n                \"lat\": 40.348133382954,\n                \"long\": -3.4765687164854\n            },\n            {\n                \"lat\": 40.348049686924,\n                \"long\": -3.4765688338919\n            },\n            {\n                \"lat\": 40.347682026862,\n                \"long\": -3.4765018368723\n            },\n            {\n                \"lat\": 40.347347102317,\n                \"long\": -3.4764051625839\n            },\n            {\n                \"lat\": 40.347293931206,\n                \"long\": -3.4763873615737\n            },\n            {\n                \"lat\": 40.346876743857,\n                \"long\": -3.4762490155108\n            },\n            {\n                \"lat\": 40.346649517127,\n                \"long\": -3.476164993565\n            },\n            {\n                \"lat\": 40.346319514886,\n                \"long\": -3.4759667408568\n            },\n            {\n                \"lat\": 40.346239530476,\n                \"long\": -3.4759187263863\n            },\n            {\n                \"lat\": 40.345934050558,\n                \"long\": -3.4757818768052\n            },\n            {\n                \"lat\": 40.345697743763,\n                \"long\": -3.4756930839763\n            },\n            {\n                \"lat\": 40.345519006551,\n                \"long\": -3.4756260081957\n            },\n            {\n                \"lat\": 40.345423786243,\n                \"long\": -3.4756023788851\n            },\n            {\n                \"lat\": 40.345277806266,\n                \"long\": -3.4755660298334\n            },\n            {\n                \"lat\": 40.344965378999,\n                \"long\": -3.4754973095755\n            },\n            {\n                \"lat\": 40.344616677042,\n                \"long\": -3.4754206818827\n            },\n            {\n                \"lat\": 40.344366263673,\n                \"long\": -3.4753445094465\n            },\n            {\n                \"lat\": 40.344190758197,\n                \"long\": -3.4752582663579\n            },\n            {\n                \"lat\": 40.343801084442,\n                \"long\": -3.4750670246001\n            },\n            {\n                \"lat\": 40.343597526391,\n                \"long\": -3.4749670457694\n            },\n            {\n                \"lat\": 40.343468330503,\n                \"long\": -3.4748801874594\n            },\n            {\n                \"lat\": 40.342950827952,\n                \"long\": -3.4745321638092\n            },\n            {\n                \"lat\": 40.342748203127,\n                \"long\": -3.4744241879855\n            },\n            {\n                \"lat\": 40.342560842725,\n                \"long\": -3.474328682541\n            },\n            {\n                \"lat\": 40.342100173116,\n                \"long\": -3.4740938608165\n            },\n            {\n                \"lat\": 40.341797169213,\n                \"long\": -3.473901825379\n            },\n            {\n                \"lat\": 40.341401069825,\n                \"long\": -3.4736510951254\n            },\n            {\n                \"lat\": 40.341291172243,\n                \"long\": -3.4735814492663\n            },\n            {\n                \"lat\": 40.341002856366,\n                \"long\": -3.4733884614697\n            },\n            {\n                \"lat\": 40.340730990882,\n                \"long\": -3.4731822858779\n            },\n            {\n                \"lat\": 40.340352336246,\n                \"long\": -3.472895187096\n            },\n            {\n                \"lat\": 40.34012994767,\n                \"long\": -3.4727509371946\n            },\n            {\n                \"lat\": 40.339894555548,\n                \"long\": -3.4725919981846\n            },\n            {\n                \"lat\": 40.339425477017,\n                \"long\": -3.4722754304878\n            },\n            {\n                \"lat\": 40.339305007561,\n                \"long\": -3.4721911160186\n            },\n            {\n                \"lat\": 40.338940454305,\n                \"long\": -3.4719360332822\n            },\n            {\n                \"lat\": 40.338656541354,\n                \"long\": -3.4717893595382\n            },\n            {\n                \"lat\": 40.338565707311,\n                \"long\": -3.4717503454835\n            },\n            {\n                \"lat\": 40.338124939118,\n                \"long\": -3.4715605503726\n            },\n            {\n                \"lat\": 40.338100742906,\n                \"long\": -3.4715510809801\n            },\n            {\n                \"lat\": 40.337933168317,\n                \"long\": -3.4714855143447\n            },\n            {\n                \"lat\": 40.337849696079,\n                \"long\": -3.4714527922096\n            },\n            {\n                \"lat\": 40.337685809344,\n                \"long\": -3.4713886645235\n            },\n            {\n                \"lat\": 40.337029949097,\n                \"long\": -3.4711204993219\n            },\n            {\n                \"lat\": 40.33698524787,\n                \"long\": -3.4711021755013\n            },\n            {\n                \"lat\": 40.336497168857,\n                \"long\": -3.4709372545678\n            },\n            {\n                \"lat\": 40.336480974754,\n                \"long\": -3.4709317263729\n            },\n            {\n                \"lat\": 40.336056995263,\n                \"long\": -3.4708002177625\n            },\n            {\n                \"lat\": 40.335808232522,\n                \"long\": -3.470716078211\n            },\n            {\n                \"lat\": 40.335804724292,\n                \"long\": -3.4707147588089\n            },\n            {\n                \"lat\": 40.335443860524,\n                \"long\": -3.4705927564897\n            },\n            {\n                \"lat\": 40.335251123428,\n                \"long\": -3.4705336128688\n            },\n            {\n                \"lat\": 40.335215671644,\n                \"long\": -3.4705226533322\n            },\n            {\n                \"lat\": 40.33518435872,\n                \"long\": -3.4705130175667\n            },\n            {\n                \"lat\": 40.335025993724,\n                \"long\": -3.4704644731869\n            },\n            {\n                \"lat\": 40.334881306067,\n                \"long\": -3.470420026763\n            },\n            {\n                \"lat\": 40.33486709343,\n                \"long\": -3.4704146303151\n            },\n            {\n                \"lat\": 40.334632674238,\n                \"long\": -3.4703257664669\n            },\n            {\n                \"lat\": 40.334621789651,\n                \"long\": -3.4703216881661\n            },\n            {\n                \"lat\": 40.334307671525,\n                \"long\": -3.4703133854838\n            },\n            {\n                \"lat\": 40.334192338053,\n                \"long\": -3.4703393086875\n            },\n            {\n                \"lat\": 40.334099908438,\n                \"long\": -3.4703602108745\n            },\n            {\n                \"lat\": 40.333939467593,\n                \"long\": -3.4704676403741\n            },\n            {\n                \"lat\": 40.33387587645,\n                \"long\": -3.4705527855597\n            },\n            {\n                \"lat\": 40.333845620284,\n                \"long\": -3.4705934263081\n            },\n            {\n                \"lat\": 40.333827593757,\n                \"long\": -3.4706175526261\n            },\n            {\n                \"lat\": 40.333824151187,\n                \"long\": -3.4706222377476\n            },\n            {\n                \"lat\": 40.333812647041,\n                \"long\": -3.4706375799212\n            },\n            {\n                \"lat\": 40.333713992168,\n                \"long\": -3.4707270724471\n            },\n            {\n                \"lat\": 40.333690209928,\n                \"long\": -3.4707486864464\n            },\n            {\n                \"lat\": 40.333634869447,\n                \"long\": -3.4707988061699\n            },\n            {\n                \"lat\": 40.333614794291,\n                \"long\": -3.4708171495675\n            },\n            {\n                \"lat\": 40.333604395634,\n                \"long\": -3.470826495341\n            },\n            {\n                \"lat\": 40.333594719611,\n                \"long\": -3.470835375232\n            },\n            {\n                \"lat\": 40.333575925353,\n                \"long\": -3.4708489007652\n            },\n            {\n                \"lat\": 40.333495054917,\n                \"long\": -3.4709073190855\n            },\n            {\n                \"lat\": 40.333481139876,\n                \"long\": -3.4709173467368\n            },\n            {\n                \"lat\": 40.33345927345,\n                \"long\": -3.4709330876489\n            },\n            {\n                \"lat\": 40.333434153724,\n                \"long\": -3.4709512781647\n            },\n            {\n                \"lat\": 40.333418341043,\n                \"long\": -3.4709627053083\n            },\n            {\n                \"lat\": 40.333376234105,\n                \"long\": -3.4709931388422\n            },\n            {\n                \"lat\": 40.333349397871,\n                \"long\": -3.4710124946302\n            },\n            {\n                \"lat\": 40.333292838205,\n                \"long\": -3.4710522456098\n            },\n            {\n                \"lat\": 40.333269979335,\n                \"long\": -3.471068332709\n            },\n            {\n                \"lat\": 40.333207455984,\n                \"long\": -3.4711123979431\n            },\n            {\n                \"lat\": 40.333027024506,\n                \"long\": -3.4712393452131\n            },\n            {\n                \"lat\": 40.333004534601,\n                \"long\": -3.4712533157123\n            },\n            {\n                \"lat\": 40.332828317613,\n                \"long\": -3.4713629860985\n            },\n            {\n                \"lat\": 40.332676488095,\n                \"long\": -3.471457286082\n            },\n            {\n                \"lat\": 40.332500903458,\n                \"long\": -3.4715664889216\n            },\n            {\n                \"lat\": 40.332499277523,\n                \"long\": -3.4715675371164\n            },\n            {\n                \"lat\": 40.332370625056,\n                \"long\": -3.4716339793819\n            },\n            {\n                \"lat\": 40.33221877051,\n                \"long\": -3.4717122676086\n            },\n            {\n                \"lat\": 40.332189532934,\n                \"long\": -3.4717239540632\n            },\n            {\n                \"lat\": 40.332180147755,\n                \"long\": -3.4717277735752\n            },\n            {\n                \"lat\": 40.332030080231,\n                \"long\": -3.4717875913387\n            },\n            {\n                \"lat\": 40.331903474433,\n                \"long\": -3.4718381544389\n            },\n            {\n                \"lat\": 40.33188768231,\n                \"long\": -3.4718445191933\n            },\n            {\n                \"lat\": 40.331858625379,\n                \"long\": -3.4718560890707\n            },\n            {\n                \"lat\": 40.331778673289,\n                \"long\": -3.4718880235883\n            },\n            {\n                \"lat\": 40.331626529768,\n                \"long\": -3.4719487679658\n            },\n            {\n                \"lat\": 40.331545585221,\n                \"long\": -3.4719810485189\n            },\n            {\n                \"lat\": 40.331515896206,\n                \"long\": -3.4719929670429\n            },\n            {\n                \"lat\": 40.331502272473,\n                \"long\": -3.471997816448\n            },\n            {\n                \"lat\": 40.33147304015,\n                \"long\": -3.472008207755\n            },\n            {\n                \"lat\": 40.331466003059,\n                \"long\": -3.4720106308856\n            },\n            {\n                \"lat\": 40.331454364183,\n                \"long\": -3.4720147877817\n            },\n            {\n                \"lat\": 40.331446604932,\n                \"long\": -3.4720175590449\n            },\n            {\n                \"lat\": 40.33144074045,\n                \"long\": -3.4720196371781\n            },\n            {\n                \"lat\": 40.331437763163,\n                \"long\": -3.4720206759307\n            },\n            {\n                \"lat\": 40.331436409414,\n                \"long\": -3.4720212551078\n            },\n            {\n                \"lat\": 40.331434515127,\n                \"long\": -3.4720218305187\n            },\n            {\n                \"lat\": 40.331429552503,\n                \"long\": -3.4720236794911\n            },\n            {\n                \"lat\": 40.331426395037,\n                \"long\": -3.472024716988\n            },\n            {\n                \"lat\": 40.331425131858,\n                \"long\": -3.4720251790741\n            },\n            {\n                \"lat\": 40.331418545216,\n                \"long\": -3.4720276053398\n            },\n            {\n                \"lat\": 40.331403116803,\n                \"long\": -3.4720331484876\n            },\n            {\n                \"lat\": 40.331391207657,\n                \"long\": -3.4720373034929\n            },\n            {\n                \"lat\": 40.331382546547,\n                \"long\": -3.4720403039107\n            },\n            {\n                \"lat\": 40.331368922813,\n                \"long\": -3.472045153297\n            },\n            {\n                \"lat\": 40.331360441882,\n                \"long\": -3.4720481549683\n            },\n            {\n                \"lat\": 40.331339690485,\n                \"long\": -3.4720555445636\n            },\n            {\n                \"lat\": 40.331333644861,\n                \"long\": -3.4720578568714\n            },\n            {\n                \"lat\": 40.331318487677,\n                \"long\": -3.4720631664523\n            },\n            {\n                \"lat\": 40.331296563189,\n                \"long\": -3.4720710187507\n            },\n            {\n                \"lat\": 40.33127635329,\n                \"long\": -3.4720781766624\n            },\n            {\n                \"lat\": 40.331165108264,\n                \"long\": -3.4721176621916\n            },\n            {\n                \"lat\": 40.331127394996,\n                \"long\": -3.4721310550473\n            },\n            {\n                \"lat\": 40.331125535782,\n                \"long\": -3.4721230370463\n            },\n            {\n                \"lat\": 40.331123944915,\n                \"long\": -3.4721154918007\n            },\n            {\n                \"lat\": 40.331121997532,\n                \"long\": -3.4721070023012\n            },\n            {\n                \"lat\": 40.331115096401,\n                \"long\": -3.4720761112502\n            },\n            {\n                \"lat\": 40.331114477302,\n                \"long\": -3.472073281627\n            },\n            {\n                \"lat\": 40.331094921968,\n                \"long\": -3.4719862671286\n            },\n            {\n                \"lat\": 40.331080234102,\n                \"long\": -3.4719207118359\n            },\n            {\n                \"lat\": 40.33107607576,\n                \"long\": -3.4719020829274\n            },\n            {\n                \"lat\": 40.331071121014,\n                \"long\": -3.4718799168396\n            },\n            {\n                \"lat\": 40.33106758177,\n                \"long\": -3.4718641175554\n            },\n            {\n                \"lat\": 40.331055635724,\n                \"long\": -3.4718110598482\n            },\n            {\n                \"lat\": 40.331038913138,\n                \"long\": -3.4717363082181\n            },\n            {\n                \"lat\": 40.331027764401,\n                \"long\": -3.4716865522969\n            },\n            {\n                \"lat\": 40.331015465594,\n                \"long\": -3.4716316086594\n            },\n            {\n                \"lat\": 40.331012633595,\n                \"long\": -3.4716191105137\n            },\n            {\n                \"lat\": 40.330991747684,\n                \"long\": -3.4715269072913\n            },\n            {\n                \"lat\": 40.330982543407,\n                \"long\": -3.4714863472084\n            },\n            {\n                \"lat\": 40.330970685358,\n                \"long\": -3.4714337611303\n            },\n            {\n                \"lat\": 40.330917017634,\n                \"long\": -3.4714491622839\n            },\n            {\n                \"lat\": 40.330761064755,\n                \"long\": -3.4714941058206\n            },\n            {\n                \"lat\": 40.33073076531,\n                \"long\": -3.4715010759117\n            },\n            {\n                \"lat\": 40.330699022987,\n                \"long\": -3.4715083891165\n            },\n            {\n                \"lat\": 40.330603345568,\n                \"long\": -3.4715303255556\n            },\n            {\n                \"lat\": 40.330600369726,\n                \"long\": -3.4715310111664\n            },\n            {\n                \"lat\": 40.33059405768,\n                \"long\": -3.4715323798796\n            },\n            {\n                \"lat\": 40.330475204619,\n                \"long\": -3.4715596877922\n            },\n            {\n                \"lat\": 40.330468353475,\n                \"long\": -3.4715606995878\n            },\n            {\n                \"lat\": 40.330365943302,\n                \"long\": -3.4715767030218\n            },\n            {\n                \"lat\": 40.33032104882,\n                \"long\": -3.4715836891678\n            },\n            {\n                \"lat\": 40.330226391645,\n                \"long\": -3.4715984515845\n            },\n            {\n                \"lat\": 40.330172498258,\n                \"long\": -3.4716029029517\n            },\n            {\n                \"lat\": 40.330006222072,\n                \"long\": -3.4716165781784\n            },\n            {\n                \"lat\": 40.329973958399,\n                \"long\": -3.4716191788553\n            },\n            {\n                \"lat\": 40.329872328922,\n                \"long\": -3.4716204726427\n            },\n            {\n                \"lat\": 40.32983313697,\n                \"long\": -3.4716209061436\n            },\n            {\n                \"lat\": 40.329775744953,\n                \"long\": -3.4716216838303\n            },\n            {\n                \"lat\": 40.329751259239,\n                \"long\": -3.4716169223513\n            },\n            {\n                \"lat\": 40.329687524116,\n                \"long\": -3.4716045891068\n            },\n            {\n                \"lat\": 40.329663848729,\n                \"long\": -3.4715999509995\n            },\n            {\n                \"lat\": 40.32962991078,\n                \"long\": -3.4715933579645\n            },\n            {\n                \"lat\": 40.329605965123,\n                \"long\": -3.4715887179841\n            },\n            {\n                \"lat\": 40.32947597427,\n                \"long\": -3.4715635632106\n            },\n            {\n                \"lat\": 40.329474894152,\n                \"long\": -3.4715633202562\n            },\n            {\n                \"lat\": 40.329461582931,\n                \"long\": -3.4715578125657\n            },\n            {\n                \"lat\": 40.329460593863,\n                \"long\": -3.4715573348085\n            },\n            {\n                \"lat\": 40.329328922599,\n                \"long\": -3.471502385772\n            },\n            {\n                \"lat\": 40.329322001516,\n                \"long\": -3.4714984529101\n            },\n            {\n                \"lat\": 40.329302496164,\n                \"long\": -3.471487487109\n            },\n            {\n                \"lat\": 40.329156161905,\n                \"long\": -3.4714050080616\n            },\n            {\n                \"lat\": 40.329099983356,\n                \"long\": -3.4713733042797\n            },\n            {\n                \"lat\": 40.328987446051,\n                \"long\": -3.4713098956214\n            },\n            {\n                \"lat\": 40.328921379652,\n                \"long\": -3.4712727082209\n            },\n            {\n                \"lat\": 40.328811809018,\n                \"long\": -3.4712108508555\n            },\n            {\n                \"lat\": 40.328697923144,\n                \"long\": -3.4711467270615\n            },\n            {\n                \"lat\": 40.328642054099,\n                \"long\": -3.4711053730754\n            },\n            {\n                \"lat\": 40.32850741207,\n                \"long\": -3.4710055548815\n            },\n            {\n                \"lat\": 40.328470304173,\n                \"long\": -3.4709809295819\n            },\n            {\n                \"lat\": 40.328350443958,\n                \"long\": -3.4709015795612\n            },\n            {\n                \"lat\": 40.328341548543,\n                \"long\": -3.4708957496344\n            },\n            {\n                \"lat\": 40.328299202942,\n                \"long\": -3.4708520180103\n            },\n            {\n                \"lat\": 40.328224469507,\n                \"long\": -3.4707749831385\n            },\n            {\n                \"lat\": 40.328078650286,\n                \"long\": -3.470676501172\n            },\n            {\n                \"lat\": 40.327971883163,\n                \"long\": -3.4706340881265\n            },\n            {\n                \"lat\": 40.327858190595,\n                \"long\": -3.4705888019434\n            },\n            {\n                \"lat\": 40.327810262242,\n                \"long\": -3.4705664562745\n            },\n            {\n                \"lat\": 40.327800550732,\n                \"long\": -3.4705619156414\n            },\n            {\n                \"lat\": 40.327632397249,\n                \"long\": -3.4704834089794\n            },\n            {\n                \"lat\": 40.327618099769,\n                \"long\": -3.4704767176547\n            },\n            {\n                \"lat\": 40.327458668663,\n                \"long\": -3.4704022742792\n            }\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/59f193abe5de8.png\",\n        \"id\": \"59bf9b3e76e456ac018b4569\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5d9ee7d1de2efef4018b4582\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Riv_Barrios\",\n                        \"name\": \"Barrios\",\n                        \"description\": \"Barrios\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"677fb4de2a1d95d91e008633\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:geofences\",\n                        \"name\": \"geofence\",\n                        \"description\": \"geofence\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"GEOFENCE\"\n                    }\n                ],\n                \"extent\": [\n                    -3.5850750207097,\n                    40.287119395069,\n                    -3.4700083830236,\n                    40.411038646944\n                ],\n                \"id\": \"5c9b557c9650e67d42985e8b\",\n                \"name\": \"es.rivas\",\n                \"type\": \"city\",\n                \"visible_name\": \"es.rivas\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.5497243,\n                    40.3641802,\n                    0.0,\n                    40.359865\n                ],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/64f8711977425941968678.png\",\n                \"id\": \"64f870d930cbad4d06086d55\",\n                \"name\": \"NewTapia\",\n                \"type\": \"city\",\n                \"visible_name\": \"New Tapia\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67f6d42138d8b163495863.png\",\n                \"id\": \"67f6d4219c2c75b0bc01ee3c\",\n                \"name\": \"Prueba qa\",\n                \"type\": \"building\",\n                \"visible_name\": \"Prueba\",\n                \"position\": {},\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"es.rivas\",\n        \"key_name\": \"Rivas-Vaciamadrid\",\n        \"locales\": [\n            \"es\"\n        ],\n        \"name\": \"Rivas\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17715\",\n                \"options\": []\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17717\",\n                \"options\": [\n                    \"ios\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17718\",\n                \"options\": [\n                    \"android\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17719\",\n                \"options\": [\n                    \"inperson\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771a\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771b\",\n                \"options\": [\n                    \"inperson\",\n                    \"email\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771c\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771d\",\n                \"options\": [\n                    \"facebook\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b1771e\",\n                \"options\": [\n                    \"twitter\",\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17722\",\n                \"options\": [\n                    \"web_channel\"\n                ]\n            },\n            {\n                \"id\": \"60c09cdccdf34808168b4573\",\n                \"options\": [\n                    \"android\"\n                ]\n            }\n        ],\n        \"lat\": 40.35497,\n        \"long\": -3.54806,\n        \"tags\": [\n            {\n                \"name\": \"Poda\",\n                \"color\": \"#000000\",\n                \"id\": \"Poda\"\n            },\n            {\n                \"name\": \"Rivamadrid\",\n                \"color\": \"#000000\",\n                \"id\": \"Rivamadrid\"\n            },\n            {\n                \"name\": \"Rivas\",\n                \"color\": \"#000000\",\n                \"id\": \"Rivas\"\n            },\n            {\n                \"name\": \"Enseres\",\n                \"color\": \"#000000\",\n                \"id\": \"Enseres\"\n            },\n            {\n                \"name\": \"Noticias\",\n                \"color\": \"#000000\",\n                \"id\": \"Noticias\"\n            },\n            {\n                \"name\": \"México\",\n                \"color\": \"#000000\",\n                \"id\": \"México\"\n            }\n        ],\n        \"third_emails\": [\n            \"comentarios.rivas@mejoratuciudad.org\"\n        ],\n        \"timezone\": \"Europe/Madrid\",\n        \"typologies\": [\n            {\n                \"id\": \"59bfadfe566d72b8018b45c6\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            {\n                \"id\": \"59ca0667da4282853b8b4592\",\n                \"color\": \"#880e4f\",\n                \"description_legend\": \"Ej: faltan más carteles informativos\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 3,\n                \"public\": true,\n                \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                \"visible_name\": \"Queja\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            {\n                \"id\": \"59ce16a8da42828a718b4582\",\n                \"color\": \"#009688\",\n                \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 4,\n                \"public\": true,\n                \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                \"visible_name\": \"Agradecimiento\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            {\n                \"id\": \"61547dc16ac0f4af0e8b4567\",\n                \"color\": \"#6db733\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 5,\n                \"public\": true,\n                \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                \"visible_name\": \"Sugerencia\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            }\n        ],\n        \"typology_nodes\": [\n            {\n                \"id\": \"59bfaf21d2bf39b8018b457d\",\n                \"color\": \"#f1c40f\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"59e4952551889ed02f8b4579\",\n                \"color\": \"#f1c40f\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"59ca0752da4282873b8b458a\",\n                \"color\": \"#f1c40f\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"59e4b651883262a6018b4597\",\n                \"color\": \"#f1c40f\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"59ce16a8da42828a718b4582\",\n                    \"color\": \"#009688\",\n                    \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                    \"visible_name\": \"Agradecimiento\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"615486fe6ac0f4b70e8b4567\",\n                \"color\": \"#f1c40f\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Nuevo\"\n            },\n            {\n                \"id\": \"59bfaec83f62fab2018b4571\",\n                \"color\": \"#b39ddb\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"En consulta\"\n            },\n            {\n                \"id\": \"59e49551b03bc9672f8b4576\",\n                \"color\": \"#b39ddb\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En consulta\"\n            },\n            {\n                \"id\": \"59ca0790700f9c023d8b4587\",\n                \"color\": \"#b39ddb\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En consulta\"\n            },\n            {\n                \"id\": \"59e4b678883262a7018b4577\",\n                \"color\": \"#b39ddb\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"59ce16a8da42828a718b4582\",\n                    \"color\": \"#009688\",\n                    \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                    \"visible_name\": \"Agradecimiento\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En consulta\"\n            },\n            {\n                \"id\": \"615487158baf5334108b4567\",\n                \"color\": \"#b39ddb\",\n                \"order\": 2,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En consulta\"\n            },\n            {\n                \"id\": \"59bfae89566d72ac018b45a1\",\n                \"color\": \"#993399\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Consultado\"\n            },\n            {\n                \"id\": \"59e49578fc751c4d2f8b46a4\",\n                \"color\": \"#993399\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Consultado\"\n            },\n            {\n                \"id\": \"59ca07c99afdd2c73b8b4596\",\n                \"color\": \"#993399\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Consultado\"\n            },\n            {\n                \"id\": \"59e4b68a9a6d9da6018b458c\",\n                \"color\": \"#993399\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"59ce16a8da42828a718b4582\",\n                    \"color\": \"#009688\",\n                    \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                    \"visible_name\": \"Agradecimiento\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Consultado\"\n            },\n            {\n                \"id\": \"6154874f8baf5333108b4567\",\n                \"color\": \"#993399\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Consultado\"\n            },\n            {\n                \"id\": \"59bfaf0976e456aa018b4591\",\n                \"color\": \"#0c98f5\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"En progreso\"\n            },\n            {\n                \"id\": \"59e495c6a9e694b82f8b458a\",\n                \"color\": \"#0c98f5\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En progreso\"\n            },\n            {\n                \"id\": \"59ca0772451f400e3c8b4595\",\n                \"color\": \"#0c98f5\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En progreso\"\n            },\n            {\n                \"id\": \"59e4b6a79a6d9da6018b45a0\",\n                \"color\": \"#0c98f5\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"59ce16a8da42828a718b4582\",\n                    \"color\": \"#009688\",\n                    \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                    \"visible_name\": \"Agradecimiento\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En Progreso\"\n            },\n            {\n                \"id\": \"6154876892fb017d0e8b456d\",\n                \"color\": \"#0c98f5\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"En progreso\"\n            },\n            {\n                \"id\": \"5ff42f9dacba6891068b45cd\",\n                \"color\": \"#337ab7\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"En ejecución\"\n            },\n            {\n                \"id\": \"59e495e651889eda2f8b47c6\",\n                \"color\": \"#3abdaa\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"59ca07af700f9cf93c8b45ea\",\n                \"color\": \"#3abdaa\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"59e4b6b49a6d9da5018b4577\",\n                \"color\": \"#3abdaa\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"59ce16a8da42828a718b4582\",\n                    \"color\": \"#009688\",\n                    \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                    \"visible_name\": \"Agradecimiento\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"615487f392fb017d0e8b456f\",\n                \"color\": \"#3abdaa\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"5ff43e0fd4c7e7cf068b456f\",\n                \"color\": \"#2e85ae\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Pte. Validar Ejecución\"\n            },\n            {\n                \"id\": \"59e4961051889ed52f8b47c1\",\n                \"color\": \"#21618c\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"59ca07239afdd2da3c8b4577\",\n                \"color\": \"#21618c\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"59e4b6c7883262a8018b45bb\",\n                \"color\": \"#21618c\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"59ce16a8da42828a718b4582\",\n                    \"color\": \"#009688\",\n                    \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                    \"visible_name\": \"Agradecimiento\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"6154880f3c69dc950e8b458a\",\n                \"color\": \"#21618c\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"5ff43e9732f92da9068b45a4\",\n                \"color\": \"#727980\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Planificado en Ejecución\"\n            },\n            {\n                \"id\": \"59e49cb0b03bc9672f8b488f\",\n                \"color\": \"#8cbc2d\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Validado\"\n            },\n            {\n                \"id\": \"59ca06df451f40053c8b4596\",\n                \"color\": \"#8cbc2d\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Validado\"\n            },\n            {\n                \"id\": \"59e4b6ed9a6d9da5018b458b\",\n                \"color\": \"#8cbc2d\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"59ce16a8da42828a718b4582\",\n                    \"color\": \"#009688\",\n                    \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                    \"visible_name\": \"Agradecimiento\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Validado\"\n            },\n            {\n                \"id\": \"6154882592fb017e0e8b4577\",\n                \"color\": \"#8cbc2d\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Validado\"\n            },\n            {\n                \"id\": \"59bfaea2d2bf39b4018b458a\",\n                \"color\": \"#3abdaa\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Devuelto\"\n            },\n            {\n                \"id\": \"59e49cd1fc751c4c2f8b47c7\",\n                \"color\": \"#d35400\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"59ca073ada42822c3d8b4570\",\n                \"color\": \"#d35400\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"59e4b6fd34f77866028b456e\",\n                \"color\": \"#d35400\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"59ce16a8da42828a718b4582\",\n                    \"color\": \"#009688\",\n                    \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                    \"visible_name\": \"Agradecimiento\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"6154883d390a87050f8b459c\",\n                \"color\": \"#d35400\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"59bfaeec3f62fab4018b4590\",\n                \"color\": \"#8cbc2d\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Validado\"\n            },\n            {\n                \"id\": \"59e49cfab03bc9652f8b470d\",\n                \"color\": \"#2e7d32\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"59ca070a451f400e3c8b4594\",\n                \"color\": \"#2e7d32\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"59e4b71434f778ad018b4598\",\n                \"color\": \"#2e7d32\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"59ce16a8da42828a718b4582\",\n                    \"color\": \"#009688\",\n                    \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                    \"visible_name\": \"Agradecimiento\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"61548853390a87090f8b45b2\",\n                \"color\": \"#2e7d32\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"59bfaf2e3f62fab4018b4591\",\n                \"color\": \"#d35400\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Rechazado\"\n            },\n            {\n                \"id\": \"59e49d3651889ed32f8b46a9\",\n                \"color\": \"#b71b1c\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"59ca07deda42828c3b8b4594\",\n                \"color\": \"#b71b1c\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"59e4b72d883262a9018b45a9\",\n                \"color\": \"#b71b1c\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"59ce16a8da42828a718b4582\",\n                    \"color\": \"#009688\",\n                    \"description_legend\": \"Ej: felicidades por el buen trabajo\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 4,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero felicitar al ayuntamiento por un buen trabajo\",\n                    \"visible_name\": \"Agradecimiento\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"6154886a390a87030f8b45a3\",\n                \"color\": \"#b71b1c\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"59bfaf52566d72ac018b45a2\",\n                \"color\": \"#21618c\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Resuelto\"\n            },\n            {\n                \"id\": \"5a0b16ba0f2cc767298b4587\",\n                \"color\": \"#964848\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"59c8bf32451f40502a8b45b4\",\n                    \"color\": \"#1565c0\",\n                    \"description_legend\": \"Ej: calle muy oscura, se necesita otra farola\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 2,\n                    \"public\": false,\n                    \"typology_description\": \"Quiero que instaléis, quitéis o cambiéis un elemento en la calle\",\n                    \"visible_name\": \"Petición (desactivada)\",\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Acción urgente\"\n            },\n            {\n                \"id\": \"5a0b16e01992fbc9288b45a4\",\n                \"color\": \"#964848\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"59ca0667da4282853b8b4592\",\n                    \"color\": \"#880e4f\",\n                    \"description_legend\": \"Ej: faltan más carteles informativos\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 3,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero que se mejore algún servicio de la ciudad.\",\n                    \"visible_name\": \"Queja\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Acción urgente\"\n            },\n            {\n                \"id\": \"6154887fd274996b0e8b4574\",\n                \"color\": \"#964848\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"61547dc16ac0f4af0e8b4567\",\n                    \"color\": \"#6db733\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 5,\n                    \"public\": true,\n                    \"typology_description\": \"Quiero proponer una mejora de algún servicio de la ciudad.\",\n                    \"visible_name\": \"Sugerencia\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": false,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": false\n                },\n                \"visible_name\": \"Acción urgente\"\n            },\n            {\n                \"id\": \"59bfaf693f62fab3018b458e\",\n                \"color\": \"#2e7d32\",\n                \"order\": 12,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"59bfae6e76e456ba018b458e\",\n                \"color\": \"#b71b1c\",\n                \"order\": 13,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Cancelado\"\n            },\n            {\n                \"id\": \"5a0af0078d85d085268b4941\",\n                \"color\": \"#964848\",\n                \"order\": 14,\n                \"typology\": {\n                    \"id\": \"59bfadfe566d72b8018b45c6\",\n                    \"color\": \"#ebc113\",\n                    \"description_legend\": \"Ej: farola fundida\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": true,\n                    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                    \"visible_name\": \"Aviso\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": true,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Acción urgente\"\n            }\n        ],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": true,\n            \"requests_process\": true,\n            \"requests_comments\": true,\n            \"requests_worknotes\": true,\n            \"requests_reiterations\": true,\n            \"requests_complaints\": true,\n            \"user_evaluation\": true,\n            \"service_survey\": false,\n            \"alerts\": false,\n            \"inventory\": false,\n            \"backoffice_admin\": true,\n            \"app_configuration\": true,\n            \"notifications\": true,\n            \"planned_requests\": true,\n            \"planning\": false,\n            \"users\": false,\n            \"predetermined_response\": true,\n            \"predetermined_response_external_source\": true,\n            \"company_enquiry\": false,\n            \"layer\": false,\n            \"jurisdiction_element\": false,\n            \"webhook\": false,\n            \"user_guide\": true,\n            \"worklog\": false,\n            \"calendar\": false\n        },\n        \"app_urls\": {\n            \"web_url\": \"https://mapa.mejoratuciudad.org\",\n            \"google_play_manager\": \"https://play.google.com/store/apps/details?id=com.radmas.iycp.production&hl=es\",\n            \"google_play_citizens\": \"https://play.google.com/store/apps/details?id=com.radmas.iyc.rivas\",\n            \"app_store\": \"https://itunes.apple.com/us/app/rivas-ciudad/id1353778065?l=es&ls=1&mt=8\"\n        }\n    },\n    {\n        \"only_registered_users\": true,\n        \"automatic_typology\": false,\n        \"map_layers\": [],\n        \"accepted_id_documents\": [],\n        \"buttons\": [],\n        \"channels\": [\n            {\n                \"external\": true,\n                \"id\": \"5cc6a0b08d7a6a0b0b8b45ad\",\n                \"name\": \"Beta Tester\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5cc861a93bf9fe84028b4567\",\n                \"name\": \"Engineering\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5cc861b93bf9fe84028b4568\",\n                \"name\": \"Relaciones Laborales\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5cc861e3a9d7dac5028b456c\",\n                \"name\": \"Corporate Security\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5cc861f8a9d7dac3028b4567\",\n                \"name\": \"E.E. Premises\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5ccc08f85f727eab018b457f\",\n                \"name\": \"Arquitectura de comunicaciones\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5cdd7a20c2845124028b464f\",\n                \"name\": \"Analytics\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5d271c65fc79a364108b4567\",\n                \"name\": \"Ciudad BBVA\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5d271ca929f5f2b3108b4567\",\n                \"name\": \"Tablas II\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66f181e36dcd478d33032775\",\n                \"name\": \"sdfsdf\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66f326b19cdb7da2b50c3ac5\",\n                \"name\": \"testing\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66f481b99ae3acf15d059a25\",\n                \"name\": \"nombre interno\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"66f483759ae3acf15d059a27\",\n                \"name\": \"prueba icono\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            }\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": 40.502887795975,\n                \"long\": -3.6619293179218\n            },\n            {\n                \"lat\": 40.498302888397,\n                \"long\": -3.6667787518207\n            }\n        ],\n        \"geo_perimeter\": [\n            {\n                \"lat\": 40.500554590351,\n                \"long\": -3.6620687927906\n            },\n            {\n                \"lat\": 40.502887795975,\n                \"long\": -3.6636030163471\n            },\n            {\n                \"lat\": 40.501664096852,\n                \"long\": -3.6667787518207\n            },\n            {\n                \"lat\": 40.498302888397,\n                \"long\": -3.6638819660847\n            },\n            {\n                \"lat\": 40.500244577902,\n                \"long\": -3.6619293179218\n            },\n            {\n                \"lat\": 40.500244577902,\n                \"long\": -3.6619293179218\n            }\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5be1bf65a4a58.png\",\n        \"id\": \"5be19ecb9a35c4850a8b45b1\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.6667787518207,\n                    40.498302888397,\n                    -3.6619293179218,\n                    40.502887795975\n                ],\n                \"id\": \"5c9b557e9650e67d42985e8d\",\n                \"location_additional_data\": {},\n                \"name\": \"Ciudad BBVA\",\n                \"type\": \"building\",\n                \"visible_name\": \"Ciudad BBVA\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [\n                    -3.6667787518207,\n                    40.498302888397,\n                    -3.6619293179218,\n                    40.502887795975\n                ],\n                \"id\": \"660d46ad18087d2d470eaf91\",\n                \"location_additional_data\": {},\n                \"name\": \"Ciudad BBVA 660d46adc832e6.51113816\",\n                \"type\": \"building\",\n                \"visible_name\": \"Ciudad BBVA 660d46adc833f5.13762285\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"67d2f0e0fc4bb2132e0b912d\",\n                \"name\": \"crack2\",\n                \"type\": \"building\",\n                \"visible_name\": \"crack\",\n                \"position\": {},\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"bbva\",\n        \"locales\": [\n            \"es\"\n        ],\n        \"name\": \"BBVA\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17719\",\n                \"options\": [\n                    \"inperson\",\n                    \"internal\"\n                ]\n            }\n        ],\n        \"lat\": 40.50222,\n        \"long\": -3.664439999999999,\n        \"tags\": [\n            {\n                \"name\": \"Generales\",\n                \"color\": \"#33691e\",\n                \"id\": \"Generales\"\n            },\n            {\n                \"name\": \"Economía\",\n                \"color\": \"#dc4949\",\n                \"id\": \"Economía\"\n            },\n            {\n                \"name\": \"Educación financiera\",\n                \"color\": \"#337ab7\",\n                \"id\": \"Educación financiera\"\n            },\n            {\n                \"name\": \"Prensa\",\n                \"color\": \"#ffc107\",\n                \"id\": \"Prensa\"\n            },\n            {\n                \"name\": \"New Digital Business\",\n                \"color\": \"#ef6c00\",\n                \"id\": \"New Digital Business\"\n            },\n            {\n                \"name\": \"Podcast\",\n                \"color\": \"#2100fc\",\n                \"id\": \"Podcast\"\n            },\n            {\n                \"name\": \"Deep Talks\",\n                \"color\": \"#8c0000\",\n                \"id\": \"Deep Talks\"\n            },\n            {\n                \"name\": \"Data\",\n                \"color\": \"#12348c\",\n                \"id\": \"Data\"\n            },\n            {\n                \"name\": \"Blink\",\n                \"color\": \"#8200b0\",\n                \"id\": \"Blink\"\n            },\n            {\n                \"name\": \"Aprendiendo Juntos\",\n                \"color\": \"#00abab\",\n                \"id\": \"Aprendiendo Juntos\"\n            }\n        ],\n        \"timezone\": \"Europe/Madrid\",\n        \"typologies\": [\n            {\n                \"id\": \"687e0b58fa8fd18ece0f2682\",\n                \"location_type\": \"indoor\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"test\",\n                \"visible_name\": \"test entrada\",\n                \"with_authorized_users\": false,\n                \"with_description\": false,\n                \"with_files\": false,\n                \"with_geolocation_data\": false,\n                \"with_medias\": false,\n                \"with_temporality_data\": false\n            }\n        ],\n        \"typology_nodes\": [],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"user_location_area\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": false,\n            \"requests_process\": false,\n            \"requests_comments\": false,\n            \"requests_worknotes\": false,\n            \"requests_reiterations\": false,\n            \"requests_complaints\": false,\n            \"user_evaluation\": false,\n            \"service_survey\": false,\n            \"alerts\": true,\n            \"inventory\": false,\n            \"backoffice_admin\": true,\n            \"app_configuration\": true,\n            \"notifications\": false,\n            \"planned_requests\": false,\n            \"planning\": false,\n            \"users\": false,\n            \"predetermined_response\": false,\n            \"predetermined_response_external_source\": false,\n            \"company_enquiry\": false,\n            \"layer\": true,\n            \"jurisdiction_element\": false,\n            \"webhook\": false,\n            \"user_guide\": false,\n            \"worklog\": false,\n            \"calendar\": false\n        }\n    },\n    {\n        \"only_registered_users\": true,\n        \"automatic_typology\": false,\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5ef5b9cd250e00dc038b45c2\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Badajoz_municipios\",\n                \"name\": \"Municipios de Badajoz\",\n                \"description\": \"Municipios de Badajoz\",\n                \"preset\": true,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            }\n        ],\n        \"max_export_requests\": 1000,\n        \"accepted_id_documents\": [],\n        \"buttons\": [],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e21fee15c120d8b457b\",\n                \"name\": \"Solicitantes Internos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5e2f61effee15c140d8b456b\",\n                \"name\": \"Gerentes de la ciudad\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5ef5e311a1caa852048b4595\",\n                \"name\": \"Técnicos\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5ef5e39742e5644a048b457e\",\n                \"name\": \"Jefe de Servicio\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5ef5e3a99b223c04048b45b0\",\n                \"name\": \"Jefe de Sección\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5ef5e3bc42e5644b048b4586\",\n                \"name\": \"Jefe de Negociado\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5ef5e3e59b223c01048b459a\",\n                \"name\": \"Inspectores\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"5f118a9997738e54038b456b\",\n                \"name\": \"Director Área\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            }\n        ],\n        \"company_emails\": [\n            \"comentarios.diputacionbadajoz@mejoratuciudad.org\"\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": 39.987837369009,\n                \"long\": -4.5318640833973\n            },\n            {\n                \"lat\": 37.816494059746,\n                \"long\": -7.5791748548941\n            }\n        ],\n        \"geo_perimeter\": [\n            {\n                \"lat\": 39.889411949849,\n                \"long\": -6.9505126710133\n            },\n            {\n                \"lat\": 39.676468316954,\n                \"long\": -7.4473389173941\n            },\n            {\n                \"lat\": 39.659554731756,\n                \"long\": -7.5791748548941\n            },\n            {\n                \"lat\": 39.345114847579,\n                \"long\": -7.4542273646473\n            },\n            {\n                \"lat\": 39.064178872272,\n                \"long\": -7.1795691615223\n            },\n            {\n                \"lat\": 38.619214816105,\n                \"long\": -7.3223914271473\n            },\n            {\n                \"lat\": 38.318155166718,\n                \"long\": -7.3223914271473\n            },\n            {\n                \"lat\": 38.067754619103,\n                \"long\": -7.1026648646473\n            },\n            {\n                \"lat\": 37.989869151544,\n                \"long\": -6.6082800990223\n            },\n            {\n                \"lat\": 37.816494059746,\n                \"long\": -5.9161414271473\n            },\n            {\n                \"lat\": 37.868549471038,\n                \"long\": -5.4547156458973\n            },\n            {\n                \"lat\": 38.171473050432,\n                \"long\": -5.2679480677723\n            },\n            {\n                \"lat\": 38.498941797075,\n                \"long\": -4.9053992396473\n            },\n            {\n                \"lat\": 38.867711059667,\n                \"long\": -4.6966590052723\n            },\n            {\n                \"lat\": 39.260101408865,\n                \"long\": -4.5318640833973\n            },\n            {\n                \"lat\": 39.709494950913,\n                \"long\": -4.6417273646473\n            },\n            {\n                \"lat\": 39.819279707201,\n                \"long\": -4.9493445521473\n            },\n            {\n                \"lat\": 39.987837369009,\n                \"long\": -5.3009070521473\n            }\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5f0f2d3adc0fb.png\",\n        \"id\": \"5ef5a95e9b223cfb038b4599\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                        \"id\": \"5ef5b9cd250e00dc038b45c2\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"zones_prod:Badajoz_municipios\",\n                        \"name\": \"Municipios de Badajoz\",\n                        \"description\": \"Municipios de Badajoz\",\n                        \"preset\": true,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"ADMINISTRATIVE\"\n                    }\n                ],\n                \"extent\": [\n                    -7.455137,\n                    37.897487,\n                    -4.516035,\n                    39.542157\n                ],\n                \"id\": \"5ef5b89fa1caa84b048b4659\",\n                \"location_additional_data\": {},\n                \"name\": \"Diputación de Badajoz\",\n                \"type\": \"city\",\n                \"visible_name\": \"Diputación de Badajoz\",\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"680f2381e5d6ac77af0cc8d6\",\n                \"name\": \"Acedera\",\n                \"type\": \"city\",\n                \"visible_name\": \"Acedera\",\n                \"position\": {\n                    \"address_string\": \"C. Bo. Nuevo, 2, 06730 Acedera, Badajoz, Spain\",\n                    \"lat\": 39.076439,\n                    \"long\": -5.5717741\n                },\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"es.dip.badajoz\",\n        \"key_name\": \"Badajoz, España\",\n        \"locales\": [\n            \"es\"\n        ],\n        \"name\": \"Diputación de Badajoz\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17716\",\n                \"options\": [\n                    \"inperson\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17717\",\n                \"options\": [\n                    \"ios\"\n                ]\n            },\n            {\n                \"id\": \"5850de88e22c6d9f51b17718\",\n                \"options\": [\n                    \"android\",\n                    \"internal\"\n                ]\n            },\n            {\n                \"id\": \"60c09cdccdf34808168b4573\",\n                \"options\": [\n                    \"android\"\n                ]\n            }\n        ],\n        \"lat\": 38.8757766,\n        \"long\": -6.9710277,\n        \"tags\": [],\n        \"timezone\": \"Europe/Madrid\",\n        \"typologies\": [],\n        \"typology_nodes\": [\n            {\n                \"id\": \"5ef9beb69b223c75068b4568\",\n                \"color\": \"#af85f2\",\n                \"order\": 1,\n                \"typology\": {\n                    \"id\": \"5ef9bbb742e564ea068b4573\",\n                    \"color\": \"#337ab7\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Solicitudes que hacen los Ayuntamientos de los Municipios de Badajoz a su Diputación\",\n                    \"visible_name\": \"Solicitudes\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Solicitada\"\n            },\n            {\n                \"id\": \"5ef9bf919b223c77068b4570\",\n                \"color\": \"#e89e68\",\n                \"order\": 3,\n                \"typology\": {\n                    \"id\": \"5ef9bbb742e564ea068b4573\",\n                    \"color\": \"#337ab7\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Solicitudes que hacen los Ayuntamientos de los Municipios de Badajoz a su Diputación\",\n                    \"visible_name\": \"Solicitudes\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"En Consulta\"\n            },\n            {\n                \"id\": \"5ef9bfec42e564ee068b4579\",\n                \"color\": \"#8a7529\",\n                \"order\": 4,\n                \"typology\": {\n                    \"id\": \"5ef9bbb742e564ea068b4573\",\n                    \"color\": \"#337ab7\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Solicitudes que hacen los Ayuntamientos de los Municipios de Badajoz a su Diputación\",\n                    \"visible_name\": \"Solicitudes\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"En distribución\"\n            },\n            {\n                \"id\": \"5ef9c026a1caa856078b4575\",\n                \"color\": \"#52849c\",\n                \"order\": 5,\n                \"typology\": {\n                    \"id\": \"5ef9bbb742e564ea068b4573\",\n                    \"color\": \"#337ab7\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Solicitudes que hacen los Ayuntamientos de los Municipios de Badajoz a su Diputación\",\n                    \"visible_name\": \"Solicitudes\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Pte Asignar\"\n            },\n            {\n                \"id\": \"5ef9c055a1caa85a078b4571\",\n                \"color\": \"#8c949c\",\n                \"order\": 6,\n                \"typology\": {\n                    \"id\": \"5ef9bbb742e564ea068b4573\",\n                    \"color\": \"#337ab7\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Solicitudes que hacen los Ayuntamientos de los Municipios de Badajoz a su Diputación\",\n                    \"visible_name\": \"Solicitudes\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Planificado en Ejecución\"\n            },\n            {\n                \"id\": \"5ef9c0b3a1caa856078b4576\",\n                \"color\": \"#2997c4\",\n                \"order\": 7,\n                \"typology\": {\n                    \"id\": \"5ef9bbb742e564ea068b4573\",\n                    \"color\": \"#337ab7\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Solicitudes que hacen los Ayuntamientos de los Municipios de Badajoz a su Diputación\",\n                    \"visible_name\": \"Solicitudes\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"En ejecución\"\n            },\n            {\n                \"id\": \"5ef9c0de42e564e9068b4592\",\n                \"color\": \"#33b79f\",\n                \"order\": 8,\n                \"typology\": {\n                    \"id\": \"5ef9bbb742e564ea068b4573\",\n                    \"color\": \"#337ab7\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Solicitudes que hacen los Ayuntamientos de los Municipios de Badajoz a su Diputación\",\n                    \"visible_name\": \"Solicitudes\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Pte Validar ejecución\"\n            },\n            {\n                \"id\": \"5ef9c12d9b223c76068b457e\",\n                \"color\": \"#96d97c\",\n                \"order\": 9,\n                \"typology\": {\n                    \"id\": \"5ef9bbb742e564ea068b4573\",\n                    \"color\": \"#337ab7\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Solicitudes que hacen los Ayuntamientos de los Municipios de Badajoz a su Diputación\",\n                    \"visible_name\": \"Solicitudes\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Pte de comunicar\"\n            },\n            {\n                \"id\": \"5ef9c1c5250e00be068b457e\",\n                \"color\": \"#439425\",\n                \"order\": 10,\n                \"typology\": {\n                    \"id\": \"5ef9bbb742e564ea068b4573\",\n                    \"color\": \"#337ab7\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Solicitudes que hacen los Ayuntamientos de los Municipios de Badajoz a su Diputación\",\n                    \"visible_name\": \"Solicitudes\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Solucionado\"\n            },\n            {\n                \"id\": \"5ef9c1ea9b223c72068b4579\",\n                \"color\": \"#d12a2b\",\n                \"order\": 11,\n                \"typology\": {\n                    \"id\": \"5ef9bbb742e564ea068b4573\",\n                    \"color\": \"#337ab7\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png\",\n                    \"location_type\": \"geolocation\",\n                    \"order\": 1,\n                    \"public\": false,\n                    \"typology_description\": \"Solicitudes que hacen los Ayuntamientos de los Municipios de Badajoz a su Diputación\",\n                    \"visible_name\": \"Solicitudes\",\n                    \"with_authorized_users\": false,\n                    \"with_description\": false,\n                    \"with_files\": true,\n                    \"with_geolocation_data\": true,\n                    \"with_medias\": true,\n                    \"with_temporality_data\": true\n                },\n                \"visible_name\": \"Cancelado\"\n            }\n        ],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"user_location_area\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": true,\n            \"requests_process\": true,\n            \"requests_comments\": true,\n            \"requests_worknotes\": true,\n            \"requests_reiterations\": true,\n            \"requests_complaints\": true,\n            \"user_evaluation\": true,\n            \"service_survey\": false,\n            \"alerts\": true,\n            \"inventory\": false,\n            \"backoffice_admin\": true,\n            \"app_configuration\": true,\n            \"notifications\": true,\n            \"planned_requests\": true,\n            \"planning\": false,\n            \"users\": false,\n            \"predetermined_response\": true,\n            \"predetermined_response_external_source\": false,\n            \"company_enquiry\": false,\n            \"layer\": false,\n            \"jurisdiction_element\": false,\n            \"webhook\": false,\n            \"user_guide\": false,\n            \"worklog\": false,\n            \"calendar\": false\n        },\n        \"app_urls\": {\n            \"web_url\": null,\n            \"google_play_manager\": null,\n            \"google_play_citizens\": null,\n            \"app_store\": null\n        }\n    },\n    {\n        \"only_registered_users\": true,\n        \"automatic_typology\": false,\n        \"map_layers\": [],\n        \"max_export_requests\": 0,\n        \"accepted_id_documents\": [],\n        \"buttons\": [],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            }\n        ],\n        \"geo_bound\": [],\n        \"geo_perimeter\": [],\n        \"id\": \"65cbca92492f30e31e0fb362\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcb2969fa6d719202fd73\",\n                \"name\": \"Prueba 2\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 2\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcb30aeabfa9e4c0e7612\",\n                \"name\": \"Prueba 1_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 1_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcc02595fa0a3e40f2bc2\",\n                \"name\": \"Prueba 1_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 1\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcc46ac9522ce4b0d5113\",\n                \"name\": \"Prueba 2_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 2_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcd46251452d35907c782\",\n                \"name\": \"Prueba 2_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 25\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcd621ecf6e5c620b9782\",\n                \"name\": \"Prueba 1\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 1\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcecb77c0b76c6e0078e2\",\n                \"name\": \"Prueba 2_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 25_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbced06eb3abe623020473\",\n                \"name\": \"Prueba 2_copy_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 25_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbced6264d0c595f0e7e53\",\n                \"name\": \"Prueba 2_copy_copy_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 25_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcedb86c2c2ba3000f3d2\",\n                \"name\": \"Prueba 1_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 1_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcee529b9fc7f8d0241d2\",\n                \"name\": \"Prueba 1_copy_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 1_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbceeb74c4b572a0027822\",\n                \"name\": \"Prueba 1_copy_copy_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 1_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcef577c0b76c6e0078e3\",\n                \"name\": \"Prueba 1_copy_copy_copy_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 1_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf0077c0b76c6e0078e4\",\n                \"name\": \"Prueba 1_copy_copy_copy_copy_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"Prueba 1_copy_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf1674c4b572a0027824\",\n                \"name\": \"prueba 3\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 3\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf245f26d3767503ebf2\",\n                \"name\": \"prueba 3_copy\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 3_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf2a29b9fc7f8d0241d3\",\n                \"name\": \"prueba 3_copy_copy\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 3_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf2f86c2c2ba3000f3d3\",\n                \"name\": \"prueba 3_copy_copy_copy\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 3_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf356eb3abe623020474\",\n                \"name\": \"prueba 3_copy_copy_copy_copy\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 3_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf3b74c4b572a0027825\",\n                \"name\": \"prueba 3_copy_copy_copy_copy_copy\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 3_copy_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf4086c2c2ba3000f3d4\",\n                \"name\": \"prueba 3_copy_copy_copy_copy_copy_copy\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 3_copy_copy_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf465f26d3767503ebf3\",\n                \"name\": \"prueba 3_copy_copy_copy_copy_copy_copy_copy\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 3_copy_copy_copy_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf576eb3abe623020476\",\n                \"name\": \"prueba 4\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 4\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf5d74c4b572a0027826\",\n                \"name\": \"prueba 4_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 4_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf6277c0b76c6e0078e5\",\n                \"name\": \"prueba 4_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 4_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf675f26d3767503ebf4\",\n                \"name\": \"prueba 4_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 4_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf6d264d0c595f0e7e54\",\n                \"name\": \"prueba 4_copy_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 4_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf9577c0b76c6e0078e6\",\n                \"name\": \"prueba 4_copy_copy_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 4_copy_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcf9b74c4b572a0027827\",\n                \"name\": \"prueba 4_copy_copy_copy_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 4_copy_copy_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcfa186c2c2ba3000f3d5\",\n                \"name\": \"prueba 4_copy_copy_copy_copy_copy_copy_copy\",\n                \"type\": \"city\",\n                \"visible_name\": \"prueba 4_copy_copy_copy_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcfaa6eb3abe623020477\",\n                \"name\": \"prueba 3_copy_copy_copy_copy_copy_copy_copy_copy\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 3_copy_copy_copy_copy_copy_copy_copy_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcfc086c2c2ba3000f3d7\",\n                \"name\": \"prueba 5\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 5\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcfcb6eb3abe623020478\",\n                \"name\": \"prueba 5_copy\",\n                \"type\": \"building\",\n                \"visible_name\": \"prueba 5_copy\",\n                \"position\": {},\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcfe786c2c2ba3000f3d9\",\n                \"name\": \"holiwis\",\n                \"type\": \"city\",\n                \"visible_name\": \"holiwis\",\n                \"position\": {\n                    \"lat\": 40.229227625609,\n                    \"long\": -3.5371983858877\n                },\n                \"is_main\": false\n            },\n            {\n                \"map_layers\": [],\n                \"extent\": [],\n                \"guided_module\": false,\n                \"id\": \"65cbcffe6eb3abe62302047a\",\n                \"name\": \"zona\",\n                \"type\": \"building\",\n                \"visible_name\": \"zona\",\n                \"position\": {},\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"evo.subprojectos\",\n        \"key_name\": \"evosubp\",\n        \"locales\": [\n            \"es\"\n        ],\n        \"name\": \"Para Borrar\",\n        \"origin_devices\": [],\n        \"lat\": 40.416787,\n        \"long\": -3.703353,\n        \"tags\": [],\n        \"timezone\": \"Europe/Madrid\",\n        \"typologies\": [],\n        \"typology_nodes\": [],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"user_location_area\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": false,\n            \"requests_process\": false,\n            \"requests_comments\": false,\n            \"requests_worknotes\": false,\n            \"requests_reiterations\": false,\n            \"requests_complaints\": false,\n            \"user_evaluation\": false,\n            \"service_survey\": false,\n            \"alerts\": false,\n            \"inventory\": false,\n            \"backoffice_admin\": false,\n            \"app_configuration\": false,\n            \"notifications\": false,\n            \"planned_requests\": false,\n            \"planning\": false,\n            \"users\": false,\n            \"predetermined_response\": false,\n            \"predetermined_response_external_source\": false,\n            \"company_enquiry\": false,\n            \"layer\": false,\n            \"jurisdiction_element\": false,\n            \"webhook\": false,\n            \"user_guide\": false,\n            \"worklog\": false,\n            \"calendar\": false\n        }\n    },\n    {\n        \"only_registered_users\": false,\n        \"automatic_typology\": false,\n        \"map_layers\": [],\n        \"max_export_requests\": 0,\n        \"accepted_id_documents\": [],\n        \"buttons\": [],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"64a6834f03c986eb3501a745\",\n                \"name\": \"Calidad del Airesss\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"661e95eaeb35f140a7080dc7\",\n                \"name\": \"Canal de Prueba\"\n            },\n            {\n                \"external\": false,\n                \"id\": \"66fdb90f2ca719888d0f975b\",\n                \"name\": \"externo\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"670e94b76e0a4db3c407cfd5\",\n                \"name\": \"emprendedores\"\n            }\n        ],\n        \"company_emails\": [\n            \"comentarios.ingame@radmas.com\"\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": -1.0,\n                \"long\": -180.0\n            },\n            {\n                \"lat\": 1.0,\n                \"long\": 180.0\n            }\n        ],\n        \"geo_perimeter\": [],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/66c5d56569743605092528.png\",\n        \"id\": \"664e1f9aa51b300e700a5088\",\n        \"jurisdiction_elements\": [],\n        \"jurisdiction_id\": \"es.madridingame\",\n        \"key_name\": \"Madrid\",\n        \"locales\": [\n            \"es\"\n        ],\n        \"name\": \"Madrid In Game\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17715\",\n                \"options\": []\n            }\n        ],\n        \"lat\": 40.41688,\n        \"long\": -3.70321,\n        \"tags\": [],\n        \"timezone\": \"Europe/Madrid\",\n        \"typologies\": [],\n        \"typology_nodes\": [],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"user_location_area\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": false,\n            \"requests_process\": false,\n            \"requests_comments\": false,\n            \"requests_worknotes\": false,\n            \"requests_reiterations\": false,\n            \"requests_complaints\": false,\n            \"user_evaluation\": false,\n            \"service_survey\": false,\n            \"alerts\": false,\n            \"inventory\": false,\n            \"backoffice_admin\": false,\n            \"app_configuration\": false,\n            \"notifications\": false,\n            \"planned_requests\": false,\n            \"planning\": false,\n            \"users\": true,\n            \"predetermined_response\": false,\n            \"predetermined_response_external_source\": false,\n            \"company_enquiry\": false,\n            \"layer\": false,\n            \"jurisdiction_element\": false,\n            \"webhook\": false,\n            \"user_guide\": false,\n            \"worklog\": false,\n            \"calendar\": false\n        },\n        \"app_urls\": {\n            \"web_url\": \"https://mejoratuciudad.org\",\n            \"google_play_manager\": \"https://google.com\",\n            \"google_play_citizens\": \"https://play.google.com\",\n            \"app_store\": \"https://itunes.apple.com\"\n        }\n    },\n    {\n        \"only_registered_users\": true,\n        \"automatic_typology\": false,\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                \"id\": \"672b8aae101e99aca10ec857\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:RADMAS_MADRID_geofence\",\n                \"name\": \"geofence\",\n                \"description\": \"geofence\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"GEOFENCE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                \"id\": \"683db3588994c58f4e039612\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:RADMAS_MADRID_planta_00\",\n                \"level\": 0,\n                \"name\": \"0\",\n                \"description\": \"0\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"BASE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                \"id\": \"683db63dca9a19635c0eb863\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:RADMAS_MADRID_planta_03\",\n                \"level\": 3,\n                \"name\": \"3\",\n                \"description\": \"3\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"BASE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                \"id\": \"683dc0e8314c1438860a9ea2\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:RADMAS_MADRID_poi_planta_03_aseos\",\n                \"level\": 3,\n                \"name\": \"Aseos\",\n                \"description\": \"Aseos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                \"id\": \"683dc1a6544e2499980adf93\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:RADMAS_MADRID_poi_planta_03_ascensores_y_escaleras\",\n                \"level\": 3,\n                \"name\": \"Ascensores y escaleras\",\n                \"description\": \"Ascensores y escaleras\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                \"id\": \"683dc2015f214c1fe507eca2\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:RADMAS_MADRID_poi_planta_00_ascensores_y_escaleras\",\n                \"level\": 0,\n                \"name\": \"Ascensores y escaleras\",\n                \"description\": \"Ascensores y escaleras\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                \"id\": \"683dc25f5f214c1fe507eca3\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:RADMAS_MADRID_poi_planta_03_salas_de_reuniones\",\n                \"level\": 3,\n                \"name\": \"Salas de reuniones\",\n                \"description\": \"Salas de reuniones\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            }\n        ],\n        \"max_export_requests\": 0,\n        \"accepted_id_documents\": [],\n        \"buttons\": [],\n        \"channels\": [\n            {\n                \"external\": false,\n                \"id\": \"5e2f5e0601394ae00d8b456c\",\n                \"name\": \"Mi trabajo\"\n            },\n            {\n                \"external\": true,\n                \"id\": \"6707a5e435d16ea8ba023694\",\n                \"name\": \"Arte\"\n            }\n        ],\n        \"geo_bound\": [\n            {\n                \"lat\": -1.0,\n                \"long\": -180.0\n            },\n            {\n                \"lat\": 1.0,\n                \"long\": 180.0\n            }\n        ],\n        \"geo_perimeter\": [],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/683db6687f3fe479045025.png\",\n        \"id\": \"672b8603101e99aca10ec823\",\n        \"jurisdiction_elements\": [\n            {\n                \"map_layers\": [\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                        \"id\": \"672b8aae101e99aca10ec857\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:RADMAS_MADRID_geofence\",\n                        \"name\": \"geofence\",\n                        \"description\": \"geofence\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"GEOFENCE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                        \"id\": \"683db3588994c58f4e039612\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:RADMAS_MADRID_planta_00\",\n                        \"level\": 0,\n                        \"name\": \"0\",\n                        \"description\": \"0\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"BASE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                        \"id\": \"683db63dca9a19635c0eb863\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:RADMAS_MADRID_planta_03\",\n                        \"level\": 3,\n                        \"name\": \"3\",\n                        \"description\": \"3\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"BASE\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                        \"id\": \"683dc0e8314c1438860a9ea2\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:RADMAS_MADRID_poi_planta_03_aseos\",\n                        \"level\": 3,\n                        \"name\": \"Aseos\",\n                        \"description\": \"Aseos\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                        \"id\": \"683dc1a6544e2499980adf93\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:RADMAS_MADRID_poi_planta_03_ascensores_y_escaleras\",\n                        \"level\": 3,\n                        \"name\": \"Ascensores y escaleras\",\n                        \"description\": \"Ascensores y escaleras\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                        \"id\": \"683dc2015f214c1fe507eca2\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:RADMAS_MADRID_poi_planta_00_ascensores_y_escaleras\",\n                        \"level\": 0,\n                        \"name\": \"Ascensores y escaleras\",\n                        \"description\": \"Ascensores y escaleras\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    },\n                    {\n                        \"backend\": \"OWS\",\n                        \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n                        \"id\": \"683dc25f5f214c1fe507eca3\",\n                        \"is_default\": false,\n                        \"color\": \"#000000\",\n                        \"internal_name\": \"buildings:RADMAS_MADRID_poi_planta_03_salas_de_reuniones\",\n                        \"level\": 3,\n                        \"name\": \"Salas de reuniones\",\n                        \"description\": \"Salas de reuniones\",\n                        \"preset\": false,\n                        \"public\": true,\n                        \"tags\": [],\n                        \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                        \"type\": \"POI\"\n                    }\n                ],\n                \"extent\": [\n                    -3.743738,\n                    40.368987,\n                    -3.741763,\n                    40.370237\n                ],\n                \"guided_module\": false,\n                \"id\": \"672b8860101e99aca10ec855\",\n                \"name\": \"Rad+\",\n                \"type\": \"building\",\n                \"visible_name\": \"Rad+\",\n                \"is_main\": false\n            }\n        ],\n        \"jurisdiction_id\": \"org.radmas\",\n        \"locales\": [\n            \"es\"\n        ],\n        \"name\": \"Radmas\",\n        \"origin_devices\": [\n            {\n                \"id\": \"5850de88e22c6d9f51b17718\",\n                \"options\": [\n                    \"android\",\n                    \"internal\"\n                ]\n            }\n        ],\n        \"lat\": 40.4167387,\n        \"long\": -3.7032914,\n        \"tags\": [],\n        \"timezone\": \"Europe/Madrid\",\n        \"typologies\": [],\n        \"typology_nodes\": [],\n        \"user_info\": [\n            {\n                \"available\": true,\n                \"field\": \"first_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"last_name\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"email\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"phone\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"secondary_phone\"\n            },\n            {\n                \"available\": true,\n                \"field\": \"twitter_nickname\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_document\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"gender\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"birthday\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"addresses\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"user_location_area\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"address\"\n            },\n            {\n                \"available\": false,\n                \"field\": \"id_documents\"\n            }\n        ],\n        \"modules\": {\n            \"requests\": false,\n            \"requests_process\": false,\n            \"requests_comments\": false,\n            \"requests_worknotes\": false,\n            \"requests_reiterations\": false,\n            \"requests_complaints\": false,\n            \"user_evaluation\": false,\n            \"service_survey\": false,\n            \"alerts\": false,\n            \"inventory\": false,\n            \"backoffice_admin\": false,\n            \"app_configuration\": false,\n            \"notifications\": false,\n            \"planned_requests\": false,\n            \"planning\": false,\n            \"users\": false,\n            \"predetermined_response\": false,\n            \"predetermined_response_external_source\": false,\n            \"company_enquiry\": false,\n            \"layer\": false,\n            \"jurisdiction_element\": false,\n            \"webhook\": false,\n            \"user_guide\": false,\n            \"worklog\": false,\n            \"calendar\": false\n        },\n        \"app_urls\": {\n            \"web_url\": null,\n            \"google_play_manager\": null,\n            \"google_play_citizens\": null,\n            \"app_store\": null\n        }\n    }\n]"
                },
                {
                  "id": "c08c719d-9e3e-42ee-a8d4-edb41822cbe0",
                  "name": "Bad Request Lat Long Nos Provided.",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdictions?appKey=1&lat={{latitude}}&long={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{latitude}}",
                          "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": "{{longitude}}",
                          "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": "{\n  \"code\": 400,\n  \"message\": \"latitude or longitude not provided\"\n}\n"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/jurisdictions/{{jurisdiction_id}}?app_key={{app_key}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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."
                    }
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso jurisdiction id."
                    }
                  ]
                },
                "description": "**Request Params**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\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). |\n\nEste 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": "{{publicBaseUrl}}/jurisdictions/{{jurisdiction_id}}?app_key={{app_key}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"channels\": {\n        \"2\": {\n            \"external\": true,\n            \"id\": \"5e2f5d97e8833f980e8b456a\",\n            \"name\": \"Atención Ciudadana 02\"\n        },\n        \"13\": {\n            \"external\": true,\n            \"id\": \"64a6834f03c986eb3501a745\",\n            \"name\": \"Calidad del Airesss\"\n        },\n        \"27\": {\n            \"external\": true,\n            \"id\": \"6707a3e935d16ea8ba023692\",\n            \"name\": \"Taxista\"\n        },\n        \"28\": {\n            \"external\": true,\n            \"id\": \"6707a490ff6dc1826d02d533\",\n            \"name\": \"Bombero\"\n        },\n        \"29\": {\n            \"external\": true,\n            \"id\": \"6707a4d16fb710a4340702e3\",\n            \"name\": \"Turista\"\n        },\n        \"30\": {\n            \"external\": true,\n            \"id\": \"6707a53ce360bb733d012834\",\n            \"name\": \"Vida sana\"\n        },\n        \"31\": {\n            \"external\": true,\n            \"id\": \"6707a56935d16ea8ba023693\",\n            \"name\": \"Turismo\"\n        },\n        \"32\": {\n            \"external\": true,\n            \"id\": \"6707a59be360bb733d012835\",\n            \"name\": \"Ocio\"\n        },\n        \"33\": {\n            \"external\": true,\n            \"id\": \"6707a5be6fb710a4340702e4\",\n            \"name\": \"Danza\"\n        },\n        \"34\": {\n            \"external\": true,\n            \"id\": \"6707a5e435d16ea8ba023694\",\n            \"name\": \"Arte\"\n        },\n        \"37\": {\n            \"external\": true,\n            \"id\": \"670e83a2be3d8d43720fc222\",\n            \"name\": \"externo prueba\"\n        },\n        \"39\": {\n            \"external\": true,\n            \"id\": \"670e90553ae05dcb6f088352\",\n            \"name\": \"interno de prueba sin icono\"\n        },\n        \"42\": {\n            \"external\": true,\n            \"id\": \"671173ec2395a6b7df0bf935\",\n            \"name\": \"prueba231213232\"\n        },\n        \"46\": {\n            \"external\": true,\n            \"id\": \"671ffea1405a78e44f089123\",\n            \"name\": \"buenas\"\n        },\n        \"47\": {\n            \"external\": true,\n            \"id\": \"672cbeb8b52e10d5900e6042\",\n            \"name\": \"Canal_obligatorio\"\n        },\n        \"48\": {\n            \"external\": true,\n            \"id\": \"672cc15beb6d0d86b20b80b2\",\n            \"name\": \"canal_obligatorio\"\n        },\n        \"49\": {\n            \"external\": true,\n            \"id\": \"672cde444b419fd019011795\",\n            \"name\": \"Prueba Global Channels\"\n        },\n        \"50\": {\n            \"external\": true,\n            \"id\": \"672d084c1daef4e30c09b762\",\n            \"name\": \"CANAL_OBLIGATORIO\"\n        },\n        \"51\": {\n            \"external\": true,\n            \"id\": \"6738a3b069ce60555305a215\",\n            \"name\": \"global channel\"\n        },\n        \"53\": {\n            \"external\": true,\n            \"id\": \"6738ab9a69ce60555305a217\",\n            \"name\": \"canal global 3\"\n        },\n        \"54\": {\n            \"external\": true,\n            \"id\": \"6738ac474d2e5d4fa405a573\",\n            \"name\": \"canal global 4\"\n        },\n        \"55\": {\n            \"external\": true,\n            \"id\": \"673b2f790800c3a3200781c2\",\n            \"name\": \"asdasd\"\n        },\n        \"57\": {\n            \"external\": true,\n            \"id\": \"673db80cff77ca803d07e126\",\n            \"name\": \"Test 1\"\n        },\n        \"58\": {\n            \"external\": true,\n            \"id\": \"673db84068b70779b5011b8e\",\n            \"name\": \"Test 2\"\n        },\n        \"59\": {\n            \"external\": true,\n            \"id\": \"673db8696b60131e9c0210a7\",\n            \"name\": \"Global Externo\"\n        },\n        \"61\": {\n            \"external\": true,\n            \"id\": \"682201462e7c5fccfd005939\",\n            \"name\": \"prueba1\"\n        },\n        \"62\": {\n            \"external\": true,\n            \"id\": \"6822018233b2a2d5910ba782\",\n            \"name\": \"prueba1 epg\"\n        },\n        \"65\": {\n            \"external\": true,\n            \"id\": \"68c00ca5a50dbd22a304a205\",\n            \"name\": \"empadronado\"\n        }\n    },\n    \"only_registered_users\": false,\n    \"max_upload_files\": 5,\n    \"automatic_typology\": false,\n    \"map_layers\": [\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"5d9ee7bcde2efef4018b4569\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"64cb9cebaddc18074d0e4193\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"64cb9e98addc18074d0e4195\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletas\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"64cb9edb24ab2d777a0ca313\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"64df24ef07a26e434d01f893\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"667031dac97737f437009da6\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e93a7fca30a7b0d7e04\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e94a7fca30a7b0d7e0c\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e94a7fca30a7b0d7e0d\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletass\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e94a7fca30a7b0d7e0e\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e94a7fca30a7b0d7e0f\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e94a7fca30a7b0d7e11\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e9cfc8304ec890065d6\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e9cfc8304ec890065de\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e9cfc8304ec890065df\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletas\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e9cfc8304ec890065e0\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e9cfc8304ec890065e1\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55e9cfc8304ec890065e3\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55eb3a7fca30a7b0d7e13\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55eb3a7fca30a7b0d7e1b\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55eb3a7fca30a7b0d7e1c\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletas\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55eb3a7fca30a7b0d7e1d\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55eb3a7fca30a7b0d7e1e\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"66f55eb3a7fca30a7b0d7e20\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"670802e62f9d4a71cd06a755\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"670802e62f9d4a71cd06a75d\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"670802e62f9d4a71cd06a75e\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletas\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"670802e62f9d4a71cd06a75f\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"670802e62f9d4a71cd06a760\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"670802e62f9d4a71cd06a762\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67096bc2ffc05a02a10aeb01\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67096bc2ffc05a02a10aeb09\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67096bc2ffc05a02a10aeb0a\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletas\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67096bc2ffc05a02a10aeb0b\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67096bc3ffc05a02a10aeb0c\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67096bc3ffc05a02a10aeb0e\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834b8890a3779c2073c94\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834b8890a3779c2073c9c\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834b8890a3779c2073c9d\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletass\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834b8890a3779c2073c9e\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834b8890a3779c2073c9f\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834b8890a3779c2073ca1\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834e03ccfc90eab0a4843\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834e03ccfc90eab0a484b\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834e03ccfc90eab0a484c\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletas\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834e03ccfc90eab0a484d\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834e03ccfc90eab0a484e\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678834e03ccfc90eab0a4850\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678837b72bdfe4fd820c4af3\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678837b72bdfe4fd820c4afb\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678837b72bdfe4fd820c4afc\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletass\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678837b72bdfe4fd820c4afd\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678837b72bdfe4fd820c4afe\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"678837b72bdfe4fd820c4b00\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fa592bdfe4fd820c4b04\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fa592bdfe4fd820c4b0c\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fa592bdfe4fd820c4b0d\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletass\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fa592bdfe4fd820c4b0e\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fa592bdfe4fd820c4b0f\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fa592bdfe4fd820c4b11\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fab5deaa23504a049c38\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fab5deaa23504a049c40\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fab5deaa23504a049c41\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletass\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fab5deaa23504a049c42\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fab6deaa23504a049c43\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fab6deaa23504a049c45\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe6867c09c2f2f0909c5\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe6867c09c2f2f0909cd\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe6867c09c2f2f0909ce\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletass\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe6867c09c2f2f0909cf\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe6867c09c2f2f0909d0\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe6867c09c2f2f0909d2\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe7fe05c80a755015855\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe7fe05c80a75501585d\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe7fe05c80a75501585e\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletass\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe7fe05c80a75501585f\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe7fe05c80a755015860\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788fe7fe05c80a755015862\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788feb7f9371c00d10b1b93\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788feb7f9371c00d10b1b9b\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788feb7f9371c00d10b1b9c\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletas\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788feb7f9371c00d10b1b9d\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788feb7f9371c00d10b1b9e\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"6788feb7f9371c00d10b1ba0\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67e7425479962014f00e34e3\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"zones_prod:Alc_Distritos\",\n            \"name\": \"Distritos\",\n            \"description\": \"Distritos\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"ADMINISTRATIVE\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67e7425479962014f00e34eb\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n            \"name\": \"Aparcapatinetes\",\n            \"description\": \"Aparcapatinetes\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67e7425479962014f00e34ec\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n            \"level\": 8,\n            \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n            \"name\": \"Aparcabicicletas\",\n            \"description\": \"Aparcabicicletas\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\",\n            \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67e7425479962014f00e34ed\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n            \"name\": \"Aparcamientos (PMR)\",\n            \"description\": \"Aparcamientos (PMR)\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67e7425479962014f00e34ee\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n            \"name\": \"Puntos de Recarga\",\n            \"description\": \"Puntos de Recarga\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"POI\"\n        },\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n            \"id\": \"67e7425479962014f00e34f0\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n            \"name\": \"MAINTENANCE PRUEBA\",\n            \"description\": \"MAINTENANCE PRUEBA\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"MAINTENANCE ASSET\"\n        }\n    ],\n    \"accepted_id_documents\": [\n        \"idSpain\",\n        \"NIE\",\n        \"passportEU\",\n        \"curpMex\",\n        \"quiron_NHC\",\n        \"residenceCard\"\n    ],\n    \"buttons\": [\n        {\n            \"design\": {\n                \"icon\": {\n                    \"color\": \"#000000\"\n                },\n                \"background\": {\n                    \"color\": \"transparent\"\n                },\n                \"size\": 70,\n                \"color\": \"#000000\",\n                \"format\": \"transparent\",\n                \"char\": \"e843\"\n            },\n            \"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\",\n            \"button_code\": \"56b4962b6aa9180b158b4567\",\n            \"label\": \"Policía\",\n            \"news_collection\": [],\n            \"optional\": false,\n            \"phone_collection\": [],\n            \"sequence\": 0,\n            \"social_collection\": [],\n            \"url\": \"914904070\",\n            \"url_collection\": []\n        },\n        {\n            \"design\": {\n                \"icon\": {\n                    \"color\": \"#000000\"\n                },\n                \"background\": {\n                    \"color\": \"transparent\"\n                },\n                \"size\": 70,\n                \"color\": \"#000000\",\n                \"format\": \"transparent\",\n                \"char\": \"e894\"\n            },\n            \"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\",\n            \"button_code\": \"56b4962b6aa9180b158b4568\",\n            \"label\": \"Web Municipal\",\n            \"news_collection\": [],\n            \"optional\": false,\n            \"phone_collection\": [],\n            \"sequence\": 1,\n            \"social_collection\": [],\n            \"url\": \"http://www.alcobendas.org\",\n            \"url_collection\": []\n        }\n    ],\n    \"company_emails\": [\n        \"comentarios.alcobendas@mejoratuciudad.org\"\n    ],\n    \"geo_bound\": [\n        {\n            \"lat\": 40.588856338396,\n            \"long\": -3.5502024713465\n        },\n        {\n            \"lat\": 40.501207353774,\n            \"long\": -3.701564402238\n        }\n    ],\n    \"geo_perimeter\": [\n        {\n            \"lat\": 40.524463274111,\n            \"long\": -3.6659115545395\n        },\n        {\n            \"lat\": 40.523955219525,\n            \"long\": -3.6659362768742\n        },\n        {\n            \"lat\": 40.523461366455,\n            \"long\": -3.6656992902163\n        },\n        {\n            \"lat\": 40.52326078878,\n            \"long\": -3.6656280068925\n        },\n        {\n            \"lat\": 40.523044804662,\n            \"long\": -3.66558821055\n        },\n        {\n            \"lat\": 40.52291172678,\n            \"long\": -3.6656067275224\n        },\n        {\n            \"lat\": 40.522744581326,\n            \"long\": -3.6656448705613\n        },\n        {\n            \"lat\": 40.522625107122,\n            \"long\": -3.6656477025535\n        },\n        {\n            \"lat\": 40.522549572398,\n            \"long\": -3.665639045663\n        },\n        {\n            \"lat\": 40.522492007824,\n            \"long\": -3.6656542955615\n        },\n        {\n            \"lat\": 40.522370693067,\n            \"long\": -3.665726407344\n        },\n        {\n            \"lat\": 40.522291865918,\n            \"long\": -3.6657732034008\n        },\n        {\n            \"lat\": 40.522180360786,\n            \"long\": -3.6658157802193\n        },\n        {\n            \"lat\": 40.521965449952,\n            \"long\": -3.6658711459712\n        },\n        {\n            \"lat\": 40.521767113703,\n            \"long\": -3.6659127450926\n        },\n        {\n            \"lat\": 40.521512733465,\n            \"long\": -3.6659855456036\n        },\n        {\n            \"lat\": 40.5211091969,\n            \"long\": -3.6661779909293\n        },\n        {\n            \"lat\": 40.520899365774,\n            \"long\": -3.6655237946213\n        },\n        {\n            \"lat\": 40.520835203172,\n            \"long\": -3.6653237704792\n        },\n        {\n            \"lat\": 40.520828477784,\n            \"long\": -3.665302690758\n        },\n        {\n            \"lat\": 40.520801219936,\n            \"long\": -3.6652176600822\n        },\n        {\n            \"lat\": 40.52079396218,\n            \"long\": -3.6651951584983\n        },\n        {\n            \"lat\": 40.520532174069,\n            \"long\": -3.6643790908715\n        },\n        {\n            \"lat\": 40.519811022579,\n            \"long\": -3.6638772352364\n        },\n        {\n            \"lat\": 40.519674542806,\n            \"long\": -3.6637822753505\n        },\n        {\n            \"lat\": 40.520028743367,\n            \"long\": -3.6628457333653\n        },\n        {\n            \"lat\": 40.519861573965,\n            \"long\": -3.6627609794771\n        },\n        {\n            \"lat\": 40.519833907347,\n            \"long\": -3.6627468951405\n        },\n        {\n            \"lat\": 40.517896688038,\n            \"long\": -3.6617644622241\n        },\n        {\n            \"lat\": 40.517262060619,\n            \"long\": -3.6614426861503\n        },\n        {\n            \"lat\": 40.51435158061,\n            \"long\": -3.6596130457616\n        },\n        {\n            \"lat\": 40.513589017791,\n            \"long\": -3.6591337822098\n        },\n        {\n            \"lat\": 40.513533434727,\n            \"long\": -3.6591176567617\n        },\n        {\n            \"lat\": 40.513331969626,\n            \"long\": -3.6590590254128\n        },\n        {\n            \"lat\": 40.511832508634,\n            \"long\": -3.6586229674127\n        },\n        {\n            \"lat\": 40.511664680158,\n            \"long\": -3.65857422907\n        },\n        {\n            \"lat\": 40.511608040614,\n            \"long\": -3.6583798603314\n        },\n        {\n            \"lat\": 40.511456496681,\n            \"long\": -3.6578603206557\n        },\n        {\n            \"lat\": 40.513093057661,\n            \"long\": -3.6561454131097\n        },\n        {\n            \"lat\": 40.513014344281,\n            \"long\": -3.6557284550411\n        },\n        {\n            \"lat\": 40.512813872487,\n            \"long\": -3.6546680569859\n        },\n        {\n            \"lat\": 40.512794366777,\n            \"long\": -3.6545649383251\n        },\n        {\n            \"lat\": 40.512784307284,\n            \"long\": -3.6545118415444\n        },\n        {\n            \"lat\": 40.512783696082,\n            \"long\": -3.654508412506\n        },\n        {\n            \"lat\": 40.512697360066,\n            \"long\": -3.6543706611923\n        },\n        {\n            \"lat\": 40.512689221896,\n            \"long\": -3.6543600767316\n        },\n        {\n            \"lat\": 40.512664383691,\n            \"long\": -3.6543235977437\n        },\n        {\n            \"lat\": 40.512663133875,\n            \"long\": -3.6543215789562\n        },\n        {\n            \"lat\": 40.512648312904,\n            \"long\": -3.6542979454183\n        },\n        {\n            \"lat\": 40.512642241315,\n            \"long\": -3.6542883253616\n        },\n        {\n            \"lat\": 40.512640902083,\n            \"long\": -3.6542861876688\n        },\n        {\n            \"lat\": 40.512622688648,\n            \"long\": -3.6542570914483\n        },\n        {\n            \"lat\": 40.51260608135,\n            \"long\": -3.6542307257156\n        },\n        {\n            \"lat\": 40.512594921067,\n            \"long\": -3.6542129116302\n        },\n        {\n            \"lat\": 40.512573047573,\n            \"long\": -3.6541778780091\n        },\n        {\n            \"lat\": 40.512571618922,\n            \"long\": -3.6541756214143\n        },\n        {\n            \"lat\": 40.512555638186,\n            \"long\": -3.6541499700349\n        },\n        {\n            \"lat\": 40.512531531944,\n            \"long\": -3.6541114916755\n        },\n        {\n            \"lat\": 40.512516175769,\n            \"long\": -3.6540869087313\n        },\n        {\n            \"lat\": 40.512501713082,\n            \"long\": -3.6540636328902\n        },\n        {\n            \"lat\": 40.512486892725,\n            \"long\": -3.6540398814348\n        },\n        {\n            \"lat\": 40.512475821828,\n            \"long\": -3.6540221863185\n        },\n        {\n            \"lat\": 40.512458947563,\n            \"long\": -3.6539952279218\n        },\n        {\n            \"lat\": 40.512424663853,\n            \"long\": -3.6539403616726\n        },\n        {\n            \"lat\": 40.512385558984,\n            \"long\": -3.6538777762368\n        },\n        {\n            \"lat\": 40.512369489432,\n            \"long\": -3.6538518880625\n        },\n        {\n            \"lat\": 40.512236104304,\n            \"long\": -3.6536383622384\n        },\n        {\n            \"lat\": 40.512125486001,\n            \"long\": -3.653461177468\n        },\n        {\n            \"lat\": 40.51209843411,\n            \"long\": -3.6534178315094\n        },\n        {\n            \"lat\": 40.512064150052,\n            \"long\": -3.65336297765\n        },\n        {\n            \"lat\": 40.51204718688,\n            \"long\": -3.6533357826483\n        },\n        {\n            \"lat\": 40.512040580043,\n            \"long\": -3.6533252132781\n        },\n        {\n            \"lat\": 40.51203129537,\n            \"long\": -3.6533102505716\n        },\n        {\n            \"lat\": 40.512003171753,\n            \"long\": -3.6532652418242\n        },\n        {\n            \"lat\": 40.51195888833,\n            \"long\": -3.6531943443802\n        },\n        {\n            \"lat\": 40.511944693042,\n            \"long\": -3.6531715436644\n        },\n        {\n            \"lat\": 40.511927015155,\n            \"long\": -3.6531432794983\n        },\n        {\n            \"lat\": 40.511900855979,\n            \"long\": -3.6531013588919\n        },\n        {\n            \"lat\": 40.511884071578,\n            \"long\": -3.6530744018293\n        },\n        {\n            \"lat\": 40.51181353939,\n            \"long\": -3.6529614652345\n        },\n        {\n            \"lat\": 40.511798808219,\n            \"long\": -3.652937833167\n        },\n        {\n            \"lat\": 40.511795504448,\n            \"long\": -3.6529326075353\n        },\n        {\n            \"lat\": 40.51178425521,\n            \"long\": -3.652914556946\n        },\n        {\n            \"lat\": 40.511766934928,\n            \"long\": -3.6528867685274\n        },\n        {\n            \"lat\": 40.511692929614,\n            \"long\": -3.6527682509613\n        },\n        {\n            \"lat\": 40.511677394311,\n            \"long\": -3.6527434308227\n        },\n        {\n            \"lat\": 40.511663377101,\n            \"long\": -3.652720986132\n        },\n        {\n            \"lat\": 40.511636860765,\n            \"long\": -3.652678472213\n        },\n        {\n            \"lat\": 40.51161882575,\n            \"long\": -3.6526496146651\n        },\n        {\n            \"lat\": 40.511598559287,\n            \"long\": -3.6526170763923\n        },\n        {\n            \"lat\": 40.511585345477,\n            \"long\": -3.6525959379353\n        },\n        {\n            \"lat\": 40.511582131775,\n            \"long\": -3.6525907132103\n        },\n        {\n            \"lat\": 40.511570614896,\n            \"long\": -3.6525721879984\n        },\n        {\n            \"lat\": 40.511555704141,\n            \"long\": -3.6525484363254\n        },\n        {\n            \"lat\": 40.511547043955,\n            \"long\": -3.6525345422084\n        },\n        {\n            \"lat\": 40.511531062179,\n            \"long\": -3.6525090096366\n        },\n        {\n            \"lat\": 40.511507581302,\n            \"long\": -3.6524713647638\n        },\n        {\n            \"lat\": 40.511491867765,\n            \"long\": -3.6524461889285\n        },\n        {\n            \"lat\": 40.511477492824,\n            \"long\": -3.6524232687527\n        },\n        {\n            \"lat\": 40.511451334047,\n            \"long\": -3.652381230676\n        },\n        {\n            \"lat\": 40.511435352236,\n            \"long\": -3.6523556981768\n        },\n        {\n            \"lat\": 40.511388719408,\n            \"long\": -3.6523657514053\n        },\n        {\n            \"lat\": 40.511117673243,\n            \"long\": -3.6524239126423\n        },\n        {\n            \"lat\": 40.511074656382,\n            \"long\": -3.6517452796684\n        },\n        {\n            \"lat\": 40.510969358262,\n            \"long\": -3.6506713374725\n        },\n        {\n            \"lat\": 40.510825277064,\n            \"long\": -3.6492188422787\n        },\n        {\n            \"lat\": 40.510797102171,\n            \"long\": -3.6490383321687\n        },\n        {\n            \"lat\": 40.510773878055,\n            \"long\": -3.6489387234016\n        },\n        {\n            \"lat\": 40.510746060218,\n            \"long\": -3.6488389523923\n        },\n        {\n            \"lat\": 40.510680022854,\n            \"long\": -3.6486467465439\n        },\n        {\n            \"lat\": 40.510423203314,\n            \"long\": -3.6480000560664\n        },\n        {\n            \"lat\": 40.510360150364,\n            \"long\": -3.6478859008551\n        },\n        {\n            \"lat\": 40.510311556083,\n            \"long\": -3.6478120163628\n        },\n        {\n            \"lat\": 40.510253683071,\n            \"long\": -3.6477380426981\n        },\n        {\n            \"lat\": 40.510162066645,\n            \"long\": -3.6476408460809\n        },\n        {\n            \"lat\": 40.510054109404,\n            \"long\": -3.6475015908287\n        },\n        {\n            \"lat\": 40.51002414609,\n            \"long\": -3.6474629419194\n        },\n        {\n            \"lat\": 40.509986659478,\n            \"long\": -3.647432482994\n        },\n        {\n            \"lat\": 40.509856712425,\n            \"long\": -3.6473267861506\n        },\n        {\n            \"lat\": 40.509096491841,\n            \"long\": -3.6465484955631\n        },\n        {\n            \"lat\": 40.508845867808,\n            \"long\": -3.646290091404\n        },\n        {\n            \"lat\": 40.508741001774,\n            \"long\": -3.6461616115271\n        },\n        {\n            \"lat\": 40.508675592914,\n            \"long\": -3.6460817852013\n        },\n        {\n            \"lat\": 40.508594484198,\n            \"long\": -3.6459740712244\n        },\n        {\n            \"lat\": 40.508481719683,\n            \"long\": -3.6458241530746\n        },\n        {\n            \"lat\": 40.508446511382,\n            \"long\": -3.6457728262792\n        },\n        {\n            \"lat\": 40.508421812983,\n            \"long\": -3.6457430818301\n        },\n        {\n            \"lat\": 40.508374158757,\n            \"long\": -3.645678062297\n        },\n        {\n            \"lat\": 40.508318872628,\n            \"long\": -3.6455923144228\n        },\n        {\n            \"lat\": 40.508282409873,\n            \"long\": -3.6455236254481\n        },\n        {\n            \"lat\": 40.508217860324,\n            \"long\": -3.6454189042412\n        },\n        {\n            \"lat\": 40.508162790351,\n            \"long\": -3.6453266790213\n        },\n        {\n            \"lat\": 40.508029262999,\n            \"long\": -3.6451035037095\n        },\n        {\n            \"lat\": 40.507930456253,\n            \"long\": -3.6449060381621\n        },\n        {\n            \"lat\": 40.507882086206,\n            \"long\": -3.644809381014\n        },\n        {\n            \"lat\": 40.507920764346,\n            \"long\": -3.6447055316053\n        },\n        {\n            \"lat\": 40.508032765353,\n            \"long\": -3.6444273463991\n        },\n        {\n            \"lat\": 40.508067570565,\n            \"long\": -3.6443410458738\n        },\n        {\n            \"lat\": 40.50809420219,\n            \"long\": -3.6442988101075\n        },\n        {\n            \"lat\": 40.508060796319,\n            \"long\": -3.6442149255041\n        },\n        {\n            \"lat\": 40.50802174742,\n            \"long\": -3.6440443651733\n        },\n        {\n            \"lat\": 40.507999864319,\n            \"long\": -3.643913497263\n        },\n        {\n            \"lat\": 40.507937332715,\n            \"long\": -3.6434623813009\n        },\n        {\n            \"lat\": 40.507930249338,\n            \"long\": -3.6433916140489\n        },\n        {\n            \"lat\": 40.507934118692,\n            \"long\": -3.6433115091262\n        },\n        {\n            \"lat\": 40.507966398292,\n            \"long\": -3.6431446879893\n        },\n        {\n            \"lat\": 40.508072217771,\n            \"long\": -3.6427786269716\n        },\n        {\n            \"lat\": 40.50814056946,\n            \"long\": -3.6425241112124\n        },\n        {\n            \"lat\": 40.508173895483,\n            \"long\": -3.6423633186842\n        },\n        {\n            \"lat\": 40.508193344347,\n            \"long\": -3.6422031018003\n        },\n        {\n            \"lat\": 40.50818358637,\n            \"long\": -3.6420298590747\n        },\n        {\n            \"lat\": 40.508182270259,\n            \"long\": -3.6420073028417\n        },\n        {\n            \"lat\": 40.508148732162,\n            \"long\": -3.6415738140544\n        },\n        {\n            \"lat\": 40.508137792013,\n            \"long\": -3.6414510769688\n        },\n        {\n            \"lat\": 40.508112707513,\n            \"long\": -3.641344611302\n        },\n        {\n            \"lat\": 40.508060347408,\n            \"long\": -3.6411693225652\n        },\n        {\n            \"lat\": 40.508024017151,\n            \"long\": -3.6410600353649\n        },\n        {\n            \"lat\": 40.50799825535,\n            \"long\": -3.6410756060051\n        },\n        {\n            \"lat\": 40.50798513637,\n            \"long\": -3.6409070531201\n        },\n        {\n            \"lat\": 40.507967815894,\n            \"long\": -3.6406838127118\n        },\n        {\n            \"lat\": 40.507959380605,\n            \"long\": -3.6405803387165\n        },\n        {\n            \"lat\": 40.507946176049,\n            \"long\": -3.6404108409742\n        },\n        {\n            \"lat\": 40.507937430025,\n            \"long\": -3.6402967414509\n        },\n        {\n            \"lat\": 40.507919549031,\n            \"long\": -3.6400606308317\n        },\n        {\n            \"lat\": 40.507876451023,\n            \"long\": -3.6395300456392\n        },\n        {\n            \"lat\": 40.507873215724,\n            \"long\": -3.6392355320118\n        },\n        {\n            \"lat\": 40.507870795003,\n            \"long\": -3.6389401999362\n        },\n        {\n            \"lat\": 40.507869617758,\n            \"long\": -3.6388272348079\n        },\n        {\n            \"lat\": 40.507867652712,\n            \"long\": -3.6386285848063\n        },\n        {\n            \"lat\": 40.507867878214,\n            \"long\": -3.6385551727769\n        },\n        {\n            \"lat\": 40.50786973219,\n            \"long\": -3.6379748407148\n        },\n        {\n            \"lat\": 40.507869751085,\n            \"long\": -3.6379714180466\n        },\n        {\n            \"lat\": 40.507870983706,\n            \"long\": -3.6376011720695\n        },\n        {\n            \"lat\": 40.507871016044,\n            \"long\": -3.6375789828826\n        },\n        {\n            \"lat\": 40.507848238093,\n            \"long\": -3.6373803601197\n        },\n        {\n            \"lat\": 40.507826476333,\n            \"long\": -3.6346050882078\n        },\n        {\n            \"lat\": 40.507822256172,\n            \"long\": -3.6340609340687\n        },\n        {\n            \"lat\": 40.507819451704,\n            \"long\": -3.6337017449773\n        },\n        {\n            \"lat\": 40.507814621962,\n            \"long\": -3.6336789198939\n        },\n        {\n            \"lat\": 40.50780199679,\n            \"long\": -3.6336319435049\n        },\n        {\n            \"lat\": 40.507792333528,\n            \"long\": -3.6336034075464\n        },\n        {\n            \"lat\": 40.507782055196,\n            \"long\": -3.63357203311\n        },\n        {\n            \"lat\": 40.507768575868,\n            \"long\": -3.6335329566727\n        },\n        {\n            \"lat\": 40.507755342195,\n            \"long\": -3.6334983676656\n        },\n        {\n            \"lat\": 40.507736679988,\n            \"long\": -3.633451570608\n        },\n        {\n            \"lat\": 40.507720120924,\n            \"long\": -3.6334155339992\n        },\n        {\n            \"lat\": 40.507707968397,\n            \"long\": -3.6333973612352\n        },\n        {\n            \"lat\": 40.507700819851,\n            \"long\": -3.6333866713771\n        },\n        {\n            \"lat\": 40.507670252028,\n            \"long\": -3.6333259530107\n        },\n        {\n            \"lat\": 40.507651550232,\n            \"long\": -3.6332863672504\n        },\n        {\n            \"lat\": 40.507638191934,\n            \"long\": -3.6332416267007\n        },\n        {\n            \"lat\": 40.507631234603,\n            \"long\": -3.6331795961344\n        },\n        {\n            \"lat\": 40.507633457018,\n            \"long\": -3.6331357103153\n        },\n        {\n            \"lat\": 40.507633932659,\n            \"long\": -3.6331311116644\n        },\n        {\n            \"lat\": 40.507667137645,\n            \"long\": -3.63294068926\n        },\n        {\n            \"lat\": 40.507807830782,\n            \"long\": -3.632484767124\n        },\n        {\n            \"lat\": 40.507972476355,\n            \"long\": -3.6319482177899\n        },\n        {\n            \"lat\": 40.508107986232,\n            \"long\": -3.6314987463217\n        },\n        {\n            \"lat\": 40.508114868343,\n            \"long\": -3.6314757950905\n        },\n        {\n            \"lat\": 40.508282316832,\n            \"long\": -3.6309200282187\n        },\n        {\n            \"lat\": 40.508426696493,\n            \"long\": -3.6303648687906\n        },\n        {\n            \"lat\": 40.508394432371,\n            \"long\": -3.6298714484731\n        },\n        {\n            \"lat\": 40.508334805688,\n            \"long\": -3.629290418772\n        },\n        {\n            \"lat\": 40.508256449828,\n            \"long\": -3.6286408876616\n        },\n        {\n            \"lat\": 40.508250400727,\n            \"long\": -3.6285439286161\n        },\n        {\n            \"lat\": 40.508403038169,\n            \"long\": -3.6279906117949\n        },\n        {\n            \"lat\": 40.508457045546,\n            \"long\": -3.6278333090887\n        },\n        {\n            \"lat\": 40.508648017059,\n            \"long\": -3.6274218766436\n        },\n        {\n            \"lat\": 40.508655756919,\n            \"long\": -3.6274067228245\n        },\n        {\n            \"lat\": 40.508895337669,\n            \"long\": -3.626935769093\n        },\n        {\n            \"lat\": 40.508919403671,\n            \"long\": -3.6268837054316\n        },\n        {\n            \"lat\": 40.508945789444,\n            \"long\": -3.6268357944222\n        },\n        {\n            \"lat\": 40.50895470545,\n            \"long\": -3.6268197071705\n        },\n        {\n            \"lat\": 40.509077119022,\n            \"long\": -3.626555512411\n        },\n        {\n            \"lat\": 40.509181282036,\n            \"long\": -3.6263690477342\n        },\n        {\n            \"lat\": 40.509259989419,\n            \"long\": -3.6261253363995\n        },\n        {\n            \"lat\": 40.509312207925,\n            \"long\": -3.6259651807981\n        },\n        {\n            \"lat\": 40.509342694643,\n            \"long\": -3.6258087297871\n        },\n        {\n            \"lat\": 40.509418757545,\n            \"long\": -3.6253376630514\n        },\n        {\n            \"lat\": 40.509421927084,\n            \"long\": -3.6253179811519\n        },\n        {\n            \"lat\": 40.509410902075,\n            \"long\": -3.6252410399369\n        },\n        {\n            \"lat\": 40.509362375701,\n            \"long\": -3.6249020738221\n        },\n        {\n            \"lat\": 40.509347743091,\n            \"long\": -3.6248091649591\n        },\n        {\n            \"lat\": 40.509306051192,\n            \"long\": -3.6246389302827\n        },\n        {\n            \"lat\": 40.509266591322,\n            \"long\": -3.6244723873071\n        },\n        {\n            \"lat\": 40.509231499055,\n            \"long\": -3.6243311319995\n        },\n        {\n            \"lat\": 40.509209545531,\n            \"long\": -3.6242425227266\n        },\n        {\n            \"lat\": 40.509150902831,\n            \"long\": -3.6240246829469\n        },\n        {\n            \"lat\": 40.509099981767,\n            \"long\": -3.6238282787828\n        },\n        {\n            \"lat\": 40.509094853697,\n            \"long\": -3.6238102904892\n        },\n        {\n            \"lat\": 40.50908556873,\n            \"long\": -3.6237779818821\n        },\n        {\n            \"lat\": 40.509033306445,\n            \"long\": -3.6235963195845\n        },\n        {\n            \"lat\": 40.50903118489,\n            \"long\": -3.6235721035155\n        },\n        {\n            \"lat\": 40.509020615488,\n            \"long\": -3.6232267759089\n        },\n        {\n            \"lat\": 40.509024943879,\n            \"long\": -3.6227581137077\n        },\n        {\n            \"lat\": 40.509063617888,\n            \"long\": -3.6226363089988\n        },\n        {\n            \"lat\": 40.509150514577,\n            \"long\": -3.6223743745219\n        },\n        {\n            \"lat\": 40.509159055007,\n            \"long\": -3.6223609978817\n        },\n        {\n            \"lat\": 40.509234370851,\n            \"long\": -3.6222436624831\n        },\n        {\n            \"lat\": 40.50931040789,\n            \"long\": -3.6221262154554\n        },\n        {\n            \"lat\": 40.50939098653,\n            \"long\": -3.6220018462404\n        },\n        {\n            \"lat\": 40.509384116072,\n            \"long\": -3.6219895074415\n        },\n        {\n            \"lat\": 40.509453274437,\n            \"long\": -3.62191141903\n        },\n        {\n            \"lat\": 40.509458075607,\n            \"long\": -3.6219065060368\n        },\n        {\n            \"lat\": 40.509523928623,\n            \"long\": -3.6218399540772\n        },\n        {\n            \"lat\": 40.50953162838,\n            \"long\": -3.6218321170431\n        },\n        {\n            \"lat\": 40.50957470379,\n            \"long\": -3.621779518439\n        },\n        {\n            \"lat\": 40.509813057691,\n            \"long\": -3.6215324466909\n        },\n        {\n            \"lat\": 40.509880652617,\n            \"long\": -3.6214434838665\n        },\n        {\n            \"lat\": 40.509940984756,\n            \"long\": -3.6213464275916\n        },\n        {\n            \"lat\": 40.510007333613,\n            \"long\": -3.621221098742\n        },\n        {\n            \"lat\": 40.510032892343,\n            \"long\": -3.6211422524406\n        },\n        {\n            \"lat\": 40.510038663477,\n            \"long\": -3.6211244826947\n        },\n        {\n            \"lat\": 40.510125225132,\n            \"long\": -3.6208756410751\n        },\n        {\n            \"lat\": 40.510133123257,\n            \"long\": -3.6208141005642\n        },\n        {\n            \"lat\": 40.510154909023,\n            \"long\": -3.620599008761\n        },\n        {\n            \"lat\": 40.510166626415,\n            \"long\": -3.620480493309\n        },\n        {\n            \"lat\": 40.510169784892,\n            \"long\": -3.6204459386605\n        },\n        {\n            \"lat\": 40.510174203807,\n            \"long\": -3.6203947529269\n        },\n        {\n            \"lat\": 40.510176897261,\n            \"long\": -3.6203629087516\n        },\n        {\n            \"lat\": 40.510190056773,\n            \"long\": -3.6202106489686\n        },\n        {\n            \"lat\": 40.51019101893,\n            \"long\": -3.6201824478625\n        },\n        {\n            \"lat\": 40.510177094287,\n            \"long\": -3.6200240486953\n        },\n        {\n            \"lat\": 40.510141377778,\n            \"long\": -3.6196958233336\n        },\n        {\n            \"lat\": 40.510140346129,\n            \"long\": -3.6196866072425\n        },\n        {\n            \"lat\": 40.510131372195,\n            \"long\": -3.6195624716936\n        },\n        {\n            \"lat\": 40.510107931115,\n            \"long\": -3.6192632778462\n        },\n        {\n            \"lat\": 40.510101138749,\n            \"long\": -3.6190849852394\n        },\n        {\n            \"lat\": 40.510100384893,\n            \"long\": -3.6190743553193\n        },\n        {\n            \"lat\": 40.510083331066,\n            \"long\": -3.6188439157868\n        },\n        {\n            \"lat\": 40.510071084601,\n            \"long\": -3.6186914342239\n        },\n        {\n            \"lat\": 40.510059549274,\n            \"long\": -3.6184060421482\n        },\n        {\n            \"lat\": 40.510059313758,\n            \"long\": -3.6183995481629\n        },\n        {\n            \"lat\": 40.510063689905,\n            \"long\": -3.6183225127269\n        },\n        {\n            \"lat\": 40.510070002817,\n            \"long\": -3.6182707541603\n        },\n        {\n            \"lat\": 40.510090804592,\n            \"long\": -3.6181376857458\n        },\n        {\n            \"lat\": 40.51009295439,\n            \"long\": -3.6181063086585\n        },\n        {\n            \"lat\": 40.510096402613,\n            \"long\": -3.618067979532\n        },\n        {\n            \"lat\": 40.510097766248,\n            \"long\": -3.6180319919278\n        },\n        {\n            \"lat\": 40.510108157669,\n            \"long\": -3.6178913917388\n        },\n        {\n            \"lat\": 40.510106921884,\n            \"long\": -3.6178697803188\n        },\n        {\n            \"lat\": 40.510102699568,\n            \"long\": -3.617833859472\n        },\n        {\n            \"lat\": 40.510099294945,\n            \"long\": -3.6177966477686\n        },\n        {\n            \"lat\": 40.510098952904,\n            \"long\": -3.617793221667\n        },\n        {\n            \"lat\": 40.510086601893,\n            \"long\": -3.6177106031322\n        },\n        {\n            \"lat\": 40.510100607443,\n            \"long\": -3.6176859446726\n        },\n        {\n            \"lat\": 40.510104700374,\n            \"long\": -3.6176786641683\n        },\n        {\n            \"lat\": 40.510157571373,\n            \"long\": -3.6175611159789\n        },\n        {\n            \"lat\": 40.51023716457,\n            \"long\": -3.6173842058109\n        },\n        {\n            \"lat\": 40.510313256042,\n            \"long\": -3.6172219110861\n        },\n        {\n            \"lat\": 40.510361279785,\n            \"long\": -3.6171195440819\n        },\n        {\n            \"lat\": 40.510463389128,\n            \"long\": -3.6169267866048\n        },\n        {\n            \"lat\": 40.510505382591,\n            \"long\": -3.6168401804523\n        },\n        {\n            \"lat\": 40.510643187535,\n            \"long\": -3.6165253477002\n        },\n        {\n            \"lat\": 40.51069761419,\n            \"long\": -3.6164047430199\n        },\n        {\n            \"lat\": 40.51079288337,\n            \"long\": -3.6161936255496\n        },\n        {\n            \"lat\": 40.510812396899,\n            \"long\": -3.6161496592814\n        },\n        {\n            \"lat\": 40.510828203519,\n            \"long\": -3.6161064853028\n        },\n        {\n            \"lat\": 40.510855118117,\n            \"long\": -3.616009235111\n        },\n        {\n            \"lat\": 40.510919960257,\n            \"long\": -3.6157598310956\n        },\n        {\n            \"lat\": 40.51092813922,\n            \"long\": -3.6157127038499\n        },\n        {\n            \"lat\": 40.51094388954,\n            \"long\": -3.6155802949571\n        },\n        {\n            \"lat\": 40.510967717225,\n            \"long\": -3.6153521156499\n        },\n        {\n            \"lat\": 40.510968477499,\n            \"long\": -3.6153446864117\n        },\n        {\n            \"lat\": 40.51097795532,\n            \"long\": -3.6151550912104\n        },\n        {\n            \"lat\": 40.510975866068,\n            \"long\": -3.6150906251487\n        },\n        {\n            \"lat\": 40.510971751193,\n            \"long\": -3.6150512819832\n        },\n        {\n            \"lat\": 40.510970553453,\n            \"long\": -3.6150393495318\n        },\n        {\n            \"lat\": 40.510967588564,\n            \"long\": -3.6150209090256\n        },\n        {\n            \"lat\": 40.510962686404,\n            \"long\": -3.6149940703572\n        },\n        {\n            \"lat\": 40.51086988231,\n            \"long\": -3.6146746472521\n        },\n        {\n            \"lat\": 40.51076450004,\n            \"long\": -3.6144163818797\n        },\n        {\n            \"lat\": 40.510675569663,\n            \"long\": -3.6141983872418\n        },\n        {\n            \"lat\": 40.510462428361,\n            \"long\": -3.6142304363359\n        },\n        {\n            \"lat\": 40.510263646661,\n            \"long\": -3.6142066683839\n        },\n        {\n            \"lat\": 40.510055309912,\n            \"long\": -3.6140127276612\n        },\n        {\n            \"lat\": 40.509901268108,\n            \"long\": -3.6138411192833\n        },\n        {\n            \"lat\": 40.509643712921,\n            \"long\": -3.6134490396187\n        },\n        {\n            \"lat\": 40.509437898993,\n            \"long\": -3.6131699068859\n        },\n        {\n            \"lat\": 40.509297103649,\n            \"long\": -3.6129294920653\n        },\n        {\n            \"lat\": 40.509163368287,\n            \"long\": -3.6126147826132\n        },\n        {\n            \"lat\": 40.509085234551,\n            \"long\": -3.6123477926898\n        },\n        {\n            \"lat\": 40.5090382682,\n            \"long\": -3.6120643381046\n        },\n        {\n            \"lat\": 40.508975434056,\n            \"long\": -3.6117319810082\n        },\n        {\n            \"lat\": 40.508941360886,\n            \"long\": -3.6114462719851\n        },\n        {\n            \"lat\": 40.508946608086,\n            \"long\": -3.611237758515\n        },\n        {\n            \"lat\": 40.50892325366,\n            \"long\": -3.611190688104\n        },\n        {\n            \"lat\": 40.508860232649,\n            \"long\": -3.6110635984839\n        },\n        {\n            \"lat\": 40.508789187523,\n            \"long\": -3.6109206083383\n        },\n        {\n            \"lat\": 40.508686086576,\n            \"long\": -3.6107916093924\n        },\n        {\n            \"lat\": 40.508556819603,\n            \"long\": -3.6106889303676\n        },\n        {\n            \"lat\": 40.508400816762,\n            \"long\": -3.6104953620332\n        },\n        {\n            \"lat\": 40.508226000163,\n            \"long\": -3.6102989093614\n        },\n        {\n            \"lat\": 40.508032251041,\n            \"long\": -3.6101050008262\n        },\n        {\n            \"lat\": 40.507948894759,\n            \"long\": -3.6100412295144\n        },\n        {\n            \"lat\": 40.507866324215,\n            \"long\": -3.6099480643797\n        },\n        {\n            \"lat\": 40.507701182892,\n            \"long\": -3.609761734797\n        },\n        {\n            \"lat\": 40.50754426514,\n            \"long\": -3.6095705233826\n        },\n        {\n            \"lat\": 40.507499570636,\n            \"long\": -3.6095041406909\n        },\n        {\n            \"lat\": 40.507367900513,\n            \"long\": -3.6093085558406\n        },\n        {\n            \"lat\": 40.507225925868,\n            \"long\": -3.6090681458471\n        },\n        {\n            \"lat\": 40.506984729897,\n            \"long\": -3.6087159053261\n        },\n        {\n            \"lat\": 40.506817437014,\n            \"long\": -3.6084587452948\n        },\n        {\n            \"lat\": 40.506595413886,\n            \"long\": -3.6080732688075\n        },\n        {\n            \"lat\": 40.506435844744,\n            \"long\": -3.6077518687869\n        },\n        {\n            \"lat\": 40.506402414764,\n            \"long\": -3.6076846458575\n        },\n        {\n            \"lat\": 40.506261914413,\n            \"long\": -3.6073344914022\n        },\n        {\n            \"lat\": 40.506162918909,\n            \"long\": -3.6071263441822\n        },\n        {\n            \"lat\": 40.506139422096,\n            \"long\": -3.6070546083716\n        },\n        {\n            \"lat\": 40.506108387645,\n            \"long\": -3.6069600255942\n        },\n        {\n            \"lat\": 40.506055160583,\n            \"long\": -3.606871262206\n        },\n        {\n            \"lat\": 40.506019668887,\n            \"long\": -3.6068191288519\n        },\n        {\n            \"lat\": 40.506009119414,\n            \"long\": -3.6068036903843\n        },\n        {\n            \"lat\": 40.505891355585,\n            \"long\": -3.6066525119553\n        },\n        {\n            \"lat\": 40.50576901214,\n            \"long\": -3.6064984483862\n        },\n        {\n            \"lat\": 40.505622584806,\n            \"long\": -3.6063500697603\n        },\n        {\n            \"lat\": 40.50551849046,\n            \"long\": -3.606237716535\n        },\n        {\n            \"lat\": 40.50550013542,\n            \"long\": -3.6062178410639\n        },\n        {\n            \"lat\": 40.505487862484,\n            \"long\": -3.6062046297713\n        },\n        {\n            \"lat\": 40.505478233905,\n            \"long\": -3.6062025366539\n        },\n        {\n            \"lat\": 40.504976633862,\n            \"long\": -3.6060961656822\n        },\n        {\n            \"lat\": 40.504550195659,\n            \"long\": -3.6060189164578\n        },\n        {\n            \"lat\": 40.504465572673,\n            \"long\": -3.6060416414711\n        },\n        {\n            \"lat\": 40.504269579535,\n            \"long\": -3.6059839463031\n        },\n        {\n            \"lat\": 40.504099469109,\n            \"long\": -3.6058678152985\n        },\n        {\n            \"lat\": 40.503827782645,\n            \"long\": -3.6056571794517\n        },\n        {\n            \"lat\": 40.503800616122,\n            \"long\": -3.6056322684567\n        },\n        {\n            \"lat\": 40.503600500937,\n            \"long\": -3.605448242825\n        },\n        {\n            \"lat\": 40.50347341296,\n            \"long\": -3.6052708938233\n        },\n        {\n            \"lat\": 40.503367541539,\n            \"long\": -3.6051019976507\n        },\n        {\n            \"lat\": 40.503208575277,\n            \"long\": -3.604904783825\n        },\n        {\n            \"lat\": 40.503126512091,\n            \"long\": -3.6047827210158\n        },\n        {\n            \"lat\": 40.503036965473,\n            \"long\": -3.6046118486905\n        },\n        {\n            \"lat\": 40.50301930193,\n            \"long\": -3.6046302193603\n        },\n        {\n            \"lat\": 40.501759017031,\n            \"long\": -3.6033248409118\n        },\n        {\n            \"lat\": 40.501444036995,\n            \"long\": -3.6027793835803\n        },\n        {\n            \"lat\": 40.501356195305,\n            \"long\": -3.6027802495396\n        },\n        {\n            \"lat\": 40.501361279974,\n            \"long\": -3.6026690041452\n        },\n        {\n            \"lat\": 40.501342040871,\n            \"long\": -3.6024712700032\n        },\n        {\n            \"lat\": 40.501330056571,\n            \"long\": -3.6021778883593\n        },\n        {\n            \"lat\": 40.501371124946,\n            \"long\": -3.6020765241321\n        },\n        {\n            \"lat\": 40.501412162495,\n            \"long\": -3.6019810604068\n        },\n        {\n            \"lat\": 40.501459946735,\n            \"long\": -3.6018857748851\n        },\n        {\n            \"lat\": 40.501487533413,\n            \"long\": -3.6017782708794\n        },\n        {\n            \"lat\": 40.501508488263,\n            \"long\": -3.60164676164\n        },\n        {\n            \"lat\": 40.50153607472,\n            \"long\": -3.6015392574563\n        },\n        {\n            \"lat\": 40.501594059319,\n            \"long\": -3.6014590508794\n        },\n        {\n            \"lat\": 40.501648359808,\n            \"long\": -3.6014116203895\n        },\n        {\n            \"lat\": 40.501682328464,\n            \"long\": -3.6013760461408\n        },\n        {\n            \"lat\": 40.501702846961,\n            \"long\": -3.6013283138563\n        },\n        {\n            \"lat\": 40.501710194647,\n            \"long\": -3.6012147276088\n        },\n        {\n            \"lat\": 40.501697534529,\n            \"long\": -3.6010506868464\n        },\n        {\n            \"lat\": 40.501691202235,\n            \"long\": -3.6009690795329\n        },\n        {\n            \"lat\": 40.501678342977,\n            \"long\": -3.6008432750767\n        },\n        {\n            \"lat\": 40.501692384618,\n            \"long\": -3.6007416684023\n        },\n        {\n            \"lat\": 40.501747462541,\n            \"long\": -3.6005445965964\n        },\n        {\n            \"lat\": 40.501802259943,\n            \"long\": -3.6004014565177\n        },\n        {\n            \"lat\": 40.501823430899,\n            \"long\": -3.6002280396998\n        },\n        {\n            \"lat\": 40.501790612278,\n            \"long\": -3.60004223359\n        },\n        {\n            \"lat\": 40.501686973512,\n            \"long\": -3.5998409146655\n        },\n        {\n            \"lat\": 40.501687439629,\n            \"long\": -3.5997511067297\n        },\n        {\n            \"lat\": 40.501701821987,\n            \"long\": -3.5995836485005\n        },\n        {\n            \"lat\": 40.501722494641,\n            \"long\": -3.5995060583268\n        },\n        {\n            \"lat\": 40.501716204104,\n            \"long\": -3.5994161901968\n        },\n        {\n            \"lat\": 40.501649726481,\n            \"long\": -3.5992061157096\n        },\n        {\n            \"lat\": 40.501596419921,\n            \"long\": -3.599062013037\n        },\n        {\n            \"lat\": 40.501529414455,\n            \"long\": -3.5989536662998\n        },\n        {\n            \"lat\": 40.501455559476,\n            \"long\": -3.5988632094214\n        },\n        {\n            \"lat\": 40.501428905696,\n            \"long\": -3.598791217405\n        },\n        {\n            \"lat\": 40.501429432743,\n            \"long\": -3.5986894905207\n        },\n        {\n            \"lat\": 40.501403027643,\n            \"long\": -3.5985694674781\n        },\n        {\n            \"lat\": 40.501363109014,\n            \"long\": -3.5984494424535\n        },\n        {\n            \"lat\": 40.501290740591,\n            \"long\": -3.5980717323803\n        },\n        {\n            \"lat\": 40.501265358935,\n            \"long\": -3.5977363364666\n        },\n        {\n            \"lat\": 40.501251402851,\n            \"long\": -3.5971946409082\n        },\n        {\n            \"lat\": 40.501239250927,\n            \"long\": -3.5969311175552\n        },\n        {\n            \"lat\": 40.501207353774,\n            \"long\": -3.5965658061206\n        },\n        {\n            \"lat\": 40.501222587756,\n            \"long\": -3.5962306645675\n        },\n        {\n            \"lat\": 40.501298790768,\n            \"long\": -3.5958663100741\n        },\n        {\n            \"lat\": 40.501357637645,\n            \"long\": -3.5956005822934\n        },\n        {\n            \"lat\": 40.501365103752,\n            \"long\": -3.5954629213669\n        },\n        {\n            \"lat\": 40.501325736895,\n            \"long\": -3.5952351527824\n        },\n        {\n            \"lat\": 40.501259405962,\n            \"long\": -3.5949951084011\n        },\n        {\n            \"lat\": 40.501259682954,\n            \"long\": -3.5949413065431\n        },\n        {\n            \"lat\": 40.501294019591,\n            \"long\": -3.5948338596131\n        },\n        {\n            \"lat\": 40.501389563931,\n            \"long\": -3.5946491792707\n        },\n        {\n            \"lat\": 40.501417020647,\n            \"long\": -3.5945656289076\n        },\n        {\n            \"lat\": 40.501580098217,\n            \"long\": -3.5943874448516\n        },\n        {\n            \"lat\": 40.501634733888,\n            \"long\": -3.594274275347\n        },\n        {\n            \"lat\": 40.501665844146,\n            \"long\": -3.5941459097377\n        },\n        {\n            \"lat\": 40.501653008386,\n            \"long\": -3.5940140878725\n        },\n        {\n            \"lat\": 40.501626844034,\n            \"long\": -3.5938462709082\n        },\n        {\n            \"lat\": 40.501567389066,\n            \"long\": -3.5935824477193\n        },\n        {\n            \"lat\": 40.501480386109,\n            \"long\": -3.5934200077232\n        },\n        {\n            \"lat\": 40.501426980208,\n            \"long\": -3.593293847844\n        },\n        {\n            \"lat\": 40.501528416623,\n            \"long\": -3.5932069359573\n        },\n        {\n            \"lat\": 40.504512000302,\n            \"long\": -3.5890959307506\n        },\n        {\n            \"lat\": 40.505375788277,\n            \"long\": -3.586806025\n        },\n        {\n            \"lat\": 40.506716934354,\n            \"long\": -3.5846920525749\n        },\n        {\n            \"lat\": 40.508386966124,\n            \"long\": -3.5829498048402\n        },\n        {\n            \"lat\": 40.508453622628,\n            \"long\": -3.5828802719372\n        },\n        {\n            \"lat\": 40.508497711283,\n            \"long\": -3.5827661640593\n        },\n        {\n            \"lat\": 40.510367287037,\n            \"long\": -3.5779269454931\n        },\n        {\n            \"lat\": 40.510410500514,\n            \"long\": -3.5758557274283\n        },\n        {\n            \"lat\": 40.512401376952,\n            \"long\": -3.572024527367\n        },\n        {\n            \"lat\": 40.512160437122,\n            \"long\": -3.5672629222369\n        },\n        {\n            \"lat\": 40.512053003654,\n            \"long\": -3.5649719968061\n        },\n        {\n            \"lat\": 40.511153676999,\n            \"long\": -3.5617307912733\n        },\n        {\n            \"lat\": 40.510683479839,\n            \"long\": -3.5616442436654\n        },\n        {\n            \"lat\": 40.511252987368,\n            \"long\": -3.5583596196944\n        },\n        {\n            \"lat\": 40.511333192455,\n            \"long\": -3.5542353314432\n        },\n        {\n            \"lat\": 40.511093890617,\n            \"long\": -3.5522438904816\n        },\n        {\n            \"lat\": 40.511303168743,\n            \"long\": -3.5522814901166\n        },\n        {\n            \"lat\": 40.511545975544,\n            \"long\": -3.5523912489835\n        },\n        {\n            \"lat\": 40.511815689675,\n            \"long\": -3.5525071313173\n        },\n        {\n            \"lat\": 40.512010967708,\n            \"long\": -3.5526464830114\n        },\n        {\n            \"lat\": 40.512330717265,\n            \"long\": -3.5529035847872\n        },\n        {\n            \"lat\": 40.512391382312,\n            \"long\": -3.5529339465442\n        },\n        {\n            \"lat\": 40.512526632758,\n            \"long\": -3.5529284474114\n        },\n        {\n            \"lat\": 40.512684280104,\n            \"long\": -3.5528926784403\n        },\n        {\n            \"lat\": 40.512803529168,\n            \"long\": -3.5529176196604\n        },\n        {\n            \"lat\": 40.512861193979,\n            \"long\": -3.5529348547561\n        },\n        {\n            \"lat\": 40.512914237299,\n            \"long\": -3.5529577177589\n        },\n        {\n            \"lat\": 40.5129575858,\n            \"long\": -3.5529733008109\n        },\n        {\n            \"lat\": 40.512997012321,\n            \"long\": -3.5529801168149\n        },\n        {\n            \"lat\": 40.513072446892,\n            \"long\": -3.5530115445966\n        },\n        {\n            \"lat\": 40.513254812737,\n            \"long\": -3.5530797348423\n        },\n        {\n            \"lat\": 40.513283578052,\n            \"long\": -3.5530929554854\n        },\n        {\n            \"lat\": 40.513381664742,\n            \"long\": -3.5531537253448\n        },\n        {\n            \"lat\": 40.513454850182,\n            \"long\": -3.5532033130732\n        },\n        {\n            \"lat\": 40.513532649188,\n            \"long\": -3.5532489254897\n        },\n        {\n            \"lat\": 40.51363648602,\n            \"long\": -3.5533129301417\n        },\n        {\n            \"lat\": 40.513829965843,\n            \"long\": -3.5534513170915\n        },\n        {\n            \"lat\": 40.513896601081,\n            \"long\": -3.5535141901442\n        },\n        {\n            \"lat\": 40.513959973968,\n            \"long\": -3.5535810498579\n        },\n        {\n            \"lat\": 40.514022639137,\n            \"long\": -3.5536451889502\n        },\n        {\n            \"lat\": 40.514087136525,\n            \"long\": -3.553702969053\n        },\n        {\n            \"lat\": 40.51414687178,\n            \"long\": -3.5537581131979\n        },\n        {\n            \"lat\": 40.514209250749,\n            \"long\": -3.5538255554173\n        },\n        {\n            \"lat\": 40.514302523689,\n            \"long\": -3.5539319693647\n        },\n        {\n            \"lat\": 40.51435997047,\n            \"long\": -3.5539946496725\n        },\n        {\n            \"lat\": 40.514411747472,\n            \"long\": -3.5540561030074\n        },\n        {\n            \"lat\": 40.514461986755,\n            \"long\": -3.5541188422297\n        },\n        {\n            \"lat\": 40.514512548986,\n            \"long\": -3.5541893749208\n        },\n        {\n            \"lat\": 40.514561026227,\n            \"long\": -3.5542607168379\n        },\n        {\n            \"lat\": 40.51461232038,\n            \"long\": -3.5543288949413\n        },\n        {\n            \"lat\": 40.514671020267,\n            \"long\": -3.5543932269758\n        },\n        {\n            \"lat\": 40.514734355779,\n            \"long\": -3.554448992081\n        },\n        {\n            \"lat\": 40.514759281818,\n            \"long\": -3.5544737500551\n        },\n        {\n            \"lat\": 40.514818631445,\n            \"long\": -3.5545528547253\n        },\n        {\n            \"lat\": 40.514898990268,\n            \"long\": -3.5546656565325\n        },\n        {\n            \"lat\": 40.51500050328,\n            \"long\": -3.5547631694678\n        },\n        {\n            \"lat\": 40.515112511996,\n            \"long\": -3.5548887452223\n        },\n        {\n            \"lat\": 40.515234880879,\n            \"long\": -3.5550518262705\n        },\n        {\n            \"lat\": 40.515276666781,\n            \"long\": -3.5551300788982\n        },\n        {\n            \"lat\": 40.515326465243,\n            \"long\": -3.5553031859031\n        },\n        {\n            \"lat\": 40.515339613577,\n            \"long\": -3.5553416582236\n        },\n        {\n            \"lat\": 40.51537550229,\n            \"long\": -3.5554284796036\n        },\n        {\n            \"lat\": 40.515450702421,\n            \"long\": -3.5555085311587\n        },\n        {\n            \"lat\": 40.515583894949,\n            \"long\": -3.5555937951204\n        },\n        {\n            \"lat\": 40.51570321437,\n            \"long\": -3.5556601760129\n        },\n        {\n            \"lat\": 40.515871779987,\n            \"long\": -3.5557333381044\n        },\n        {\n            \"lat\": 40.516133463603,\n            \"long\": -3.5558117552027\n        },\n        {\n            \"lat\": 40.516316172957,\n            \"long\": -3.5558474968798\n        },\n        {\n            \"lat\": 40.516393541825,\n            \"long\": -3.5558512049971\n        },\n        {\n            \"lat\": 40.516492185308,\n            \"long\": -3.5558333686172\n        },\n        {\n            \"lat\": 40.516590784122,\n            \"long\": -3.5558060882347\n        },\n        {\n            \"lat\": 40.51680057041,\n            \"long\": -3.5557002815405\n        },\n        {\n            \"lat\": 40.51718867858,\n            \"long\": -3.5554728244512\n        },\n        {\n            \"lat\": 40.517349311797,\n            \"long\": -3.5553595274304\n        },\n        {\n            \"lat\": 40.517438237145,\n            \"long\": -3.5552642895927\n        },\n        {\n            \"lat\": 40.51750054621,\n            \"long\": -3.5551961006647\n        },\n        {\n            \"lat\": 40.517558868781,\n            \"long\": -3.5551326005887\n        },\n        {\n            \"lat\": 40.517616552779,\n            \"long\": -3.5550707477888\n        },\n        {\n            \"lat\": 40.517677513846,\n            \"long\": -3.555001839106\n        },\n        {\n            \"lat\": 40.517738317943,\n            \"long\": -3.5549280890857\n        },\n        {\n            \"lat\": 40.5177764753,\n            \"long\": -3.5548802405846\n        },\n        {\n            \"lat\": 40.517799216106,\n            \"long\": -3.5548516246291\n        },\n        {\n            \"lat\": 40.517856544168,\n            \"long\": -3.5547700545842\n        },\n        {\n            \"lat\": 40.517973964425,\n            \"long\": -3.5545565306949\n        },\n        {\n            \"lat\": 40.518144310762,\n            \"long\": -3.5542586956899\n        },\n        {\n            \"lat\": 40.518364171955,\n            \"long\": -3.5538926691081\n        },\n        {\n            \"lat\": 40.518580434438,\n            \"long\": -3.5535423109625\n        },\n        {\n            \"lat\": 40.518828847639,\n            \"long\": -3.553083019777\n        },\n        {\n            \"lat\": 40.519042363759,\n            \"long\": -3.5525736337325\n        },\n        {\n            \"lat\": 40.519255213852,\n            \"long\": -3.5522012826266\n        },\n        {\n            \"lat\": 40.519418497644,\n            \"long\": -3.5519096229201\n        },\n        {\n            \"lat\": 40.519595535485,\n            \"long\": -3.5516617530653\n        },\n        {\n            \"lat\": 40.519997398905,\n            \"long\": -3.5512327453794\n        },\n        {\n            \"lat\": 40.520071228696,\n            \"long\": -3.5511644083993\n        },\n        {\n            \"lat\": 40.520135724444,\n            \"long\": -3.5511094526487\n        },\n        {\n            \"lat\": 40.52027155731,\n            \"long\": -3.5510006593102\n        },\n        {\n            \"lat\": 40.520330410818,\n            \"long\": -3.550957580236\n        },\n        {\n            \"lat\": 40.520467944524,\n            \"long\": -3.5508699314397\n        },\n        {\n            \"lat\": 40.520537858831,\n            \"long\": -3.5508310744731\n        },\n        {\n            \"lat\": 40.520597637384,\n            \"long\": -3.5508018147182\n        },\n        {\n            \"lat\": 40.520736194116,\n            \"long\": -3.5507452213294\n        },\n        {\n            \"lat\": 40.520945985409,\n            \"long\": -3.5506562740131\n        },\n        {\n            \"lat\": 40.521162697378,\n            \"long\": -3.5505499109534\n        },\n        {\n            \"lat\": 40.52126098014,\n            \"long\": -3.5505130561316\n        },\n        {\n            \"lat\": 40.521456613842,\n            \"long\": -3.5504458314814\n        },\n        {\n            \"lat\": 40.521557482627,\n            \"long\": -3.5504145460186\n        },\n        {\n            \"lat\": 40.521920047631,\n            \"long\": -3.5503084295782\n        },\n        {\n            \"lat\": 40.521994631721,\n            \"long\": -3.5502915674898\n        },\n        {\n            \"lat\": 40.522069376302,\n            \"long\": -3.550278838582\n        },\n        {\n            \"lat\": 40.522160135338,\n            \"long\": -3.5502706086226\n        },\n        {\n            \"lat\": 40.52227694151,\n            \"long\": -3.550259994434\n        },\n        {\n            \"lat\": 40.522357393669,\n            \"long\": -3.5502594717701\n        },\n        {\n            \"lat\": 40.522434269381,\n            \"long\": -3.5502532532173\n        },\n        {\n            \"lat\": 40.522500289694,\n            \"long\": -3.5502375014707\n        },\n        {\n            \"lat\": 40.522566755373,\n            \"long\": -3.5502228158332\n        },\n        {\n            \"lat\": 40.522639507376,\n            \"long\": -3.5502123135082\n        },\n        {\n            \"lat\": 40.522713501464,\n            \"long\": -3.550205835206\n        },\n        {\n            \"lat\": 40.522778561891,\n            \"long\": -3.5502024713465\n        },\n        {\n            \"lat\": 40.523020346836,\n            \"long\": -3.5502036219499\n        },\n        {\n            \"lat\": 40.523145174696,\n            \"long\": -3.5502111357308\n        },\n        {\n            \"lat\": 40.523240058688,\n            \"long\": -3.550225842249\n        },\n        {\n            \"lat\": 40.523306750913,\n            \"long\": -3.5502392557671\n        },\n        {\n            \"lat\": 40.523525779999,\n            \"long\": -3.5502913391182\n        },\n        {\n            \"lat\": 40.523591997047,\n            \"long\": -3.5503099433871\n        },\n        {\n            \"lat\": 40.523662339478,\n            \"long\": -3.5503324773217\n        },\n        {\n            \"lat\": 40.523726266703,\n            \"long\": -3.5503589727824\n        },\n        {\n            \"lat\": 40.523787660839,\n            \"long\": -3.5503876906654\n        },\n        {\n            \"lat\": 40.523912173647,\n            \"long\": -3.5504424253724\n        },\n        {\n            \"lat\": 40.524010339127,\n            \"long\": -3.5504869098126\n        },\n        {\n            \"lat\": 40.524070907259,\n            \"long\": -3.5505169198156\n        },\n        {\n            \"lat\": 40.524131511952,\n            \"long\": -3.5505411453288\n        },\n        {\n            \"lat\": 40.524224720988,\n            \"long\": -3.5505859436789\n        },\n        {\n            \"lat\": 40.524456135825,\n            \"long\": -3.5507044673915\n        },\n        {\n            \"lat\": 40.524512813335,\n            \"long\": -3.550739876649\n        },\n        {\n            \"lat\": 40.524569188503,\n            \"long\": -3.5507820128435\n        },\n        {\n            \"lat\": 40.524622923594,\n            \"long\": -3.5508299123823\n        },\n        {\n            \"lat\": 40.524682204016,\n            \"long\": -3.5508862395877\n        },\n        {\n            \"lat\": 40.524743069363,\n            \"long\": -3.5509502537125\n        },\n        {\n            \"lat\": 40.524800901034,\n            \"long\": -3.5510081040312\n        },\n        {\n            \"lat\": 40.524833014336,\n            \"long\": -3.5510371734734\n        },\n        {\n            \"lat\": 40.524985357631,\n            \"long\": -3.5511310978437\n        },\n        {\n            \"lat\": 40.525055746603,\n            \"long\": -3.5511627240942\n        },\n        {\n            \"lat\": 40.525082436157,\n            \"long\": -3.5511767557083\n        },\n        {\n            \"lat\": 40.525103435671,\n            \"long\": -3.551193810274\n        },\n        {\n            \"lat\": 40.525122612633,\n            \"long\": -3.5512152181311\n        },\n        {\n            \"lat\": 40.525138537496,\n            \"long\": -3.5512384883138\n        },\n        {\n            \"lat\": 40.525159754285,\n            \"long\": -3.5512855318916\n        },\n        {\n            \"lat\": 40.5251691366,\n            \"long\": -3.5515282217606\n        },\n        {\n            \"lat\": 40.525172635215,\n            \"long\": -3.5515502095723\n        },\n        {\n            \"lat\": 40.525193992513,\n            \"long\": -3.5516244081998\n        },\n        {\n            \"lat\": 40.525213239152,\n            \"long\": -3.5516689447198\n        },\n        {\n            \"lat\": 40.525256140369,\n            \"long\": -3.5517404866548\n        },\n        {\n            \"lat\": 40.525368416436,\n            \"long\": -3.5519050387812\n        },\n        {\n            \"lat\": 40.525511910881,\n            \"long\": -3.552133128012\n        },\n        {\n            \"lat\": 40.525549242292,\n            \"long\": -3.552201319155\n        },\n        {\n            \"lat\": 40.525584389602,\n            \"long\": -3.5522740968089\n        },\n        {\n            \"lat\": 40.525626525734,\n            \"long\": -3.552354841976\n        },\n        {\n            \"lat\": 40.525679548059,\n            \"long\": -3.5524386281458\n        },\n        {\n            \"lat\": 40.525732728711,\n            \"long\": -3.5525081303867\n        },\n        {\n            \"lat\": 40.525775670046,\n            \"long\": -3.5525711733552\n        },\n        {\n            \"lat\": 40.52581354566,\n            \"long\": -3.5526385430526\n        },\n        {\n            \"lat\": 40.525852370388,\n            \"long\": -3.5527146571401\n        },\n        {\n            \"lat\": 40.525893299568,\n            \"long\": -3.5528028190336\n        },\n        {\n            \"lat\": 40.525934806984,\n            \"long\": -3.5528830874925\n        },\n        {\n            \"lat\": 40.52597419805,\n            \"long\": -3.5529537756952\n        },\n        {\n            \"lat\": 40.526008717669,\n            \"long\": -3.5530258406757\n        },\n        {\n            \"lat\": 40.526051758078,\n            \"long\": -3.5531057678283\n        },\n        {\n            \"lat\": 40.526106488647,\n            \"long\": -3.5531901594743\n        },\n        {\n            \"lat\": 40.526164690454,\n            \"long\": -3.5532645445673\n        },\n        {\n            \"lat\": 40.526295456908,\n            \"long\": -3.553442830674\n        },\n        {\n            \"lat\": 40.526374141833,\n            \"long\": -3.5535667346084\n        },\n        {\n            \"lat\": 40.526547119787,\n            \"long\": -3.5538849070651\n        },\n        {\n            \"lat\": 40.526616878962,\n            \"long\": -3.5540101552331\n        },\n        {\n            \"lat\": 40.526871750767,\n            \"long\": -3.5543274817047\n        },\n        {\n            \"lat\": 40.526917771555,\n            \"long\": -3.5543868923317\n        },\n        {\n            \"lat\": 40.526956414925,\n            \"long\": -3.5544442351729\n        },\n        {\n            \"lat\": 40.526990284297,\n            \"long\": -3.5545014206711\n        },\n        {\n            \"lat\": 40.527018032978,\n            \"long\": -3.5545556041994\n        },\n        {\n            \"lat\": 40.527036316924,\n            \"long\": -3.5546127793923\n        },\n        {\n            \"lat\": 40.527046397387,\n            \"long\": -3.5546710676158\n        },\n        {\n            \"lat\": 40.527050701547,\n            \"long\": -3.5547146684005\n        },\n        {\n            \"lat\": 40.527048187022,\n            \"long\": -3.5547505388627\n        },\n        {\n            \"lat\": 40.527039880934,\n            \"long\": -3.5547917924687\n        },\n        {\n            \"lat\": 40.527010218724,\n            \"long\": -3.5548903666634\n        },\n        {\n            \"lat\": 40.526979193239,\n            \"long\": -3.5549914088488\n        },\n        {\n            \"lat\": 40.526969243466,\n            \"long\": -3.5550372414734\n        },\n        {\n            \"lat\": 40.526956878409,\n            \"long\": -3.555060752061\n        },\n        {\n            \"lat\": 40.526888643369,\n            \"long\": -3.5552748273949\n        },\n        {\n            \"lat\": 40.526873960776,\n            \"long\": -3.5554056378964\n        },\n        {\n            \"lat\": 40.526873481225,\n            \"long\": -3.5555053970291\n        },\n        {\n            \"lat\": 40.526886964673,\n            \"long\": -3.5556240434619\n        },\n        {\n            \"lat\": 40.526885945478,\n            \"long\": -3.5558359578628\n        },\n        {\n            \"lat\": 40.52686429579,\n            \"long\": -3.555954196004\n        },\n        {\n            \"lat\": 40.526835828946,\n            \"long\": -3.5560288125654\n        },\n        {\n            \"lat\": 40.526837590889,\n            \"long\": -3.5560370915204\n        },\n        {\n            \"lat\": 40.526816198645,\n            \"long\": -3.5560830772503\n        },\n        {\n            \"lat\": 40.526787712352,\n            \"long\": -3.5561242818053\n        },\n        {\n            \"lat\": 40.526750575559,\n            \"long\": -3.5561658870674\n        },\n        {\n            \"lat\": 40.526697473737,\n            \"long\": -3.5562489183072\n        },\n        {\n            \"lat\": 40.52668306005,\n            \"long\": -3.556323650761\n        },\n        {\n            \"lat\": 40.526752756297,\n            \"long\": -3.5564614158211\n        },\n        {\n            \"lat\": 40.52703310256,\n            \"long\": -3.5566881606869\n        },\n        {\n            \"lat\": 40.527355728564,\n            \"long\": -3.5569090118662\n        },\n        {\n            \"lat\": 40.527601292191,\n            \"long\": -3.5570419776552\n        },\n        {\n            \"lat\": 40.52791326309,\n            \"long\": -3.5571370053173\n        },\n        {\n            \"lat\": 40.527981302276,\n            \"long\": -3.5571511462122\n        },\n        {\n            \"lat\": 40.528050802751,\n            \"long\": -3.5571611669671\n        },\n        {\n            \"lat\": 40.528052244119,\n            \"long\": -3.5571611789039\n        },\n        {\n            \"lat\": 40.528190071537,\n            \"long\": -3.5571630287289\n        },\n        {\n            \"lat\": 40.52819142282,\n            \"long\": -3.5571630399197\n        },\n        {\n            \"lat\": 40.528258634012,\n            \"long\": -3.5571620616925\n        },\n        {\n            \"lat\": 40.528260435153,\n            \"long\": -3.5571621946742\n        },\n        {\n            \"lat\": 40.528317264308,\n            \"long\": -3.5571657350143\n        },\n        {\n            \"lat\": 40.528319695478,\n            \"long\": -3.5571659912793\n        },\n        {\n            \"lat\": 40.528377317185,\n            \"long\": -3.5571733162849\n        },\n        {\n            \"lat\": 40.52838064978,\n            \"long\": -3.5571734619505\n        },\n        {\n            \"lat\": 40.528442974719,\n            \"long\": -3.5571769297578\n        },\n        {\n            \"lat\": 40.52844928412,\n            \"long\": -3.5571762736183\n        },\n        {\n            \"lat\": 40.528547350721,\n            \"long\": -3.5571659758129\n        },\n        {\n            \"lat\": 40.528550145648,\n            \"long\": -3.5571655266969\n        },\n        {\n            \"lat\": 40.52858728991,\n            \"long\": -3.5571598129611\n        },\n        {\n            \"lat\": 40.528592702441,\n            \"long\": -3.5571583229303\n        },\n        {\n            \"lat\": 40.52865439503,\n            \"long\": -3.5571415962222\n        },\n        {\n            \"lat\": 40.528660081802,\n            \"long\": -3.5571392819979\n        },\n        {\n            \"lat\": 40.52871686171,\n            \"long\": -3.5571156667419\n        },\n        {\n            \"lat\": 40.528733029708,\n            \"long\": -3.5571069456742\n        },\n        {\n            \"lat\": 40.52887691613,\n            \"long\": -3.5570292688838\n        },\n        {\n            \"lat\": 40.528890201954,\n            \"long\": -3.557020405845\n        },\n        {\n            \"lat\": 40.528996400084,\n            \"long\": -3.5569491582846\n        },\n        {\n            \"lat\": 40.529020258341,\n            \"long\": -3.5569336529436\n        },\n        {\n            \"lat\": 40.52919313814,\n            \"long\": -3.5568217399129\n        },\n        {\n            \"lat\": 40.529196759766,\n            \"long\": -3.5568179917478\n        },\n        {\n            \"lat\": 40.529220842552,\n            \"long\": -3.5567932789514\n        },\n        {\n            \"lat\": 40.529260787776,\n            \"long\": -3.5567671625454\n        },\n        {\n            \"lat\": 40.52950317066,\n            \"long\": -3.5566085968192\n        },\n        {\n            \"lat\": 40.529556615109,\n            \"long\": -3.5565835364209\n        },\n        {\n            \"lat\": 40.529855756404,\n            \"long\": -3.5564431490148\n        },\n        {\n            \"lat\": 40.529895641851,\n            \"long\": -3.5564294288178\n        },\n        {\n            \"lat\": 40.530102380196,\n            \"long\": -3.5563579363455\n        },\n        {\n            \"lat\": 40.530142323883,\n            \"long\": -3.5563508283706\n        },\n        {\n            \"lat\": 40.530334830923,\n            \"long\": -3.5563161732888\n        },\n        {\n            \"lat\": 40.530405211565,\n            \"long\": -3.5563117964174\n        },\n        {\n            \"lat\": 40.530721779736,\n            \"long\": -3.5562922172662\n        },\n        {\n            \"lat\": 40.530734661392,\n            \"long\": -3.5562924418601\n        },\n        {\n            \"lat\": 40.530788981291,\n            \"long\": -3.5562932334592\n        },\n        {\n            \"lat\": 40.53080132016,\n            \"long\": -3.556293925844\n        },\n        {\n            \"lat\": 40.530850135692,\n            \"long\": -3.5562965728511\n        },\n        {\n            \"lat\": 40.530863289309,\n            \"long\": -3.5562964454861\n        },\n        {\n            \"lat\": 40.530912030671,\n            \"long\": -3.5562957859269\n        },\n        {\n            \"lat\": 40.530923751447,\n            \"long\": -3.5562938756638\n        },\n        {\n            \"lat\": 40.530964594843,\n            \"long\": -3.5562870111497\n        },\n        {\n            \"lat\": 40.531053883765,\n            \"long\": -3.5562847977675\n        },\n        {\n            \"lat\": 40.531348959745,\n            \"long\": -3.5562776741742\n        },\n        {\n            \"lat\": 40.531357674173,\n            \"long\": -3.5562452767956\n        },\n        {\n            \"lat\": 40.531384738146,\n            \"long\": -3.5561439597449\n        },\n        {\n            \"lat\": 40.531602430077,\n            \"long\": -3.5553665018655\n        },\n        {\n            \"lat\": 40.532246784317,\n            \"long\": -3.5530654098896\n        },\n        {\n            \"lat\": 40.532310282053,\n            \"long\": -3.553106194646\n        },\n        {\n            \"lat\": 40.532488380115,\n            \"long\": -3.553220772713\n        },\n        {\n            \"lat\": 40.532737082267,\n            \"long\": -3.5543180526501\n        },\n        {\n            \"lat\": 40.533400478645,\n            \"long\": -3.5572438272767\n        },\n        {\n            \"lat\": 40.533510130093,\n            \"long\": -3.5577639091302\n        },\n        {\n            \"lat\": 40.533788257376,\n            \"long\": -3.5590827393935\n        },\n        {\n            \"lat\": 40.533959050209,\n            \"long\": -3.5601276962902\n        },\n        {\n            \"lat\": 40.534371474726,\n            \"long\": -3.5626500218656\n        },\n        {\n            \"lat\": 40.53437467449,\n            \"long\": -3.5626774422577\n        },\n        {\n            \"lat\": 40.534382025261,\n            \"long\": -3.5627404382512\n        },\n        {\n            \"lat\": 40.534377355172,\n            \"long\": -3.5627929429898\n        },\n        {\n            \"lat\": 40.534366973941,\n            \"long\": -3.5629082163409\n        },\n        {\n            \"lat\": 40.534362932879,\n            \"long\": -3.5629425426238\n        },\n        {\n            \"lat\": 40.534354474848,\n            \"long\": -3.5630143800811\n        },\n        {\n            \"lat\": 40.534350982896,\n            \"long\": -3.5630469398089\n        },\n        {\n            \"lat\": 40.534344089684,\n            \"long\": -3.5631119301299\n        },\n        {\n            \"lat\": 40.534341287313,\n            \"long\": -3.5631508717202\n        },\n        {\n            \"lat\": 40.534335878816,\n            \"long\": -3.563225450409\n        },\n        {\n            \"lat\": 40.534333577203,\n            \"long\": -3.5632725434203\n        },\n        {\n            \"lat\": 40.534329283898,\n            \"long\": -3.5633585847923\n        },\n        {\n            \"lat\": 40.534326130586,\n            \"long\": -3.5634140540481\n        },\n        {\n            \"lat\": 40.534320611938,\n            \"long\": -3.563511184268\n        },\n        {\n            \"lat\": 40.534317365588,\n            \"long\": -3.5635672431091\n        },\n        {\n            \"lat\": 40.534311862363,\n            \"long\": -3.5636611853844\n        },\n        {\n            \"lat\": 40.534308603267,\n            \"long\": -3.5637198417728\n        },\n        {\n            \"lat\": 40.534303189428,\n            \"long\": -3.5638139028481\n        },\n        {\n            \"lat\": 40.534301024332,\n            \"long\": -3.5638514328169\n        },\n        {\n            \"lat\": 40.534297769749,\n            \"long\": -3.5639091446174\n        },\n        {\n            \"lat\": 40.534293879719,\n            \"long\": -3.5639696849041\n        },\n        {\n            \"lat\": 40.534288037729,\n            \"long\": -3.5640591373908\n        },\n        {\n            \"lat\": 40.534284030079,\n            \"long\": -3.5641234550993\n        },\n        {\n            \"lat\": 40.534278361222,\n            \"long\": -3.564214325921\n        },\n        {\n            \"lat\": 40.5342751572,\n            \"long\": -3.5642616474382\n        },\n        {\n            \"lat\": 40.534270789097,\n            \"long\": -3.5643259620978\n        },\n        {\n            \"lat\": 40.534269118786,\n            \"long\": -3.5643728241699\n        },\n        {\n            \"lat\": 40.534266928818,\n            \"long\": -3.5644338509726\n        },\n        {\n            \"lat\": 40.534264250377,\n            \"long\": -3.5645026548651\n        },\n        {\n            \"lat\": 40.534260857587,\n            \"long\": -3.5645885855501\n        },\n        {\n            \"lat\": 40.534258838368,\n            \"long\": -3.5646330831643\n        },\n        {\n            \"lat\": 40.534256416091,\n            \"long\": -3.5646863149982\n        },\n        {\n            \"lat\": 40.534253673844,\n            \"long\": -3.5647312788388\n        },\n        {\n            \"lat\": 40.534250628428,\n            \"long\": -3.5647829704479\n        },\n        {\n            \"lat\": 40.534248815278,\n            \"long\": -3.5648221563711\n        },\n        {\n            \"lat\": 40.53424689125,\n            \"long\": -3.5648655920877\n        },\n        {\n            \"lat\": 40.534242788995,\n            \"long\": -3.5649123156283\n        },\n        {\n            \"lat\": 40.53423849154,\n            \"long\": -3.5649621074925\n        },\n        {\n            \"lat\": 40.534233155217,\n            \"long\": -3.5650401107203\n        },\n        {\n            \"lat\": 40.534227720094,\n            \"long\": -3.565119884241\n        },\n        {\n            \"lat\": 40.534223775384,\n            \"long\": -3.5651712140286\n        },\n        {\n            \"lat\": 40.534219835271,\n            \"long\": -3.5652215992432\n        },\n        {\n            \"lat\": 40.534212952304,\n            \"long\": -3.5653026593973\n        },\n        {\n            \"lat\": 40.534206542817,\n            \"long\": -3.5653790004877\n        },\n        {\n            \"lat\": 40.534203136192,\n            \"long\": -3.5654308070695\n        },\n        {\n            \"lat\": 40.534200024069,\n            \"long\": -3.5654776569443\n        },\n        {\n            \"lat\": 40.53419609351,\n            \"long\": -3.5655628745202\n        },\n        {\n            \"lat\": 40.53419257814,\n            \"long\": -3.5656368783912\n        },\n        {\n            \"lat\": 40.534190476434,\n            \"long\": -3.5656981419747\n        },\n        {\n            \"lat\": 40.534188695248,\n            \"long\": -3.5657491356698\n        },\n        {\n            \"lat\": 40.534187036503,\n            \"long\": -3.5657935181566\n        },\n        {\n            \"lat\": 40.534185690783,\n            \"long\": -3.5658291656777\n        },\n        {\n            \"lat\": 40.534184807621,\n            \"long\": -3.5658623375004\n        },\n        {\n            \"lat\": 40.534184052181,\n            \"long\": -3.5658878236734\n        },\n        {\n            \"lat\": 40.534182649545,\n            \"long\": -3.566174145266\n        },\n        {\n            \"lat\": 40.534180388214,\n            \"long\": -3.5662311567567\n        },\n        {\n            \"lat\": 40.534178847722,\n            \"long\": -3.5662697545157\n        },\n        {\n            \"lat\": 40.534177516323,\n            \"long\": -3.5663024502526\n        },\n        {\n            \"lat\": 40.53417660139,\n            \"long\": -3.5663236961602\n        },\n        {\n            \"lat\": 40.534172626629,\n            \"long\": -3.5663810474394\n        },\n        {\n            \"lat\": 40.534170199126,\n            \"long\": -3.5664168039064\n        },\n        {\n            \"lat\": 40.534160532298,\n            \"long\": -3.5665142529359\n        },\n        {\n            \"lat\": 40.534154841769,\n            \"long\": -3.5665724162665\n        },\n        {\n            \"lat\": 40.534149000907,\n            \"long\": -3.5666428581795\n        },\n        {\n            \"lat\": 40.534145650466,\n            \"long\": -3.5666830937199\n        },\n        {\n            \"lat\": 40.534142259213,\n            \"long\": -3.5667500139873\n        },\n        {\n            \"lat\": 40.534140458139,\n            \"long\": -3.5667866022319\n        },\n        {\n            \"lat\": 40.534138794086,\n            \"long\": -3.5668503490049\n        },\n        {\n            \"lat\": 40.534138000138,\n            \"long\": -3.5668836396176\n        },\n        {\n            \"lat\": 40.534137353329,\n            \"long\": -3.5669236617757\n        },\n        {\n            \"lat\": 40.534136985167,\n            \"long\": -3.5669436134394\n        },\n        {\n            \"lat\": 40.534138463003,\n            \"long\": -3.5670096301257\n        },\n        {\n            \"lat\": 40.53413920915,\n            \"long\": -3.5670411625865\n        },\n        {\n            \"lat\": 40.534143340809,\n            \"long\": -3.5671171199986\n        },\n        {\n            \"lat\": 40.534145242967,\n            \"long\": -3.5671517321746\n        },\n        {\n            \"lat\": 40.534148151036,\n            \"long\": -3.5672200043699\n        },\n        {\n            \"lat\": 40.534149446969,\n            \"long\": -3.5672496404574\n        },\n        {\n            \"lat\": 40.534150117921,\n            \"long\": -3.5673148238276\n        },\n        {\n            \"lat\": 40.534150345504,\n            \"long\": -3.5673418650516\n        },\n        {\n            \"lat\": 40.534147524165,\n            \"long\": -3.5674210699551\n        },\n        {\n            \"lat\": 40.534146469654,\n            \"long\": -3.5674523510822\n        },\n        {\n            \"lat\": 40.53414035916,\n            \"long\": -3.5675225544822\n        },\n        {\n            \"lat\": 40.534138067787,\n            \"long\": -3.567548865995\n        },\n        {\n            \"lat\": 40.534118054697,\n            \"long\": -3.5677367914116\n        },\n        {\n            \"lat\": 40.534110879254,\n            \"long\": -3.5678036796519\n        },\n        {\n            \"lat\": 40.534105065055,\n            \"long\": -3.5678868737869\n        },\n        {\n            \"lat\": 40.53410303515,\n            \"long\": -3.5679149586131\n        },\n        {\n            \"lat\": 40.534099662918,\n            \"long\": -3.5679778643682\n        },\n        {\n            \"lat\": 40.534098662816,\n            \"long\": -3.5679980468289\n        },\n        {\n            \"lat\": 40.534093658084,\n            \"long\": -3.5680814839192\n        },\n        {\n            \"lat\": 40.53409209249,\n            \"long\": -3.5681067388451\n        },\n        {\n            \"lat\": 40.534085830146,\n            \"long\": -3.5682260602319\n        },\n        {\n            \"lat\": 40.534084040799,\n            \"long\": -3.5682601689195\n        },\n        {\n            \"lat\": 40.534064336477,\n            \"long\": -3.568657904776\n        },\n        {\n            \"lat\": 40.534059034861,\n            \"long\": -3.5687649543428\n        },\n        {\n            \"lat\": 40.534054830462,\n            \"long\": -3.5688504053752\n        },\n        {\n            \"lat\": 40.534053823232,\n            \"long\": -3.5688720046534\n        },\n        {\n            \"lat\": 40.534053343612,\n            \"long\": -3.5689694127936\n        },\n        {\n            \"lat\": 40.534057900905,\n            \"long\": -3.5691416052727\n        },\n        {\n            \"lat\": 40.534058973659,\n            \"long\": -3.569179870779\n        },\n        {\n            \"lat\": 40.534063655631,\n            \"long\": -3.5693449798167\n        },\n        {\n            \"lat\": 40.53406456793,\n            \"long\": -3.5693792294072\n        },\n        {\n            \"lat\": 40.534067476899,\n            \"long\": -3.5694653310077\n        },\n        {\n            \"lat\": 40.534068026027,\n            \"long\": -3.5694818662147\n        },\n        {\n            \"lat\": 40.534070653857,\n            \"long\": -3.5695336054965\n        },\n        {\n            \"lat\": 40.534071058888,\n            \"long\": -3.5695428188087\n        },\n        {\n            \"lat\": 40.534077577547,\n            \"long\": -3.569627652164\n        },\n        {\n            \"lat\": 40.534078589884,\n            \"long\": -3.5696415936381\n        },\n        {\n            \"lat\": 40.53409248599,\n            \"long\": -3.569874556122\n        },\n        {\n            \"lat\": 40.534094563998,\n            \"long\": -3.5699098782899\n        },\n        {\n            \"lat\": 40.53410593147,\n            \"long\": -3.5700892013745\n        },\n        {\n            \"lat\": 40.534107520751,\n            \"long\": -3.5701140106956\n        },\n        {\n            \"lat\": 40.534119292372,\n            \"long\": -3.5702478900145\n        },\n        {\n            \"lat\": 40.534120741074,\n            \"long\": -3.570264669018\n        },\n        {\n            \"lat\": 40.534133148686,\n            \"long\": -3.5704156747335\n        },\n        {\n            \"lat\": 40.534134506112,\n            \"long\": -3.570432689121\n        },\n        {\n            \"lat\": 40.534142850627,\n            \"long\": -3.5705672479305\n        },\n        {\n            \"lat\": 40.534143775097,\n            \"long\": -3.5705807163844\n        },\n        {\n            \"lat\": 40.534149939347,\n            \"long\": -3.570682431727\n        },\n        {\n            \"lat\": 40.534150526207,\n            \"long\": -3.5706912923727\n        },\n        {\n            \"lat\": 40.534169838113,\n            \"long\": -3.5711586813265\n        },\n        {\n            \"lat\": 40.534171374049,\n            \"long\": -3.5711942351214\n        },\n        {\n            \"lat\": 40.534177695161,\n            \"long\": -3.571300556841\n        },\n        {\n            \"lat\": 40.534178111727,\n            \"long\": -3.571307408764\n        },\n        {\n            \"lat\": 40.534209800605,\n            \"long\": -3.5716398129339\n        },\n        {\n            \"lat\": 40.534211514687,\n            \"long\": -3.5716575388501\n        },\n        {\n            \"lat\": 40.53422177235,\n            \"long\": -3.5717875092733\n        },\n        {\n            \"lat\": 40.534222195314,\n            \"long\": -3.5717930624257\n        },\n        {\n            \"lat\": 40.53423497763,\n            \"long\": -3.5719407657115\n        },\n        {\n            \"lat\": 40.534235314592,\n            \"long\": -3.5719454916047\n        },\n        {\n            \"lat\": 40.534242687912,\n            \"long\": -3.5720393064172\n        },\n        {\n            \"lat\": 40.534242858729,\n            \"long\": -3.5720411970813\n        },\n        {\n            \"lat\": 40.534249589681,\n            \"long\": -3.5721373679651\n        },\n        {\n            \"lat\": 40.534249677428,\n            \"long\": -3.5721378410143\n        },\n        {\n            \"lat\": 40.53426092376,\n            \"long\": -3.5722863578863\n        },\n        {\n            \"lat\": 40.534276015993,\n            \"long\": -3.5725859264465\n        },\n        {\n            \"lat\": 40.534278107144,\n            \"long\": -3.5726911379535\n        },\n        {\n            \"lat\": 40.534291838765,\n            \"long\": -3.5730105318207\n        },\n        {\n            \"lat\": 40.534294692905,\n            \"long\": -3.5731071421398\n        },\n        {\n            \"lat\": 40.534294748928,\n            \"long\": -3.5734789633095\n        },\n        {\n            \"lat\": 40.534288257231,\n            \"long\": -3.5738429356119\n        },\n        {\n            \"lat\": 40.534287206871,\n            \"long\": -3.5740543885724\n        },\n        {\n            \"lat\": 40.534287364941,\n            \"long\": -3.5741676245982\n        },\n        {\n            \"lat\": 40.534285486152,\n            \"long\": -3.5742737586866\n        },\n        {\n            \"lat\": 40.534280551665,\n            \"long\": -3.5744327646203\n        },\n        {\n            \"lat\": 40.534277450776,\n            \"long\": -3.5745309771747\n        },\n        {\n            \"lat\": 40.534273784137,\n            \"long\": -3.5745980128863\n        },\n        {\n            \"lat\": 40.5342418516,\n            \"long\": -3.5748779337379\n        },\n        {\n            \"lat\": 40.534251436871,\n            \"long\": -3.5749612590428\n        },\n        {\n            \"lat\": 40.534261772548,\n            \"long\": -3.5750205033366\n        },\n        {\n            \"lat\": 40.534267454325,\n            \"long\": -3.5750735679197\n        },\n        {\n            \"lat\": 40.534271813765,\n            \"long\": -3.5751389010833\n        },\n        {\n            \"lat\": 40.534275900864,\n            \"long\": -3.5752408354119\n        },\n        {\n            \"lat\": 40.534272647601,\n            \"long\": -3.5753695101612\n        },\n        {\n            \"lat\": 40.53426880955,\n            \"long\": -3.5755974697894\n        },\n        {\n            \"lat\": 40.534255563356,\n            \"long\": -3.5758512192386\n        },\n        {\n            \"lat\": 40.534250510787,\n            \"long\": -3.5760696160512\n        },\n        {\n            \"lat\": 40.534263032683,\n            \"long\": -3.5762142479946\n        },\n        {\n            \"lat\": 40.534287496846,\n            \"long\": -3.576366775324\n        },\n        {\n            \"lat\": 40.534226355527,\n            \"long\": -3.5763790035788\n        },\n        {\n            \"lat\": 40.533872067433,\n            \"long\": -3.5784835835812\n        },\n        {\n            \"lat\": 40.533852751486,\n            \"long\": -3.5785449345363\n        },\n        {\n            \"lat\": 40.533889356506,\n            \"long\": -3.5786650955811\n        },\n        {\n            \"lat\": 40.533929673832,\n            \"long\": -3.5787275499565\n        },\n        {\n            \"lat\": 40.533976881356,\n            \"long\": -3.5787813261299\n        },\n        {\n            \"lat\": 40.534003595771,\n            \"long\": -3.5788436635938\n        },\n        {\n            \"lat\": 40.534023554528,\n            \"long\": -3.5789237723348\n        },\n        {\n            \"lat\": 40.534040045621,\n            \"long\": -3.5790127069232\n        },\n        {\n            \"lat\": 40.534070027512,\n            \"long\": -3.5791061264943\n        },\n        {\n            \"lat\": 40.534099941853,\n            \"long\": -3.5792130061668\n        },\n        {\n            \"lat\": 40.534133257424,\n            \"long\": -3.5793242840219\n        },\n        {\n            \"lat\": 40.534169795982,\n            \"long\": -3.5794754992909\n        },\n        {\n            \"lat\": 40.534196019687,\n            \"long\": -3.5796355877749\n        },\n        {\n            \"lat\": 40.534242714933,\n            \"long\": -3.5797913777781\n        },\n        {\n            \"lat\": 40.534299298585,\n            \"long\": -3.5799872809485\n        },\n        {\n            \"lat\": 40.53437917836,\n            \"long\": -3.58019046995\n        },\n        {\n            \"lat\": 40.534443048257,\n            \"long\": -3.5803525489018\n        },\n        {\n            \"lat\": 40.534643847808,\n            \"long\": -3.5808204352398\n        },\n        {\n            \"lat\": 40.534710564777,\n            \"long\": -3.5810252837146\n        },\n        {\n            \"lat\": 40.534753498932,\n            \"long\": -3.581229927078\n        },\n        {\n            \"lat\": 40.534792742467,\n            \"long\": -3.5815055028632\n        },\n        {\n            \"lat\": 40.534805249942,\n            \"long\": -3.581723226297\n        },\n        {\n            \"lat\": 40.534817868507,\n            \"long\": -3.5819009227739\n        },\n        {\n            \"lat\": 40.534827467162,\n            \"long\": -3.5820163549503\n        },\n        {\n            \"lat\": 40.534837132266,\n            \"long\": -3.5821185749491\n        },\n        {\n            \"lat\": 40.534853195233,\n            \"long\": -3.5822741029727\n        },\n        {\n            \"lat\": 40.534903442912,\n            \"long\": -3.5825108097197\n        },\n        {\n            \"lat\": 40.534912260728,\n            \"long\": -3.5825308410748\n        },\n        {\n            \"lat\": 40.535004268879,\n            \"long\": -3.5827398077186\n        },\n        {\n            \"lat\": 40.535093681918,\n            \"long\": -3.5829273804747\n        },\n        {\n            \"lat\": 40.535238951322,\n            \"long\": -3.5832931326983\n        },\n        {\n            \"lat\": 40.535316301743,\n            \"long\": -3.5835322020948\n        },\n        {\n            \"lat\": 40.535355461579,\n            \"long\": -3.5837341003498\n        },\n        {\n            \"lat\": 40.535384307169,\n            \"long\": -3.5839803064989\n        },\n        {\n            \"lat\": 40.535373438775,\n            \"long\": -3.5841343034776\n        },\n        {\n            \"lat\": 40.535356098458,\n            \"long\": -3.5842675805991\n        },\n        {\n            \"lat\": 40.535330463692,\n            \"long\": -3.5843842547216\n        },\n        {\n            \"lat\": 40.535279507008,\n            \"long\": -3.584537891304\n        },\n        {\n            \"lat\": 40.535215157139,\n            \"long\": -3.5847033488488\n        },\n        {\n            \"lat\": 40.535201270033,\n            \"long\": -3.5848128039092\n        },\n        {\n            \"lat\": 40.535214212343,\n            \"long\": -3.5848900209668\n        },\n        {\n            \"lat\": 40.535250546802,\n            \"long\": -3.5849733453709\n        },\n        {\n            \"lat\": 40.535343590092,\n            \"long\": -3.585101560325\n        },\n        {\n            \"lat\": 40.535453419156,\n            \"long\": -3.5852061880531\n        },\n        {\n            \"lat\": 40.53560807323,\n            \"long\": -3.5853718983339\n        },\n        {\n            \"lat\": 40.535717556204,\n            \"long\": -3.5855447731394\n        },\n        {\n            \"lat\": 40.53578058528,\n            \"long\": -3.5856579686264\n        },\n        {\n            \"lat\": 40.535840086319,\n            \"long\": -3.5857917855238\n        },\n        {\n            \"lat\": 40.535909195555,\n            \"long\": -3.5860028034896\n        },\n        {\n            \"lat\": 40.535958440929,\n            \"long\": -3.5861869629759\n        },\n        {\n            \"lat\": 40.535999150512,\n            \"long\": -3.5864021030253\n        },\n        {\n            \"lat\": 40.536018472319,\n            \"long\": -3.5865534123281\n        },\n        {\n            \"lat\": 40.536024521758,\n            \"long\": -3.5866749681627\n        },\n        {\n            \"lat\": 40.536013784826,\n            \"long\": -3.586820111398\n        },\n        {\n            \"lat\": 40.535992898279,\n            \"long\": -3.5869769620757\n        },\n        {\n            \"lat\": 40.535988842252,\n            \"long\": -3.5871192115456\n        },\n        {\n            \"lat\": 40.536016218127,\n            \"long\": -3.5873341177346\n        },\n        {\n            \"lat\": 40.53605853869,\n            \"long\": -3.5875509258338\n        },\n        {\n            \"lat\": 40.536123632725,\n            \"long\": -3.5879130522683\n        },\n        {\n            \"lat\": 40.536169527535,\n            \"long\": -3.5880823064761\n        },\n        {\n            \"lat\": 40.536299955177,\n            \"long\": -3.5884049649525\n        },\n        {\n            \"lat\": 40.53637610288,\n            \"long\": -3.5885597247602\n        },\n        {\n            \"lat\": 40.536405738304,\n            \"long\": -3.5886488979272\n        },\n        {\n            \"lat\": 40.536451268981,\n            \"long\": -3.5889070640475\n        },\n        {\n            \"lat\": 40.536512032299,\n            \"long\": -3.589128286946\n        },\n        {\n            \"lat\": 40.536554486182,\n            \"long\": -3.5893182948386\n        },\n        {\n            \"lat\": 40.536600634658,\n            \"long\": -3.5894550813664\n        },\n        {\n            \"lat\": 40.536653419184,\n            \"long\": -3.589597818442\n        },\n        {\n            \"lat\": 40.536765911853,\n            \"long\": -3.5898328393306\n        },\n        {\n            \"lat\": 40.53680049277,\n            \"long\": -3.5899413040162\n        },\n        {\n            \"lat\": 40.536833188308,\n            \"long\": -3.5900837593703\n        },\n        {\n            \"lat\": 40.536879184471,\n            \"long\": -3.5902501838036\n        },\n        {\n            \"lat\": 40.536912151717,\n            \"long\": -3.5903393876262\n        },\n        {\n            \"lat\": 40.536971843924,\n            \"long\": -3.5904347301736\n        },\n        {\n            \"lat\": 40.537031444925,\n            \"long\": -3.5905479022525\n        },\n        {\n            \"lat\": 40.537071168904,\n            \"long\": -3.5906370476803\n        },\n        {\n            \"lat\": 40.537110892736,\n            \"long\": -3.5907085873819\n        },\n        {\n            \"lat\": 40.537143769059,\n            \"long\": -3.5908155030496\n        },\n        {\n            \"lat\": 40.537170039391,\n            \"long\": -3.5909105527007\n        },\n        {\n            \"lat\": 40.53720300612,\n            \"long\": -3.5909997572284\n        },\n        {\n            \"lat\": 40.5372890887,\n            \"long\": -3.5911665355595\n        },\n        {\n            \"lat\": 40.537461456302,\n            \"long\": -3.5914762428625\n        },\n        {\n            \"lat\": 40.537526278757,\n            \"long\": -3.5916779055981\n        },\n        {\n            \"lat\": 40.537545781043,\n            \"long\": -3.5918278044463\n        },\n        {\n            \"lat\": 40.537567079498,\n            \"long\": -3.5919611759753\n        },\n        {\n            \"lat\": 40.537616863753,\n            \"long\": -3.5921262198789\n        },\n        {\n            \"lat\": 40.537670085519,\n            \"long\": -3.5922884603401\n        },\n        {\n            \"lat\": 40.537682477659,\n            \"long\": -3.5925071386726\n        },\n        {\n            \"lat\": 40.537691628317,\n            \"long\": -3.592707840098\n        },\n        {\n            \"lat\": 40.537695959457,\n            \"long\": -3.592846978519\n        },\n        {\n            \"lat\": 40.537695261961,\n            \"long\": -3.5929846556387\n        },\n        {\n            \"lat\": 40.537680550416,\n            \"long\": -3.5932180796776\n        },\n        {\n            \"lat\": 40.537652202504,\n            \"long\": -3.5934753656635\n        },\n        {\n            \"lat\": 40.537640928298,\n            \"long\": -3.5937058795547\n        },\n        {\n            \"lat\": 40.537640728678,\n            \"long\": -3.5937447266411\n        },\n        {\n            \"lat\": 40.537621625073,\n            \"long\": -3.5938508314025\n        },\n        {\n            \"lat\": 40.53756666837,\n            \"long\": -3.5940090476405\n        },\n        {\n            \"lat\": 40.537481119919,\n            \"long\": -3.5942298126175\n        },\n        {\n            \"lat\": 40.537415703262,\n            \"long\": -3.5944598472273\n        },\n        {\n            \"lat\": 40.537370645977,\n            \"long\": -3.5946899315248\n        },\n        {\n            \"lat\": 40.537327109385,\n            \"long\": -3.5949395241461\n        },\n        {\n            \"lat\": 40.53727814916,\n            \"long\": -3.5952625148052\n        },\n        {\n            \"lat\": 40.537260704023,\n            \"long\": -3.5953611941426\n        },\n        {\n            \"lat\": 40.537256907848,\n            \"long\": -3.5954510201231\n        },\n        {\n            \"lat\": 40.537291045067,\n            \"long\": -3.595716178015\n        },\n        {\n            \"lat\": 40.537294054316,\n            \"long\": -3.5957790237571\n        },\n        {\n            \"lat\": 40.537283640294,\n            \"long\": -3.5958418686624\n        },\n        {\n            \"lat\": 40.537252651499,\n            \"long\": -3.5959463318924\n        },\n        {\n            \"lat\": 40.537184284603,\n            \"long\": -3.5961014628568\n        },\n        {\n            \"lat\": 40.53712247332,\n            \"long\": -3.5962955119798\n        },\n        {\n            \"lat\": 40.537098298866,\n            \"long\": -3.5964061753711\n        },\n        {\n            \"lat\": 40.537097819777,\n            \"long\": -3.596498982509\n        },\n        {\n            \"lat\": 40.53711896111,\n            \"long\": -3.5966442911724\n        },\n        {\n            \"lat\": 40.537138843588,\n            \"long\": -3.5967193307306\n        },\n        {\n            \"lat\": 40.537158880922,\n            \"long\": -3.5967643791967\n        },\n        {\n            \"lat\": 40.537226073058,\n            \"long\": -3.5968368866526\n        },\n        {\n            \"lat\": 40.53728658687,\n            \"long\": -3.5968942206169\n        },\n        {\n            \"lat\": 40.537366626598,\n            \"long\": -3.5970955507942\n        },\n        {\n            \"lat\": 40.537433366643,\n            \"long\": -3.5972729109255\n        },\n        {\n            \"lat\": 40.537439457683,\n            \"long\": -3.5974016617635\n        },\n        {\n            \"lat\": 40.537452784794,\n            \"long\": -3.5974376768488\n        },\n        {\n            \"lat\": 40.537526763992,\n            \"long\": -3.5975042234442\n        },\n        {\n            \"lat\": 40.537534436783,\n            \"long\": -3.597518697543\n        },\n        {\n            \"lat\": 40.537570216957,\n            \"long\": -3.5975854952994\n        },\n        {\n            \"lat\": 40.537650271348,\n            \"long\": -3.5977837571573\n        },\n        {\n            \"lat\": 40.537713727038,\n            \"long\": -3.5979340488041\n        },\n        {\n            \"lat\": 40.537743668211,\n            \"long\": -3.5980149648539\n        },\n        {\n            \"lat\": 40.537783105484,\n            \"long\": -3.598227980925\n        },\n        {\n            \"lat\": 40.537813213574,\n            \"long\": -3.5982940203552\n        },\n        {\n            \"lat\": 40.537927100651,\n            \"long\": -3.5984807766431\n        },\n        {\n            \"lat\": 40.537950467594,\n            \"long\": -3.5985437924711\n        },\n        {\n            \"lat\": 40.537960200453,\n            \"long\": -3.5986127209864\n        },\n        {\n            \"lat\": 40.53796634483,\n            \"long\": -3.598732629071\n        },\n        {\n            \"lat\": 40.537965646609,\n            \"long\": -3.5988673545996\n        },\n        {\n            \"lat\": 40.538006647584,\n            \"long\": -3.5991086074526\n        },\n        {\n            \"lat\": 40.538009480534,\n            \"long\": -3.5992224639646\n        },\n        {\n            \"lat\": 40.538000705156,\n            \"long\": -3.5996115847719\n        },\n        {\n            \"lat\": 40.538000114392,\n            \"long\": -3.5997254107626\n        },\n        {\n            \"lat\": 40.538009768698,\n            \"long\": -3.5998093352407\n        },\n        {\n            \"lat\": 40.538026205716,\n            \"long\": -3.5998882308987\n        },\n        {\n            \"lat\": 40.538044400167,\n            \"long\": -3.5999756560067\n        },\n        {\n            \"lat\": 40.538063922324,\n            \"long\": -3.6001196544436\n        },\n        {\n            \"lat\": 40.538062973424,\n            \"long\": -3.6003023193348\n        },\n        {\n            \"lat\": 40.538045322114,\n            \"long\": -3.600439845734\n        },\n        {\n            \"lat\": 40.538010871452,\n            \"long\": -3.6005682477905\n        },\n        {\n            \"lat\": 40.53794944129,\n            \"long\": -3.6006875525781\n        },\n        {\n            \"lat\": 40.537831413268,\n            \"long\": -3.6009843009813\n        },\n        {\n            \"lat\": 40.537797117419,\n            \"long\": -3.6010828290238\n        },\n        {\n            \"lat\": 40.537742665088,\n            \"long\": -3.6011422098056\n        },\n        {\n            \"lat\": 40.537698513712,\n            \"long\": -3.6011956604092\n        },\n        {\n            \"lat\": 40.53766776895,\n            \"long\": -3.6012523009203\n        },\n        {\n            \"lat\": 40.537664264385,\n            \"long\": -3.601285214362\n        },\n        {\n            \"lat\": 40.537714611197,\n            \"long\": -3.6013396160238\n        },\n        {\n            \"lat\": 40.537734740129,\n            \"long\": -3.6013667186421\n        },\n        {\n            \"lat\": 40.537727750239,\n            \"long\": -3.6014115271988\n        },\n        {\n            \"lat\": 40.537714097408,\n            \"long\": -3.6014383277391\n        },\n        {\n            \"lat\": 40.537680128194,\n            \"long\": -3.6014740388615\n        },\n        {\n            \"lat\": 40.537646253017,\n            \"long\": -3.6014916843059\n        },\n        {\n            \"lat\": 40.53760235044,\n            \"long\": -3.6014973138163\n        },\n        {\n            \"lat\": 40.537575278326,\n            \"long\": -3.6015060458837\n        },\n        {\n            \"lat\": 40.537558217624,\n            \"long\": -3.6015298638277\n        },\n        {\n            \"lat\": 40.537554784692,\n            \"long\": -3.6015507335361\n        },\n        {\n            \"lat\": 40.537554628544,\n            \"long\": -3.6015807248224\n        },\n        {\n            \"lat\": 40.537574492429,\n            \"long\": -3.6016587181875\n        },\n        {\n            \"lat\": 40.537587646646,\n            \"long\": -3.6017276773726\n        },\n        {\n            \"lat\": 40.537580703355,\n            \"long\": -3.6017635120185\n        },\n        {\n            \"lat\": 40.537553537129,\n            \"long\": -3.6017903095921\n        },\n        {\n            \"lat\": 40.537523026402,\n            \"long\": -3.6018019628005\n        },\n        {\n            \"lat\": 40.537474087065,\n            \"long\": -3.6018060119721\n        },\n        {\n            \"lat\": 40.537372776586,\n            \"long\": -3.6017811349606\n        },\n        {\n            \"lat\": 40.537305213093,\n            \"long\": -3.6017805304156\n        },\n        {\n            \"lat\": 40.537257700324,\n            \"long\": -3.6018220240038\n        },\n        {\n            \"lat\": 40.537213392404,\n            \"long\": -3.601905464908\n        },\n        {\n            \"lat\": 40.537196129237,\n            \"long\": -3.601968129394\n        },\n        {\n            \"lat\": 40.537169466102,\n            \"long\": -3.6022268418312\n        },\n        {\n            \"lat\": 40.537178708843,\n            \"long\": -3.6024066435206\n        },\n        {\n            \"lat\": 40.537174848511,\n            \"long\": -3.6024904462823\n        },\n        {\n            \"lat\": 40.53712364336,\n            \"long\": -3.6026007472389\n        },\n        {\n            \"lat\": 40.53704840214,\n            \"long\": -3.6027767215665\n        },\n        {\n            \"lat\": 40.537027804755,\n            \"long\": -3.6028394738684\n        },\n        {\n            \"lat\": 40.537020626382,\n            \"long\": -3.6029202946589\n        },\n        {\n            \"lat\": 40.537023396992,\n            \"long\": -3.603028115177\n        },\n        {\n            \"lat\": 40.53704685507,\n            \"long\": -3.6030731961105\n        },\n        {\n            \"lat\": 40.537077026235,\n            \"long\": -3.6031093631513\n        },\n        {\n            \"lat\": 40.537125883739,\n            \"long\": -3.603138258722\n        },\n        {\n            \"lat\": 40.537173049442,\n            \"long\": -3.6031806003684\n        },\n        {\n            \"lat\": 40.537182982967,\n            \"long\": -3.6032105638929\n        },\n        {\n            \"lat\": 40.53716892283,\n            \"long\": -3.6033152934897\n        },\n        {\n            \"lat\": 40.537155066086,\n            \"long\": -3.6033810582294\n        },\n        {\n            \"lat\": 40.537147981686,\n            \"long\": -3.6034438136084\n        },\n        {\n            \"lat\": 40.537157754835,\n            \"long\": -3.6035217164958\n        },\n        {\n            \"lat\": 40.537200921639,\n            \"long\": -3.6036569521341\n        },\n        {\n            \"lat\": 40.537244398022,\n            \"long\": -3.603750153933\n        },\n        {\n            \"lat\": 40.537294525165,\n            \"long\": -3.6038463675902\n        },\n        {\n            \"lat\": 40.537351529516,\n            \"long\": -3.6039367390948\n        },\n        {\n            \"lat\": 40.537433840165,\n            \"long\": -3.6040287550093\n        },\n        {\n            \"lat\": 40.537614977993,\n            \"long\": -3.6042758615475\n        },\n        {\n            \"lat\": 40.537685196982,\n            \"long\": -3.6044232679552\n        },\n        {\n            \"lat\": 40.537735385947,\n            \"long\": -3.6045075570473\n        },\n        {\n            \"lat\": 40.537795876004,\n            \"long\": -3.6045859166958\n        },\n        {\n            \"lat\": 40.53787654434,\n            \"long\": -3.6046645759877\n        },\n        {\n            \"lat\": 40.537911764535,\n            \"long\": -3.6047170849118\n        },\n        {\n            \"lat\": 40.537921477636,\n            \"long\": -3.6047890842245\n        },\n        {\n            \"lat\": 40.537924493524,\n            \"long\": -3.6048669274279\n        },\n        {\n            \"lat\": 40.537937786767,\n            \"long\": -3.6049089661279\n        },\n        {\n            \"lat\": 40.537954507094,\n            \"long\": -3.6049330871894\n        },\n        {\n            \"lat\": 40.538035347683,\n            \"long\": -3.6049788036835\n        },\n        {\n            \"lat\": 40.538102691639,\n            \"long\": -3.6050213287273\n        },\n        {\n            \"lat\": 40.538129576042,\n            \"long\": -3.6050484933791\n        },\n        {\n            \"lat\": 40.538176521494,\n            \"long\": -3.6051327543127\n        },\n        {\n            \"lat\": 40.53820983263,\n            \"long\": -3.605222903069\n        },\n        {\n            \"lat\": 40.538239203229,\n            \"long\": -3.6054117453243\n        },\n        {\n            \"lat\": 40.538266865968,\n            \"long\": -3.6056169858552\n        },\n        {\n            \"lat\": 40.538293027847,\n            \"long\": -3.6057819468293\n        },\n        {\n            \"lat\": 40.538299485781,\n            \"long\": -3.605838920872\n        },\n        {\n            \"lat\": 40.538285706237,\n            \"long\": -3.6058896903825\n        },\n        {\n            \"lat\": 40.538258445565,\n            \"long\": -3.6059343161926\n        },\n        {\n            \"lat\": 40.538231027576,\n            \"long\": -3.60600893353\n        },\n        {\n            \"lat\": 40.538223988197,\n            \"long\": -3.6060628338416\n        },\n        {\n            \"lat\": 40.538227097378,\n            \"long\": -3.6061227297361\n        },\n        {\n            \"lat\": 40.538263646636,\n            \"long\": -3.6062308686091\n        },\n        {\n            \"lat\": 40.538347313194,\n            \"long\": -3.6063903260933\n        },\n        {\n            \"lat\": 40.538387254483,\n            \"long\": -3.6065043882308\n        },\n        {\n            \"lat\": 40.538393491997,\n            \"long\": -3.6066032798577\n        },\n        {\n            \"lat\": 40.538372436819,\n            \"long\": -3.6067528189939\n        },\n        {\n            \"lat\": 40.538324308944,\n            \"long\": -3.6069110880142\n        },\n        {\n            \"lat\": 40.538283095392,\n            \"long\": -3.6070393081357\n        },\n        {\n            \"lat\": 40.538248652931,\n            \"long\": -3.6071647552475\n        },\n        {\n            \"lat\": 40.538241660174,\n            \"long\": -3.6072096815926\n        },\n        {\n            \"lat\": 40.538261457557,\n            \"long\": -3.6072996031542\n        },\n        {\n            \"lat\": 40.538311576817,\n            \"long\": -3.6074138874996\n        },\n        {\n            \"lat\": 40.538318081126,\n            \"long\": -3.607461887842\n        },\n        {\n            \"lat\": 40.538297355787,\n            \"long\": -3.6075484914325\n        },\n        {\n            \"lat\": 40.538266529071,\n            \"long\": -3.6076201252869\n        },\n        {\n            \"lat\": 40.538205092294,\n            \"long\": -3.6077393059165\n        },\n        {\n            \"lat\": 40.53817773588,\n            \"long\": -3.6078019966789\n        },\n        {\n            \"lat\": 40.538174151181,\n            \"long\": -3.6078497876924\n        },\n        {\n            \"lat\": 40.538187379966,\n            \"long\": -3.6079038709694\n        },\n        {\n            \"lat\": 40.538219033243,\n            \"long\": -3.6079833786863\n        },\n        {\n            \"lat\": 40.53825578582,\n            \"long\": -3.6080525531196\n        },\n        {\n            \"lat\": 40.538268982815,\n            \"long\": -3.6081126584303\n        },\n        {\n            \"lat\": 40.538251664664,\n            \"long\": -3.6082022446342\n        },\n        {\n            \"lat\": 40.538145382523,\n            \"long\": -3.6084888142142\n        },\n        {\n            \"lat\": 40.53813810566,\n            \"long\": -3.6085875833681\n        },\n        {\n            \"lat\": 40.53814440484,\n            \"long\": -3.6086744309649\n        },\n        {\n            \"lat\": 40.538160662646,\n            \"long\": -3.6088032879981\n        },\n        {\n            \"lat\": 40.5381514228,\n            \"long\": -3.6089513978315\n        },\n        {\n            \"lat\": 40.538127241394,\n            \"long\": -3.6090439916499\n        },\n        {\n            \"lat\": 40.538061964497,\n            \"long\": -3.6092590187678\n        },\n        {\n            \"lat\": 40.53801391236,\n            \"long\": -3.6094022776926\n        },\n        {\n            \"lat\": 40.538006129528,\n            \"long\": -3.6095968066262\n        },\n        {\n            \"lat\": 40.538001695075,\n            \"long\": -3.6097884138194\n        },\n        {\n            \"lat\": 40.537995434303,\n            \"long\": -3.6099846096263\n        },\n        {\n            \"lat\": 40.537991772941,\n            \"long\": -3.6100979352986\n        },\n        {\n            \"lat\": 40.537980424923,\n            \"long\": -3.6107282729319\n        },\n        {\n            \"lat\": 40.537979163999,\n            \"long\": -3.6107963830696\n        },\n        {\n            \"lat\": 40.537977245911,\n            \"long\": -3.6109035842318\n        },\n        {\n            \"lat\": 40.538009109691,\n            \"long\": -3.6109769665505\n        },\n        {\n            \"lat\": 40.538022282974,\n            \"long\": -3.6110071971923\n        },\n        {\n            \"lat\": 40.538096048777,\n            \"long\": -3.6111126064141\n        },\n        {\n            \"lat\": 40.538146084918,\n            \"long\": -3.6112418890197\n        },\n        {\n            \"lat\": 40.538172444938,\n            \"long\": -3.6113678864412\n        },\n        {\n            \"lat\": 40.538164848784,\n            \"long\": -3.6115265202224\n        },\n        {\n            \"lat\": 40.538143597213,\n            \"long\": -3.61171195256\n        },\n        {\n            \"lat\": 40.538127715853,\n            \"long\": -3.6118359127099\n        },\n        {\n            \"lat\": 40.538120939596,\n            \"long\": -3.6118736374266\n        },\n        {\n            \"lat\": 40.53811686211,\n            \"long\": -3.6119120951852\n        },\n        {\n            \"lat\": 40.538115666688,\n            \"long\": -3.6119506972462\n        },\n        {\n            \"lat\": 40.538117263247,\n            \"long\": -3.6119894427948\n        },\n        {\n            \"lat\": 40.538121654914,\n            \"long\": -3.6120277414523\n        },\n        {\n            \"lat\": 40.538133340356,\n            \"long\": -3.6120836889661\n        },\n        {\n            \"lat\": 40.538151075757,\n            \"long\": -3.6121369874788\n        },\n        {\n            \"lat\": 40.538174327556,\n            \"long\": -3.6121863214302\n        },\n        {\n            \"lat\": 40.538374173109,\n            \"long\": -3.612520898012\n        },\n        {\n            \"lat\": 40.538383090163,\n            \"long\": -3.6125382193227\n        },\n        {\n            \"lat\": 40.538462714817,\n            \"long\": -3.6126937513479\n        },\n        {\n            \"lat\": 40.538486041968,\n            \"long\": -3.6127628062729\n        },\n        {\n            \"lat\": 40.538495845235,\n            \"long\": -3.6128168595459\n        },\n        {\n            \"lat\": 40.538482046976,\n            \"long\": -3.6128705796688\n        },\n        {\n            \"lat\": 40.538444471175,\n            \"long\": -3.6129571462909\n        },\n        {\n            \"lat\": 40.538399906673,\n            \"long\": -3.6130704539223\n        },\n        {\n            \"lat\": 40.538392895959,\n            \"long\": -3.6131183316541\n        },\n        {\n            \"lat\": 40.538399270687,\n            \"long\": -3.6131903022401\n        },\n        {\n            \"lat\": 40.538415894011,\n            \"long\": -3.6132323732383\n        },\n        {\n            \"lat\": 40.538442850873,\n            \"long\": -3.6132624940289\n        },\n        {\n            \"lat\": 40.538490002374,\n            \"long\": -3.6132898351218\n        },\n        {\n            \"lat\": 40.538557326907,\n            \"long\": -3.6133354387564\n        },\n        {\n            \"lat\": 40.538590775099,\n            \"long\": -3.6133985640713\n        },\n        {\n            \"lat\": 40.538597006705,\n            \"long\": -3.6134974565634\n        },\n        {\n            \"lat\": 40.538599306427,\n            \"long\": -3.6136920786924\n        },\n        {\n            \"lat\": 40.53858862801,\n            \"long\": -3.6138028613757\n        },\n        {\n            \"lat\": 40.53857309385,\n            \"long\": -3.6138610526843\n        },\n        {\n            \"lat\": 40.538607032844,\n            \"long\": -3.6138826174564\n        },\n        {\n            \"lat\": 40.538635529752,\n            \"long\": -3.6139110994862\n        },\n        {\n            \"lat\": 40.538638213463,\n            \"long\": -3.6139146664834\n        },\n        {\n            \"lat\": 40.538687773273,\n            \"long\": -3.6139804190054\n        },\n        {\n            \"lat\": 40.538751773601,\n            \"long\": -3.6140751158471\n        },\n        {\n            \"lat\": 40.538858585016,\n            \"long\": -3.6142170830615\n        },\n        {\n            \"lat\": 40.5389298258,\n            \"long\": -3.6143054699842\n        },\n        {\n            \"lat\": 40.538948740376,\n            \"long\": -3.6143401232399\n        },\n        {\n            \"lat\": 40.53895800616,\n            \"long\": -3.6143934636996\n        },\n        {\n            \"lat\": 40.538964706578,\n            \"long\": -3.6144718027052\n        },\n        {\n            \"lat\": 40.538985819758,\n            \"long\": -3.6145504033253\n        },\n        {\n            \"lat\": 40.539018007351,\n            \"long\": -3.6146132819585\n        },\n        {\n            \"lat\": 40.539021306556,\n            \"long\": -3.6146196886443\n        },\n        {\n            \"lat\": 40.539031019342,\n            \"long\": -3.6146228475954\n        },\n        {\n            \"lat\": 40.539088123073,\n            \"long\": -3.6146421448533\n        },\n        {\n            \"lat\": 40.539145390008,\n            \"long\": -3.614664631909\n        },\n        {\n            \"lat\": 40.539278498178,\n            \"long\": -3.6147912541624\n        },\n        {\n            \"lat\": 40.539721331623,\n            \"long\": -3.6151023240339\n        },\n        {\n            \"lat\": 40.539746891637,\n            \"long\": -3.6151578217115\n        },\n        {\n            \"lat\": 40.539750631803,\n            \"long\": -3.6151660038061\n        },\n        {\n            \"lat\": 40.53980944882,\n            \"long\": -3.6152357398531\n        },\n        {\n            \"lat\": 40.539872825143,\n            \"long\": -3.6163768952236\n        },\n        {\n            \"lat\": 40.539902471105,\n            \"long\": -3.6170018274338\n        },\n        {\n            \"lat\": 40.539897232891,\n            \"long\": -3.6174595968126\n        },\n        {\n            \"lat\": 40.539869562626,\n            \"long\": -3.6180012368267\n        },\n        {\n            \"lat\": 40.53986645194,\n            \"long\": -3.6185825310075\n        },\n        {\n            \"lat\": 40.539876348452,\n            \"long\": -3.6190727947281\n        },\n        {\n            \"lat\": 40.539895381646,\n            \"long\": -3.6197907997535\n        },\n        {\n            \"lat\": 40.539925047764,\n            \"long\": -3.6201383627074\n        },\n        {\n            \"lat\": 40.540005691266,\n            \"long\": -3.6206223129269\n        },\n        {\n            \"lat\": 40.540064845596,\n            \"long\": -3.6208466313897\n        },\n        {\n            \"lat\": 40.540121662921,\n            \"long\": -3.6211201586616\n        },\n        {\n            \"lat\": 40.540173144237,\n            \"long\": -3.6213974276467\n        },\n        {\n            \"lat\": 40.540186069948,\n            \"long\": -3.621690872662\n        },\n        {\n            \"lat\": 40.540207104893,\n            \"long\": -3.6221680047373\n        },\n        {\n            \"lat\": 40.540228865559,\n            \"long\": -3.6224766468358\n        },\n        {\n            \"lat\": 40.540236231196,\n            \"long\": -3.6225809850116\n        },\n        {\n            \"lat\": 40.540236821064,\n            \"long\": -3.6225885479809\n        },\n        {\n            \"lat\": 40.540237428112,\n            \"long\": -3.6225929227855\n        },\n        {\n            \"lat\": 40.540240256724,\n            \"long\": -3.6226029862896\n        },\n        {\n            \"lat\": 40.540279359335,\n            \"long\": -3.6227359590528\n        },\n        {\n            \"lat\": 40.540285182521,\n            \"long\": -3.622909127274\n        },\n        {\n            \"lat\": 40.540294590836,\n            \"long\": -3.6232209619009\n        },\n        {\n            \"lat\": 40.540289498952,\n            \"long\": -3.6233465583817\n        },\n        {\n            \"lat\": 40.540249959033,\n            \"long\": -3.6235619233393\n        },\n        {\n            \"lat\": 40.540207176255,\n            \"long\": -3.623777151685\n        },\n        {\n            \"lat\": 40.540124182814,\n            \"long\": -3.6241148159383\n        },\n        {\n            \"lat\": 40.540094274183,\n            \"long\": -3.6242647435122\n        },\n        {\n            \"lat\": 40.540056983385,\n            \"long\": -3.6246136949705\n        },\n        {\n            \"lat\": 40.540038088675,\n            \"long\": -3.6250257448749\n        },\n        {\n            \"lat\": 40.540043344925,\n            \"long\": -3.625203158476\n        },\n        {\n            \"lat\": 40.540052252876,\n            \"long\": -3.6253549814594\n        },\n        {\n            \"lat\": 40.540083792908,\n            \"long\": -3.6254864680681\n        },\n        {\n            \"lat\": 40.54009520216,\n            \"long\": -3.625692043492\n        },\n        {\n            \"lat\": 40.540394611026,\n            \"long\": -3.6262825331575\n        },\n        {\n            \"lat\": 40.540629492134,\n            \"long\": -3.6267440780807\n        },\n        {\n            \"lat\": 40.540835399111,\n            \"long\": -3.6271491465299\n        },\n        {\n            \"lat\": 40.54089405144,\n            \"long\": -3.6272644742958\n        },\n        {\n            \"lat\": 40.540936926163,\n            \"long\": -3.627348822475\n        },\n        {\n            \"lat\": 40.541283846365,\n            \"long\": -3.6280308281626\n        },\n        {\n            \"lat\": 40.541541228442,\n            \"long\": -3.6279465551451\n        },\n        {\n            \"lat\": 40.541761690424,\n            \"long\": -3.6279272398333\n        },\n        {\n            \"lat\": 40.541876156971,\n            \"long\": -3.6279173264625\n        },\n        {\n            \"lat\": 40.542365777557,\n            \"long\": -3.6278199870895\n        },\n        {\n            \"lat\": 40.542561870296,\n            \"long\": -3.6277907602476\n        },\n        {\n            \"lat\": 40.542671669766,\n            \"long\": -3.6277776145326\n        },\n        {\n            \"lat\": 40.542813822528,\n            \"long\": -3.6277789416959\n        },\n        {\n            \"lat\": 40.542949276594,\n            \"long\": -3.6278027616728\n        },\n        {\n            \"lat\": 40.543037420442,\n            \"long\": -3.627829092288\n        },\n        {\n            \"lat\": 40.543176968858,\n            \"long\": -3.6278952155262\n        },\n        {\n            \"lat\": 40.543239197569,\n            \"long\": -3.6279325230232\n        },\n        {\n            \"lat\": 40.543296631912,\n            \"long\": -3.6279734466484\n        },\n        {\n            \"lat\": 40.543338770553,\n            \"long\": -3.6280108028306\n        },\n        {\n            \"lat\": 40.543389965954,\n            \"long\": -3.6280559196067\n        },\n        {\n            \"lat\": 40.543446879856,\n            \"long\": -3.6281097105627\n        },\n        {\n            \"lat\": 40.543494798804,\n            \"long\": -3.6281609376509\n        },\n        {\n            \"lat\": 40.543533455738,\n            \"long\": -3.628207354605\n        },\n        {\n            \"lat\": 40.543560826926,\n            \"long\": -3.6282433921702\n        },\n        {\n            \"lat\": 40.543571740135,\n            \"long\": -3.6282576651647\n        },\n        {\n            \"lat\": 40.543603834392,\n            \"long\": -3.6283031942607\n        },\n        {\n            \"lat\": 40.543647540664,\n            \"long\": -3.6283670180878\n        },\n        {\n            \"lat\": 40.543700980641,\n            \"long\": -3.6284466392244\n        },\n        {\n            \"lat\": 40.543732923714,\n            \"long\": -3.6285033858432\n        },\n        {\n            \"lat\": 40.543764882176,\n            \"long\": -3.6285572984461\n        },\n        {\n            \"lat\": 40.543816114382,\n            \"long\": -3.6286452837881\n        },\n        {\n            \"lat\": 40.543860921512,\n            \"long\": -3.6287219904063\n        },\n        {\n            \"lat\": 40.543892818818,\n            \"long\": -3.6287871214285\n        },\n        {\n            \"lat\": 40.543927028605,\n            \"long\": -3.6288411734428\n        },\n        {\n            \"lat\": 40.543978856531,\n            \"long\": -3.6289355299783\n        },\n        {\n            \"lat\": 40.543990989046,\n            \"long\": -3.6289574906013\n        },\n        {\n            \"lat\": 40.544022824498,\n            \"long\": -3.6290339581815\n        },\n        {\n            \"lat\": 40.544063184514,\n            \"long\": -3.6291331794041\n        },\n        {\n            \"lat\": 40.544103559879,\n            \"long\": -3.6292295666615\n        },\n        {\n            \"lat\": 40.544154606958,\n            \"long\": -3.6293514438968\n        },\n        {\n            \"lat\": 40.544207679519,\n            \"long\": -3.6294818429768\n        },\n        {\n            \"lat\": 40.544230910302,\n            \"long\": -3.6295667331851\n        },\n        {\n            \"lat\": 40.544264691771,\n            \"long\": -3.6296827807437\n        },\n        {\n            \"lat\": 40.544292092601,\n            \"long\": -3.629795934417\n        },\n        {\n            \"lat\": 40.544332144207,\n            \"long\": -3.6299516021703\n        },\n        {\n            \"lat\": 40.544483775124,\n            \"long\": -3.630577017045\n        },\n        {\n            \"lat\": 40.544607690723,\n            \"long\": -3.6311134979808\n        },\n        {\n            \"lat\": 40.544616668359,\n            \"long\": -3.6311521988977\n        },\n        {\n            \"lat\": 40.544703001793,\n            \"long\": -3.6315261741593\n        },\n        {\n            \"lat\": 40.5448870815,\n            \"long\": -3.6322292646078\n        },\n        {\n            \"lat\": 40.544929369379,\n            \"long\": -3.632370784902\n        },\n        {\n            \"lat\": 40.544980167871,\n            \"long\": -3.6325210063245\n        },\n        {\n            \"lat\": 40.545043815463,\n            \"long\": -3.6326937750207\n        },\n        {\n            \"lat\": 40.545103277765,\n            \"long\": -3.6328411261246\n        },\n        {\n            \"lat\": 40.545162832392,\n            \"long\": -3.632971590819\n        },\n        {\n            \"lat\": 40.545240273603,\n            \"long\": -3.6331259612264\n        },\n        {\n            \"lat\": 40.545314869458,\n            \"long\": -3.6332734556829\n        },\n        {\n            \"lat\": 40.545402225972,\n            \"long\": -3.6334267392499\n        },\n        {\n            \"lat\": 40.545487634031,\n            \"long\": -3.6335574486623\n        },\n        {\n            \"lat\": 40.545566633614,\n            \"long\": -3.6336739265611\n        },\n        {\n            \"lat\": 40.545596564328,\n            \"long\": -3.6337193211108\n        },\n        {\n            \"lat\": 40.545641430288,\n            \"long\": -3.633784684721\n        },\n        {\n            \"lat\": 40.545684180774,\n            \"long\": -3.6338415374019\n        },\n        {\n            \"lat\": 40.545737589026,\n            \"long\": -3.633909827825\n        },\n        {\n            \"lat\": 40.545771752944,\n            \"long\": -3.6339553806067\n        },\n        {\n            \"lat\": 40.545810362711,\n            \"long\": -3.6339951886632\n        },\n        {\n            \"lat\": 40.545878759222,\n            \"long\": -3.6340721235947\n        },\n        {\n            \"lat\": 40.545933713676,\n            \"long\": -3.6341212974266\n        },\n        {\n            \"lat\": 40.546003564989,\n            \"long\": -3.6341974196786\n        },\n        {\n            \"lat\": 40.546095053877,\n            \"long\": -3.6342869730034\n        },\n        {\n            \"lat\": 40.546161105381,\n            \"long\": -3.6343495967669\n        },\n        {\n            \"lat\": 40.546219207462,\n            \"long\": -3.6343997455074\n        },\n        {\n            \"lat\": 40.546286892086,\n            \"long\": -3.6344602591704\n        },\n        {\n            \"lat\": 40.546348661617,\n            \"long\": -3.6345151665836\n        },\n        {\n            \"lat\": 40.546752435891,\n            \"long\": -3.6348109024049\n        },\n        {\n            \"lat\": 40.546964845242,\n            \"long\": -3.6350111942823\n        },\n        {\n            \"lat\": 40.547130294203,\n            \"long\": -3.6351830544849\n        },\n        {\n            \"lat\": 40.547272492885,\n            \"long\": -3.6353545777155\n        },\n        {\n            \"lat\": 40.547356202886,\n            \"long\": -3.6354660271267\n        },\n        {\n            \"lat\": 40.547456858511,\n            \"long\": -3.6356085788761\n        },\n        {\n            \"lat\": 40.547585500538,\n            \"long\": -3.6358222432501\n        },\n        {\n            \"lat\": 40.547679850311,\n            \"long\": -3.6360137474946\n        },\n        {\n            \"lat\": 40.547798171574,\n            \"long\": -3.6362855504491\n        },\n        {\n            \"lat\": 40.547877954905,\n            \"long\": -3.6365045533149\n        },\n        {\n            \"lat\": 40.547896438257,\n            \"long\": -3.6365672029296\n        },\n        {\n            \"lat\": 40.547910554966,\n            \"long\": -3.6366211899653\n        },\n        {\n            \"lat\": 40.547916694902,\n            \"long\": -3.636651363481\n        },\n        {\n            \"lat\": 40.547920380812,\n            \"long\": -3.636669113313\n        },\n        {\n            \"lat\": 40.547933539469,\n            \"long\": -3.6367007705034\n        },\n        {\n            \"lat\": 40.547940888873,\n            \"long\": -3.6367239876183\n        },\n        {\n            \"lat\": 40.547999069287,\n            \"long\": -3.63675973234\n        },\n        {\n            \"lat\": 40.548033935923,\n            \"long\": -3.6367756517423\n        },\n        {\n            \"lat\": 40.548036633883,\n            \"long\": -3.6367765039948\n        },\n        {\n            \"lat\": 40.548082865407,\n            \"long\": -3.636789932868\n        },\n        {\n            \"lat\": 40.54813230545,\n            \"long\": -3.6368096514458\n        },\n        {\n            \"lat\": 40.548196729678,\n            \"long\": -3.6368403653823\n        },\n        {\n            \"lat\": 40.548447557072,\n            \"long\": -3.6369673373938\n        },\n        {\n            \"lat\": 40.549040639659,\n            \"long\": -3.6372380946138\n        },\n        {\n            \"lat\": 40.549308681803,\n            \"long\": -3.6373145672196\n        },\n        {\n            \"lat\": 40.549502322256,\n            \"long\": -3.6373726196715\n        },\n        {\n            \"lat\": 40.549578236268,\n            \"long\": -3.6374434922636\n        },\n        {\n            \"lat\": 40.549679250699,\n            \"long\": -3.6375532226017\n        },\n        {\n            \"lat\": 40.549875329203,\n            \"long\": -3.6377554910829\n        },\n        {\n            \"lat\": 40.549944929928,\n            \"long\": -3.6378276037382\n        },\n        {\n            \"lat\": 40.549945377087,\n            \"long\": -3.6378281984962\n        },\n        {\n            \"lat\": 40.550241158588,\n            \"long\": -3.6381344130232\n        },\n        {\n            \"lat\": 40.550614800471,\n            \"long\": -3.6385176650695\n        },\n        {\n            \"lat\": 40.551005875508,\n            \"long\": -3.6389249324753\n        },\n        {\n            \"lat\": 40.551120795422,\n            \"long\": -3.6390433031541\n        },\n        {\n            \"lat\": 40.551123572342,\n            \"long\": -3.6390461640762\n        },\n        {\n            \"lat\": 40.551360686072,\n            \"long\": -3.6392902983943\n        },\n        {\n            \"lat\": 40.551698588517,\n            \"long\": -3.639635653654\n        },\n        {\n            \"lat\": 40.551755118177,\n            \"long\": -3.6396927644543\n        },\n        {\n            \"lat\": 40.551825868944,\n            \"long\": -3.6397196573622\n        },\n        {\n            \"lat\": 40.552956859781,\n            \"long\": -3.6399097096085\n        },\n        {\n            \"lat\": 40.553090769925,\n            \"long\": -3.6399677946741\n        },\n        {\n            \"lat\": 40.553358624573,\n            \"long\": -3.6401427841467\n        },\n        {\n            \"lat\": 40.553417150422,\n            \"long\": -3.6401810183491\n        },\n        {\n            \"lat\": 40.553564801973,\n            \"long\": -3.6402613099038\n        },\n        {\n            \"lat\": 40.553569112903,\n            \"long\": -3.6402637131561\n        },\n        {\n            \"lat\": 40.553775064208,\n            \"long\": -3.6403758713919\n        },\n        {\n            \"lat\": 40.553862939594,\n            \"long\": -3.6404175746453\n        },\n        {\n            \"lat\": 40.554076704403,\n            \"long\": -3.6406478005196\n        },\n        {\n            \"lat\": 40.554085134288,\n            \"long\": -3.6406547312675\n        },\n        {\n            \"lat\": 40.554102747831,\n            \"long\": -3.6406788755547\n        },\n        {\n            \"lat\": 40.554325466048,\n            \"long\": -3.6409839525697\n        },\n        {\n            \"lat\": 40.554467111317,\n            \"long\": -3.6413201362476\n        },\n        {\n            \"lat\": 40.554507838418,\n            \"long\": -3.6414486753591\n        },\n        {\n            \"lat\": 40.554553154625,\n            \"long\": -3.6415943845477\n        },\n        {\n            \"lat\": 40.554580097102,\n            \"long\": -3.6416581855554\n        },\n        {\n            \"lat\": 40.55464981083,\n            \"long\": -3.6418230258198\n        },\n        {\n            \"lat\": 40.554655232729,\n            \"long\": -3.6419173304335\n        },\n        {\n            \"lat\": 40.554651492752,\n            \"long\": -3.6419905237338\n        },\n        {\n            \"lat\": 40.554648054485,\n            \"long\": -3.6420580505648\n        },\n        {\n            \"lat\": 40.554637081395,\n            \"long\": -3.6422007422989\n        },\n        {\n            \"lat\": 40.554600203665,\n            \"long\": -3.6423684622228\n        },\n        {\n            \"lat\": 40.554506973397,\n            \"long\": -3.6426418132868\n        },\n        {\n            \"lat\": 40.554510171736,\n            \"long\": -3.6426498754196\n        },\n        {\n            \"lat\": 40.554588256677,\n            \"long\": -3.6428481039563\n        },\n        {\n            \"lat\": 40.554611620084,\n            \"long\": -3.6429073830354\n        },\n        {\n            \"lat\": 40.55474984369,\n            \"long\": -3.6432584332993\n        },\n        {\n            \"lat\": 40.554764235358,\n            \"long\": -3.6432948312694\n        },\n        {\n            \"lat\": 40.554823575304,\n            \"long\": -3.6434455190815\n        },\n        {\n            \"lat\": 40.555108103191,\n            \"long\": -3.6441678882855\n        },\n        {\n            \"lat\": 40.555108812665,\n            \"long\": -3.6441699029912\n        },\n        {\n            \"lat\": 40.555201270955,\n            \"long\": -3.644423431293\n        },\n        {\n            \"lat\": 40.555146870274,\n            \"long\": -3.6444857453825\n        },\n        {\n            \"lat\": 40.555097338968,\n            \"long\": -3.6445795238851\n        },\n        {\n            \"lat\": 40.555069032146,\n            \"long\": -3.6446475211775\n        },\n        {\n            \"lat\": 40.554998080795,\n            \"long\": -3.6448182210614\n        },\n        {\n            \"lat\": 40.554912111387,\n            \"long\": -3.6450809036461\n        },\n        {\n            \"lat\": 40.554884350331,\n            \"long\": -3.6452124380718\n        },\n        {\n            \"lat\": 40.555108046894,\n            \"long\": -3.6454047459815\n        },\n        {\n            \"lat\": 40.555276083984,\n            \"long\": -3.6455620317226\n        },\n        {\n            \"lat\": 40.555279032985,\n            \"long\": -3.6455663120944\n        },\n        {\n            \"lat\": 40.555296463338,\n            \"long\": -3.645590810676\n        },\n        {\n            \"lat\": 40.555305654832,\n            \"long\": -3.6456064898081\n        },\n        {\n            \"lat\": 40.555321594996,\n            \"long\": -3.6456397144191\n        },\n        {\n            \"lat\": 40.555328252921,\n            \"long\": -3.6456573771379\n        },\n        {\n            \"lat\": 40.555334188194,\n            \"long\": -3.6456753872555\n        },\n        {\n            \"lat\": 40.555343167475,\n            \"long\": -3.645712915186\n        },\n        {\n            \"lat\": 40.555348536797,\n            \"long\": -3.6457515895682\n        },\n        {\n            \"lat\": 40.555338191945,\n            \"long\": -3.64579719972\n        },\n        {\n            \"lat\": 40.555403642758,\n            \"long\": -3.6458210967905\n        },\n        {\n            \"lat\": 40.555409845984,\n            \"long\": -3.6458234005365\n        },\n        {\n            \"lat\": 40.555402902204,\n            \"long\": -3.6458568778007\n        },\n        {\n            \"lat\": 40.555401975618,\n            \"long\": -3.6458614752892\n        },\n        {\n            \"lat\": 40.55538721238,\n            \"long\": -3.6458916883609\n        },\n        {\n            \"lat\": 40.555372404893,\n            \"long\": -3.6459298145366\n        },\n        {\n            \"lat\": 40.555348172565,\n            \"long\": -3.6459778896783\n        },\n        {\n            \"lat\": 40.555274662475,\n            \"long\": -3.6461063981297\n        },\n        {\n            \"lat\": 40.555185124234,\n            \"long\": -3.6462979422412\n        },\n        {\n            \"lat\": 40.555084183969,\n            \"long\": -3.6465790114162\n        },\n        {\n            \"lat\": 40.554996207265,\n            \"long\": -3.6468133258932\n        },\n        {\n            \"lat\": 40.554951304888,\n            \"long\": -3.6470309282149\n        },\n        {\n            \"lat\": 40.554898633334,\n            \"long\": -3.6472506995513\n        },\n        {\n            \"lat\": 40.554871441848,\n            \"long\": -3.6474891414199\n        },\n        {\n            \"lat\": 40.554836308046,\n            \"long\": -3.6477943577333\n        },\n        {\n            \"lat\": 40.554790382744,\n            \"long\": -3.6480478431123\n        },\n        {\n            \"lat\": 40.554790565402,\n            \"long\": -3.6481598146161\n        },\n        {\n            \"lat\": 40.554793827828,\n            \"long\": -3.6484935111996\n        },\n        {\n            \"lat\": 40.554779711155,\n            \"long\": -3.6487293618173\n        },\n        {\n            \"lat\": 40.554774461107,\n            \"long\": -3.6490545902476\n        },\n        {\n            \"lat\": 40.554771994762,\n            \"long\": -3.6493331796629\n        },\n        {\n            \"lat\": 40.55479350694,\n            \"long\": -3.6496250048893\n        },\n        {\n            \"lat\": 40.554808320851,\n            \"long\": -3.6498903085395\n        },\n        {\n            \"lat\": 40.554809705606,\n            \"long\": -3.6500925289362\n        },\n        {\n            \"lat\": 40.554804964332,\n            \"long\": -3.6503266983021\n        },\n        {\n            \"lat\": 40.554795356496,\n            \"long\": -3.6505131034659\n        },\n        {\n            \"lat\": 40.554795521466,\n            \"long\": -3.6506277913704\n        },\n        {\n            \"lat\": 40.554809566969,\n            \"long\": -3.6508851625139\n        },\n        {\n            \"lat\": 40.554823315359,\n            \"long\": -3.6510352973725\n        },\n        {\n            \"lat\": 40.55487440104,\n            \"long\": -3.6513875287802\n        },\n        {\n            \"lat\": 40.554952768881,\n            \"long\": -3.6517725060173\n        },\n        {\n            \"lat\": 40.554978809344,\n            \"long\": -3.6518993744521\n        },\n        {\n            \"lat\": 40.554983987116,\n            \"long\": -3.6520354777335\n        },\n        {\n            \"lat\": 40.555010548521,\n            \"long\": -3.6523412909331\n        },\n        {\n            \"lat\": 40.555057355911,\n            \"long\": -3.6526990340198\n        },\n        {\n            \"lat\": 40.555099131195,\n            \"long\": -3.6528949151751\n        },\n        {\n            \"lat\": 40.55515319723,\n            \"long\": -3.6531795001227\n        },\n        {\n            \"lat\": 40.555162313497,\n            \"long\": -3.6532401684527\n        },\n        {\n            \"lat\": 40.555165253817,\n            \"long\": -3.653325592138\n        },\n        {\n            \"lat\": 40.555133056671,\n            \"long\": -3.6537141042837\n        },\n        {\n            \"lat\": 40.555118279657,\n            \"long\": -3.6540488083564\n        },\n        {\n            \"lat\": 40.555135670658,\n            \"long\": -3.6541435854053\n        },\n        {\n            \"lat\": 40.557248817029,\n            \"long\": -3.6555651012117\n        },\n        {\n            \"lat\": 40.558484425425,\n            \"long\": -3.656396290849\n        },\n        {\n            \"lat\": 40.559260622434,\n            \"long\": -3.6569185184047\n        },\n        {\n            \"lat\": 40.559687718954,\n            \"long\": -3.6572058155574\n        },\n        {\n            \"lat\": 40.559689603985,\n            \"long\": -3.6572070151937\n        },\n        {\n            \"lat\": 40.561290587044,\n            \"long\": -3.6582615524132\n        },\n        {\n            \"lat\": 40.568777936643,\n            \"long\": -3.6631938967973\n        },\n        {\n            \"lat\": 40.569685734472,\n            \"long\": -3.6637920113812\n        },\n        {\n            \"lat\": 40.569734378256,\n            \"long\": -3.6638240348243\n        },\n        {\n            \"lat\": 40.577627388377,\n            \"long\": -3.6680741466209\n        },\n        {\n            \"lat\": 40.5824967327,\n            \"long\": -3.6706957308191\n        },\n        {\n            \"lat\": 40.586150534471,\n            \"long\": -3.6726560773814\n        },\n        {\n            \"lat\": 40.588856338396,\n            \"long\": -3.6741185928176\n        },\n        {\n            \"lat\": 40.588569380402,\n            \"long\": -3.6747405869599\n        },\n        {\n            \"lat\": 40.58830226483,\n            \"long\": -3.6752810133152\n        },\n        {\n            \"lat\": 40.58805680903,\n            \"long\": -3.6757851389054\n        },\n        {\n            \"lat\": 40.587788265207,\n            \"long\": -3.6763070963433\n        },\n        {\n            \"lat\": 40.587493954198,\n            \"long\": -3.6768751238828\n        },\n        {\n            \"lat\": 40.58725488043,\n            \"long\": -3.677365121758\n        },\n        {\n            \"lat\": 40.587039086985,\n            \"long\": -3.6778007575168\n        },\n        {\n            \"lat\": 40.586881617828,\n            \"long\": -3.6781069832154\n        },\n        {\n            \"lat\": 40.586809992262,\n            \"long\": -3.6782460522098\n        },\n        {\n            \"lat\": 40.586705503061,\n            \"long\": -3.6784601797404\n        },\n        {\n            \"lat\": 40.586580812264,\n            \"long\": -3.6787224328341\n        },\n        {\n            \"lat\": 40.586562582604,\n            \"long\": -3.6787585259049\n        },\n        {\n            \"lat\": 40.586350682272,\n            \"long\": -3.6792052997801\n        },\n        {\n            \"lat\": 40.586209742418,\n            \"long\": -3.6795035446638\n        },\n        {\n            \"lat\": 40.586130522,\n            \"long\": -3.6796776175444\n        },\n        {\n            \"lat\": 40.586035830715,\n            \"long\": -3.6798796687686\n        },\n        {\n            \"lat\": 40.585943974108,\n            \"long\": -3.6800730038374\n        },\n        {\n            \"lat\": 40.585849946155,\n            \"long\": -3.6802678525355\n        },\n        {\n            \"lat\": 40.585748204072,\n            \"long\": -3.6804875555032\n        },\n        {\n            \"lat\": 40.585606187854,\n            \"long\": -3.6807997276524\n        },\n        {\n            \"lat\": 40.585381888218,\n            \"long\": -3.6812548708158\n        },\n        {\n            \"lat\": 40.585174942497,\n            \"long\": -3.6816863060278\n        },\n        {\n            \"lat\": 40.58496399254,\n            \"long\": -3.6821380340095\n        },\n        {\n            \"lat\": 40.584703501719,\n            \"long\": -3.6825577057026\n        },\n        {\n            \"lat\": 40.584216680049,\n            \"long\": -3.6833645258597\n        },\n        {\n            \"lat\": 40.583875545089,\n            \"long\": -3.6839077920446\n        },\n        {\n            \"lat\": 40.583651708928,\n            \"long\": -3.6842537360076\n        },\n        {\n            \"lat\": 40.583409191137,\n            \"long\": -3.684770809898\n        },\n        {\n            \"lat\": 40.583286897257,\n            \"long\": -3.6850062402149\n        },\n        {\n            \"lat\": 40.58324650131,\n            \"long\": -3.6851035476164\n        },\n        {\n            \"lat\": 40.58315656073,\n            \"long\": -3.6853217009525\n        },\n        {\n            \"lat\": 40.583039513176,\n            \"long\": -3.6855700625061\n        },\n        {\n            \"lat\": 40.582932380997,\n            \"long\": -3.6858006821745\n        },\n        {\n            \"lat\": 40.582742972718,\n            \"long\": -3.6865814313627\n        },\n        {\n            \"lat\": 40.582588395043,\n            \"long\": -3.6872609266596\n        },\n        {\n            \"lat\": 40.582616470462,\n            \"long\": -3.6885687644298\n        },\n        {\n            \"lat\": 40.582225508503,\n            \"long\": -3.6891697325843\n        },\n        {\n            \"lat\": 40.58215814835,\n            \"long\": -3.6892711310517\n        },\n        {\n            \"lat\": 40.582108220186,\n            \"long\": -3.689334779106\n        },\n        {\n            \"lat\": 40.582046443312,\n            \"long\": -3.6894063284338\n        },\n        {\n            \"lat\": 40.581801435538,\n            \"long\": -3.6897044091538\n        },\n        {\n            \"lat\": 40.581586970091,\n            \"long\": -3.6899551836744\n        },\n        {\n            \"lat\": 40.581477289059,\n            \"long\": -3.6900832037378\n        },\n        {\n            \"lat\": 40.581312643067,\n            \"long\": -3.6902734003238\n        },\n        {\n            \"lat\": 40.580976681422,\n            \"long\": -3.6906707367824\n        },\n        {\n            \"lat\": 40.580803479812,\n            \"long\": -3.6910711621899\n        },\n        {\n            \"lat\": 40.580701160676,\n            \"long\": -3.6912935321565\n        },\n        {\n            \"lat\": 40.580625658387,\n            \"long\": -3.6914605375615\n        },\n        {\n            \"lat\": 40.580546735799,\n            \"long\": -3.6916420406344\n        },\n        {\n            \"lat\": 40.580483479042,\n            \"long\": -3.6917949926334\n        },\n        {\n            \"lat\": 40.580323169631,\n            \"long\": -3.6923600186349\n        },\n        {\n            \"lat\": 40.580195304551,\n            \"long\": -3.6928158342448\n        },\n        {\n            \"lat\": 40.580031089884,\n            \"long\": -3.6933687631633\n        },\n        {\n            \"lat\": 40.579892568905,\n            \"long\": -3.6942644877135\n        },\n        {\n            \"lat\": 40.579672300747,\n            \"long\": -3.6958071832013\n        },\n        {\n            \"lat\": 40.579346755296,\n            \"long\": -3.6969390389392\n        },\n        {\n            \"lat\": 40.579313148116,\n            \"long\": -3.6970592077274\n        },\n        {\n            \"lat\": 40.578973567159,\n            \"long\": -3.6982739557573\n        },\n        {\n            \"lat\": 40.578614420475,\n            \"long\": -3.6994610761276\n        },\n        {\n            \"lat\": 40.57863454747,\n            \"long\": -3.701564402238\n        },\n        {\n            \"lat\": 40.578309973717,\n            \"long\": -3.7015637289902\n        },\n        {\n            \"lat\": 40.578309726686,\n            \"long\": -3.7015154019556\n        },\n        {\n            \"lat\": 40.578308811816,\n            \"long\": -3.7012951557695\n        },\n        {\n            \"lat\": 40.578303330855,\n            \"long\": -3.700430102685\n        },\n        {\n            \"lat\": 40.578301469975,\n            \"long\": -3.7002912656816\n        },\n        {\n            \"lat\": 40.578294692643,\n            \"long\": -3.7002649651144\n        },\n        {\n            \"lat\": 40.578277077097,\n            \"long\": -3.7002135031811\n        },\n        {\n            \"lat\": 40.578244649086,\n            \"long\": -3.7001237235554\n        },\n        {\n            \"lat\": 40.578208095836,\n            \"long\": -3.7000308290494\n        },\n        {\n            \"lat\": 40.578187390183,\n            \"long\": -3.6999838248298\n        },\n        {\n            \"lat\": 40.578144455068,\n            \"long\": -3.699918275329\n        },\n        {\n            \"lat\": 40.578102133418,\n            \"long\": -3.6998406807665\n        },\n        {\n            \"lat\": 40.578041873271,\n            \"long\": -3.6997500207919\n        },\n        {\n            \"lat\": 40.577995078499,\n            \"long\": -3.6996836043059\n        },\n        {\n            \"lat\": 40.577978553537,\n            \"long\": -3.699660274322\n        },\n        {\n            \"lat\": 40.577915444239,\n            \"long\": -3.6995640318532\n        },\n        {\n            \"lat\": 40.577911606475,\n            \"long\": -3.6995580842755\n        },\n        {\n            \"lat\": 40.577843324541,\n            \"long\": -3.6994531630371\n        },\n        {\n            \"lat\": 40.577839040652,\n            \"long\": -3.6994465019145\n        },\n        {\n            \"lat\": 40.577717593048,\n            \"long\": -3.6992843144654\n        },\n        {\n            \"lat\": 40.577695162621,\n            \"long\": -3.6992543066965\n        },\n        {\n            \"lat\": 40.577618654241,\n            \"long\": -3.6991540383403\n        },\n        {\n            \"lat\": 40.577561963221,\n            \"long\": -3.6990838569818\n        },\n        {\n            \"lat\": 40.577515954776,\n            \"long\": -3.6990348178655\n        },\n        {\n            \"lat\": 40.577472588726,\n            \"long\": -3.6989957310228\n        },\n        {\n            \"lat\": 40.577423332274,\n            \"long\": -3.6989474852874\n        },\n        {\n            \"lat\": 40.577399223805,\n            \"long\": -3.6989267942376\n        },\n        {\n            \"lat\": 40.577388916523,\n            \"long\": -3.6989180619386\n        },\n        {\n            \"lat\": 40.577350133192,\n            \"long\": -3.6988809133524\n        },\n        {\n            \"lat\": 40.577305534524,\n            \"long\": -3.6988370878428\n        },\n        {\n            \"lat\": 40.577265888222,\n            \"long\": -3.6987936683743\n        },\n        {\n            \"lat\": 40.577229736531,\n            \"long\": -3.6987533572381\n        },\n        {\n            \"lat\": 40.577224098508,\n            \"long\": -3.6987471547356\n        },\n        {\n            \"lat\": 40.577188822569,\n            \"long\": -3.6986961010437\n        },\n        {\n            \"lat\": 40.577140212176,\n            \"long\": -3.6986154891765\n        },\n        {\n            \"lat\": 40.577107856677,\n            \"long\": -3.6985582040137\n        },\n        {\n            \"lat\": 40.577098943467,\n            \"long\": -3.6985423972752\n        },\n        {\n            \"lat\": 40.577059764535,\n            \"long\": -3.6984812603999\n        },\n        {\n            \"lat\": 40.577014081705,\n            \"long\": -3.6984081227653\n        },\n        {\n            \"lat\": 40.577012922778,\n            \"long\": -3.698406102156\n        },\n        {\n            \"lat\": 40.576995009801,\n            \"long\": -3.6983738971164\n        },\n        {\n            \"lat\": 40.576987707333,\n            \"long\": -3.6983598794342\n        },\n        {\n            \"lat\": 40.57693391896,\n            \"long\": -3.6982565293598\n        },\n        {\n            \"lat\": 40.576924912769,\n            \"long\": -3.6982411943369\n        },\n        {\n            \"lat\": 40.57690342216,\n            \"long\": -3.698204698781\n        },\n        {\n            \"lat\": 40.576873945559,\n            \"long\": -3.6981629334356\n        },\n        {\n            \"lat\": 40.57684082788,\n            \"long\": -3.69812738042\n        },\n        {\n            \"lat\": 40.57678353659,\n            \"long\": -3.6980818878648\n        },\n        {\n            \"lat\": 40.576720308415,\n            \"long\": -3.6980349158829\n        },\n        {\n            \"lat\": 40.576656278045,\n            \"long\": -3.6979865178555\n        },\n        {\n            \"lat\": 40.576517047324,\n            \"long\": -3.6978761369586\n        },\n        {\n            \"lat\": 40.576478486072,\n            \"long\": -3.6978469077858\n        },\n        {\n            \"lat\": 40.576443883438,\n            \"long\": -3.6978185468242\n        },\n        {\n            \"lat\": 40.576304496199,\n            \"long\": -3.6976430648027\n        },\n        {\n            \"lat\": 40.576195830733,\n            \"long\": -3.6974970853599\n        },\n        {\n            \"lat\": 40.576132089925,\n            \"long\": -3.6974156095492\n        },\n        {\n            \"lat\": 40.576083782106,\n            \"long\": -3.6973593416792\n        },\n        {\n            \"lat\": 40.576040566877,\n            \"long\": -3.6973100975389\n        },\n        {\n            \"lat\": 40.57600732889,\n            \"long\": -3.6972795063849\n        },\n        {\n            \"lat\": 40.575977269198,\n            \"long\": -3.6972745865061\n        },\n        {\n            \"lat\": 40.575941603007,\n            \"long\": -3.697273152882\n        },\n        {\n            \"lat\": 40.575928453123,\n            \"long\": -3.6972726619144\n        },\n        {\n            \"lat\": 40.575903220795,\n            \"long\": -3.6972739358832\n        },\n        {\n            \"lat\": 40.575861587062,\n            \"long\": -3.6972761029075\n        },\n        {\n            \"lat\": 40.575852488745,\n            \"long\": -3.6972760084487\n        },\n        {\n            \"lat\": 40.575788978549,\n            \"long\": -3.6972757035313\n        },\n        {\n            \"lat\": 40.575755290603,\n            \"long\": -3.6972748811912\n        },\n        {\n            \"lat\": 40.575721333123,\n            \"long\": -3.6972739379057\n        },\n        {\n            \"lat\": 40.575695576701,\n            \"long\": -3.6972724890235\n        },\n        {\n            \"lat\": 40.575650997989,\n            \"long\": -3.6972700295106\n        },\n        {\n            \"lat\": 40.575527193941,\n            \"long\": -3.6972589379314\n        },\n        {\n            \"lat\": 40.575521613827,\n            \"long\": -3.697258052966\n        },\n        {\n            \"lat\": 40.575472561016,\n            \"long\": -3.6972505730034\n        },\n        {\n            \"lat\": 40.575411548643,\n            \"long\": -3.6972394244673\n        },\n        {\n            \"lat\": 40.575349631617,\n            \"long\": -3.6972303932161\n        },\n        {\n            \"lat\": 40.575307723118,\n            \"long\": -3.6972183797099\n        },\n        {\n            \"lat\": 40.575292614238,\n            \"long\": -3.6972140877062\n        },\n        {\n            \"lat\": 40.575185317579,\n            \"long\": -3.6971696138463\n        },\n        {\n            \"lat\": 40.575161507071,\n            \"long\": -3.697159206032\n        },\n        {\n            \"lat\": 40.575132215797,\n            \"long\": -3.6971463783931\n        },\n        {\n            \"lat\": 40.575027020944,\n            \"long\": -3.6970969643945\n        },\n        {\n            \"lat\": 40.574967903587,\n            \"long\": -3.6970703585101\n        },\n        {\n            \"lat\": 40.574941491373,\n            \"long\": -3.6970581515622\n        },\n        {\n            \"lat\": 40.574906544144,\n            \"long\": -3.6970420753502\n        },\n        {\n            \"lat\": 40.574856449266,\n            \"long\": -3.6970132002636\n        },\n        {\n            \"lat\": 40.574829276913,\n            \"long\": -3.6969925970625\n        },\n        {\n            \"lat\": 40.574809906796,\n            \"long\": -3.6969778640242\n        },\n        {\n            \"lat\": 40.574773135976,\n            \"long\": -3.6969355404414\n        },\n        {\n            \"lat\": 40.574732959545,\n            \"long\": -3.6968753414588\n        },\n        {\n            \"lat\": 40.57457510185,\n            \"long\": -3.6966701377811\n        },\n        {\n            \"lat\": 40.574559638005,\n            \"long\": -3.6966500106878\n        },\n        {\n            \"lat\": 40.574420498851,\n            \"long\": -3.6964629603413\n        },\n        {\n            \"lat\": 40.574358748268,\n            \"long\": -3.6963799842419\n        },\n        {\n            \"lat\": 40.5742883099,\n            \"long\": -3.6962736317241\n        },\n        {\n            \"lat\": 40.574265455302,\n            \"long\": -3.6962391325766\n        },\n        {\n            \"lat\": 40.574201967002,\n            \"long\": -3.6961156031463\n        },\n        {\n            \"lat\": 40.574194496187,\n            \"long\": -3.6960995760781\n        },\n        {\n            \"lat\": 40.574116589071,\n            \"long\": -3.6959319474348\n        },\n        {\n            \"lat\": 40.574021757488,\n            \"long\": -3.6957188942601\n        },\n        {\n            \"lat\": 40.573955680936,\n            \"long\": -3.6955613131884\n        },\n        {\n            \"lat\": 40.573859051029,\n            \"long\": -3.6953311114215\n        },\n        {\n            \"lat\": 40.573759833076,\n            \"long\": -3.6950967602832\n        },\n        {\n            \"lat\": 40.573707762679,\n            \"long\": -3.6949768953441\n        },\n        {\n            \"lat\": 40.573691945486,\n            \"long\": -3.6949405794361\n        },\n        {\n            \"lat\": 40.573683414836,\n            \"long\": -3.6949209973177\n        },\n        {\n            \"lat\": 40.573636192257,\n            \"long\": -3.6948788037373\n        },\n        {\n            \"lat\": 40.573568987867,\n            \"long\": -3.6948186818501\n        },\n        {\n            \"lat\": 40.57352355766,\n            \"long\": -3.6947780428307\n        },\n        {\n            \"lat\": 40.573520689944,\n            \"long\": -3.6947755321369\n        },\n        {\n            \"lat\": 40.573482330052,\n            \"long\": -3.6947426456818\n        },\n        {\n            \"lat\": 40.573443701324,\n            \"long\": -3.6947095201956\n        },\n        {\n            \"lat\": 40.573398798784,\n            \"long\": -3.6946710133778\n        },\n        {\n            \"lat\": 40.573367519854,\n            \"long\": -3.6946441074745\n        },\n        {\n            \"lat\": 40.573336867942,\n            \"long\": -3.6946177988006\n        },\n        {\n            \"lat\": 40.573320826297,\n            \"long\": -3.694603810064\n        },\n        {\n            \"lat\": 40.573274494476,\n            \"long\": -3.6945632801627\n        },\n        {\n            \"lat\": 40.573227983895,\n            \"long\": -3.6945225121819\n        },\n        {\n            \"lat\": 40.57319204763,\n            \"long\": -3.6944910688006\n        },\n        {\n            \"lat\": 40.573183893452,\n            \"long\": -3.6944837777238\n        },\n        {\n            \"lat\": 40.573151812966,\n            \"long\": -3.6944553278402\n        },\n        {\n            \"lat\": 40.573091505634,\n            \"long\": -3.6944017760141\n        },\n        {\n            \"lat\": 40.573041951362,\n            \"long\": -3.6943577869199\n        },\n        {\n            \"lat\": 40.573008079136,\n            \"long\": -3.6943276646286\n        },\n        {\n            \"lat\": 40.572964794395,\n            \"long\": -3.6942897657584\n        },\n        {\n            \"lat\": 40.572887187612,\n            \"long\": -3.6942216337764\n        },\n        {\n            \"lat\": 40.572797123285,\n            \"long\": -3.6941427285248\n        },\n        {\n            \"lat\": 40.572676653674,\n            \"long\": -3.6940414166012\n        },\n        {\n            \"lat\": 40.572656036913,\n            \"long\": -3.6940241910144\n        },\n        {\n            \"lat\": 40.571813211342,\n            \"long\": -3.6933442039068\n        },\n        {\n            \"lat\": 40.57149261816,\n            \"long\": -3.6927385069617\n        },\n        {\n            \"lat\": 40.57157385615,\n            \"long\": -3.6926369166122\n        },\n        {\n            \"lat\": 40.571578898122,\n            \"long\": -3.692577307451\n        },\n        {\n            \"lat\": 40.571015989607,\n            \"long\": -3.6925250746964\n        },\n        {\n            \"lat\": 40.570873885844,\n            \"long\": -3.6924858049949\n        },\n        {\n            \"lat\": 40.57067735656,\n            \"long\": -3.6923734368994\n        },\n        {\n            \"lat\": 40.570354394628,\n            \"long\": -3.6921021812726\n        },\n        {\n            \"lat\": 40.570268259844,\n            \"long\": -3.6920287567378\n        },\n        {\n            \"lat\": 40.570191707235,\n            \"long\": -3.6919648821722\n        },\n        {\n            \"lat\": 40.570072002992,\n            \"long\": -3.691872328257\n        },\n        {\n            \"lat\": 40.569894732331,\n            \"long\": -3.6917632332347\n        },\n        {\n            \"lat\": 40.569784846583,\n            \"long\": -3.6916392384126\n        },\n        {\n            \"lat\": 40.569709444196,\n            \"long\": -3.6913831667095\n        },\n        {\n            \"lat\": 40.569636232774,\n            \"long\": -3.6911522932186\n        },\n        {\n            \"lat\": 40.569576544179,\n            \"long\": -3.6910854040421\n        },\n        {\n            \"lat\": 40.569164910923,\n            \"long\": -3.6907273501179\n        },\n        {\n            \"lat\": 40.569179497504,\n            \"long\": -3.6906834351164\n        },\n        {\n            \"lat\": 40.569160852696,\n            \"long\": -3.6906075178308\n        },\n        {\n            \"lat\": 40.569193640454,\n            \"long\": -3.6905479595885\n        },\n        {\n            \"lat\": 40.569280596055,\n            \"long\": -3.6904842325797\n        },\n        {\n            \"lat\": 40.56980366339,\n            \"long\": -3.6902690457526\n        },\n        {\n            \"lat\": 40.569960615887,\n            \"long\": -3.6901603175747\n        },\n        {\n            \"lat\": 40.570088892156,\n            \"long\": -3.6900261308676\n        },\n        {\n            \"lat\": 40.570168989392,\n            \"long\": -3.6899039715258\n        },\n        {\n            \"lat\": 40.570266270437,\n            \"long\": -3.6897252936315\n        },\n        {\n            \"lat\": 40.570329117873,\n            \"long\": -3.689549912249\n        },\n        {\n            \"lat\": 40.570352406563,\n            \"long\": -3.6894667453507\n        },\n        {\n            \"lat\": 40.570401675379,\n            \"long\": -3.6893324546224\n        },\n        {\n            \"lat\": 40.570169168714,\n            \"long\": -3.6894665185956\n        },\n        {\n            \"lat\": 40.569933004826,\n            \"long\": -3.6895642757391\n        },\n        {\n            \"lat\": 40.569509824858,\n            \"long\": -3.6895567421293\n        },\n        {\n            \"lat\": 40.568625829817,\n            \"long\": -3.6895199064494\n        },\n        {\n            \"lat\": 40.568510355844,\n            \"long\": -3.6894563456936\n        },\n        {\n            \"lat\": 40.568421714462,\n            \"long\": -3.6893814832481\n        },\n        {\n            \"lat\": 40.567515513117,\n            \"long\": -3.6889745578309\n        },\n        {\n            \"lat\": 40.567141675465,\n            \"long\": -3.6888807066031\n        },\n        {\n            \"lat\": 40.564948316443,\n            \"long\": -3.6878980748068\n        },\n        {\n            \"lat\": 40.563143857821,\n            \"long\": -3.6869444203299\n        },\n        {\n            \"lat\": 40.562816199184,\n            \"long\": -3.6868093605839\n        },\n        {\n            \"lat\": 40.562391132742,\n            \"long\": -3.6866340893206\n        },\n        {\n            \"lat\": 40.561815516485,\n            \"long\": -3.6864441705802\n        },\n        {\n            \"lat\": 40.559641639214,\n            \"long\": -3.6857270765577\n        },\n        {\n            \"lat\": 40.558089165769,\n            \"long\": -3.6849069872682\n        },\n        {\n            \"lat\": 40.554878604743,\n            \"long\": -3.6830067251908\n        },\n        {\n            \"lat\": 40.553826277731,\n            \"long\": -3.6823839990113\n        },\n        {\n            \"lat\": 40.552963400369,\n            \"long\": -3.6821432744801\n        },\n        {\n            \"lat\": 40.552903590012,\n            \"long\": -3.6821266047982\n        },\n        {\n            \"lat\": 40.552820942894,\n            \"long\": -3.682147970379\n        },\n        {\n            \"lat\": 40.55141677063,\n            \"long\": -3.6825110677383\n        },\n        {\n            \"lat\": 40.550700510746,\n            \"long\": -3.682047806824\n        },\n        {\n            \"lat\": 40.550415173104,\n            \"long\": -3.6819761753841\n        },\n        {\n            \"lat\": 40.550231847477,\n            \"long\": -3.6819464431455\n        },\n        {\n            \"lat\": 40.550189410697,\n            \"long\": -3.6819473117819\n        },\n        {\n            \"lat\": 40.550147087701,\n            \"long\": -3.6819441660611\n        },\n        {\n            \"lat\": 40.550105058653,\n            \"long\": -3.6819370078183\n        },\n        {\n            \"lat\": 40.550063592409,\n            \"long\": -3.6819260759946\n        },\n        {\n            \"lat\": 40.550022690361,\n            \"long\": -3.6819111344047\n        },\n        {\n            \"lat\": 40.549982800832,\n            \"long\": -3.6818925419119\n        },\n        {\n            \"lat\": 40.549944014599,\n            \"long\": -3.6818701813399\n        },\n        {\n            \"lat\": 40.5498943142,\n            \"long\": -3.6818348368858\n        },\n        {\n            \"lat\": 40.549870467802,\n            \"long\": -3.6818149899582\n        },\n        {\n            \"lat\": 40.549836247034,\n            \"long\": -3.681782282734\n        },\n        {\n            \"lat\": 40.549659011413,\n            \"long\": -3.6815891593427\n        },\n        {\n            \"lat\": 40.549204304552,\n            \"long\": -3.6811207759432\n        },\n        {\n            \"lat\": 40.549167009338,\n            \"long\": -3.6810746927785\n        },\n        {\n            \"lat\": 40.548953409892,\n            \"long\": -3.6806940145515\n        },\n        {\n            \"lat\": 40.548832915286,\n            \"long\": -3.6804265949491\n        },\n        {\n            \"lat\": 40.548768028468,\n            \"long\": -3.6802928385587\n        },\n        {\n            \"lat\": 40.548709409793,\n            \"long\": -3.6801961231846\n        },\n        {\n            \"lat\": 40.548634675672,\n            \"long\": -3.6801129328085\n        },\n        {\n            \"lat\": 40.548480029851,\n            \"long\": -3.6800455864278\n        },\n        {\n            \"lat\": 40.548415971868,\n            \"long\": -3.6800005327597\n        },\n        {\n            \"lat\": 40.54804840241,\n            \"long\": -3.6797417197734\n        },\n        {\n            \"lat\": 40.547810743427,\n            \"long\": -3.6795742142072\n        },\n        {\n            \"lat\": 40.54764281416,\n            \"long\": -3.679453945464\n        },\n        {\n            \"lat\": 40.547520392659,\n            \"long\": -3.6793298974266\n        },\n        {\n            \"lat\": 40.547443347656,\n            \"long\": -3.6792412536217\n        },\n        {\n            \"lat\": 40.547307792352,\n            \"long\": -3.6790679329807\n        },\n        {\n            \"lat\": 40.547222659782,\n            \"long\": -3.6789757832345\n        },\n        {\n            \"lat\": 40.547142705212,\n            \"long\": -3.6789223040521\n        },\n        {\n            \"lat\": 40.546820570169,\n            \"long\": -3.6787039956142\n        },\n        {\n            \"lat\": 40.546705966833,\n            \"long\": -3.6786291460229\n        },\n        {\n            \"lat\": 40.54660448976,\n            \"long\": -3.6785895039919\n        },\n        {\n            \"lat\": 40.546521618964,\n            \"long\": -3.6785570175865\n        },\n        {\n            \"lat\": 40.546501105419,\n            \"long\": -3.6785984987409\n        },\n        {\n            \"lat\": 40.545377119557,\n            \"long\": -3.678716007582\n        },\n        {\n            \"lat\": 40.543446135628,\n            \"long\": -3.6781390176323\n        },\n        {\n            \"lat\": 40.542982653357,\n            \"long\": -3.6779523655145\n        },\n        {\n            \"lat\": 40.541810678109,\n            \"long\": -3.6769728249113\n        },\n        {\n            \"lat\": 40.541743703319,\n            \"long\": -3.6769025965083\n        },\n        {\n            \"lat\": 40.541611502369,\n            \"long\": -3.6767404294792\n        },\n        {\n            \"lat\": 40.541461940304,\n            \"long\": -3.6765430162694\n        },\n        {\n            \"lat\": 40.541326250717,\n            \"long\": -3.676345743471\n        },\n        {\n            \"lat\": 40.541213066083,\n            \"long\": -3.6761359561092\n        },\n        {\n            \"lat\": 40.54115233612,\n            \"long\": -3.6760145419892\n        },\n        {\n            \"lat\": 40.541101323844,\n            \"long\": -3.67592593597\n        },\n        {\n            \"lat\": 40.541030576057,\n            \"long\": -3.6758229612649\n        },\n        {\n            \"lat\": 40.540952891681,\n            \"long\": -3.6757507378148\n        },\n        {\n            \"lat\": 40.540811404543,\n            \"long\": -3.6756357164312\n        },\n        {\n            \"lat\": 40.540669021616,\n            \"long\": -3.6755352111924\n        },\n        {\n            \"lat\": 40.54056727445,\n            \"long\": -3.6754645180634\n        },\n        {\n            \"lat\": 40.540414736831,\n            \"long\": -3.6753611955918\n        },\n        {\n            \"lat\": 40.540282439137,\n            \"long\": -3.6752768643072\n        },\n        {\n            \"lat\": 40.540136002123,\n            \"long\": -3.6751763199295\n        },\n        {\n            \"lat\": 40.539983412046,\n            \"long\": -3.6750649684513\n        },\n        {\n            \"lat\": 40.539861415417,\n            \"long\": -3.6749752979669\n        },\n        {\n            \"lat\": 40.539733790095,\n            \"long\": -3.674893010677\n        },\n        {\n            \"lat\": 40.539599451904,\n            \"long\": -3.6748032170022\n        },\n        {\n            \"lat\": 40.539420314191,\n            \"long\": -3.6747023466132\n        },\n        {\n            \"lat\": 40.539182157121,\n            \"long\": -3.6745740796525\n        },\n        {\n            \"lat\": 40.539049796142,\n            \"long\": -3.6745004846758\n        },\n        {\n            \"lat\": 40.538943791207,\n            \"long\": -3.6744645868102\n        },\n        {\n            \"lat\": 40.538631839205,\n            \"long\": -3.6743677120675\n        },\n        {\n            \"lat\": 40.538522987577,\n            \"long\": -3.6743101769348\n        },\n        {\n            \"lat\": 40.538394823983,\n            \"long\": -3.6742274148516\n        },\n        {\n            \"lat\": 40.538308315709,\n            \"long\": -3.6741696318067\n        },\n        {\n            \"lat\": 40.538227213094,\n            \"long\": -3.6741117850143\n        },\n        {\n            \"lat\": 40.538103093266,\n            \"long\": -3.6739859642313\n        },\n        {\n            \"lat\": 40.538035758431,\n            \"long\": -3.6738999161224\n        },\n        {\n            \"lat\": 40.537960433892,\n            \"long\": -3.6737781274083\n        },\n        {\n            \"lat\": 40.537887963765,\n            \"long\": -3.673645740202\n        },\n        {\n            \"lat\": 40.537793921737,\n            \"long\": -3.673473945967\n        },\n        {\n            \"lat\": 40.537678508574,\n            \"long\": -3.6732591809865\n        },\n        {\n            \"lat\": 40.537633256813,\n            \"long\": -3.6731092370429\n        },\n        {\n            \"lat\": 40.537604074758,\n            \"long\": -3.6729843692452\n        },\n        {\n            \"lat\": 40.537567144679,\n            \"long\": -3.6728131362097\n        },\n        {\n            \"lat\": 40.537501438556,\n            \"long\": -3.672431667396\n        },\n        {\n            \"lat\": 40.537480225248,\n            \"long\": -3.6723460827017\n        },\n        {\n            \"lat\": 40.537458970588,\n            \"long\": -3.6722675943165\n        },\n        {\n            \"lat\": 40.537437592293,\n            \"long\": -3.6722103475113\n        },\n        {\n            \"lat\": 40.537421646552,\n            \"long\": -3.6721639004026\n        },\n        {\n            \"lat\": 40.537386664921,\n            \"long\": -3.672106635797\n        },\n        {\n            \"lat\": 40.537354344558,\n            \"long\": -3.6720564826938\n        },\n        {\n            \"lat\": 40.537273592435,\n            \"long\": -3.6719381854756\n        },\n        {\n            \"lat\": 40.537212866601,\n            \"long\": -3.6718617710332\n        },\n        {\n            \"lat\": 40.537164303501,\n            \"long\": -3.6718007106029\n        },\n        {\n            \"lat\": 40.53712106933,\n            \"long\": -3.671768278947\n        },\n        {\n            \"lat\": 40.537088735244,\n            \"long\": -3.6717359562027\n        },\n        {\n            \"lat\": 40.53703732474,\n            \"long\": -3.6716997824764\n        },\n        {\n            \"lat\": 40.536996813633,\n            \"long\": -3.6716638357367\n        },\n        {\n            \"lat\": 40.536942831865,\n            \"long\": -3.6716205516322\n        },\n        {\n            \"lat\": 40.536824001621,\n            \"long\": -3.6715126207499\n        },\n        {\n            \"lat\": 40.536753818301,\n            \"long\": -3.67145134508\n        },\n        {\n            \"lat\": 40.536605253279,\n            \"long\": -3.671328830372\n        },\n        {\n            \"lat\": 40.53645386263,\n            \"long\": -3.6712135026519\n        },\n        {\n            \"lat\": 40.536367415188,\n            \"long\": -3.6711449805905\n        },\n        {\n            \"lat\": 40.536300029049,\n            \"long\": -3.6710829070836\n        },\n        {\n            \"lat\": 40.536059287813,\n            \"long\": -3.6709319621689\n        },\n        {\n            \"lat\": 40.535944129615,\n            \"long\": -3.6708586675226\n        },\n        {\n            \"lat\": 40.535841356273,\n            \"long\": -3.6707935259644\n        },\n        {\n            \"lat\": 40.535784478068,\n            \"long\": -3.670768044217\n        },\n        {\n            \"lat\": 40.535697719851,\n            \"long\": -3.6707530096195\n        },\n        {\n            \"lat\": 40.535600206836,\n            \"long\": -3.6707128353265\n        },\n        {\n            \"lat\": 40.53548146577,\n            \"long\": -3.6706049091217\n        },\n        {\n            \"lat\": 40.535316718684,\n            \"long\": -3.6704608653405\n        },\n        {\n            \"lat\": 40.535154620518,\n            \"long\": -3.6703276054812\n        },\n        {\n            \"lat\": 40.535030474062,\n            \"long\": -3.6702196268181\n        },\n        {\n            \"lat\": 40.534979104137,\n            \"long\": -3.6701763711828\n        },\n        {\n            \"lat\": 40.534930588414,\n            \"long\": -3.6701225171597\n        },\n        {\n            \"lat\": 40.53488477517,\n            \"long\": -3.6700686901379\n        },\n        {\n            \"lat\": 40.534839078581,\n            \"long\": -3.6699792052746\n        },\n        {\n            \"lat\": 40.534763757043,\n            \"long\": -3.6698717140353\n        },\n        {\n            \"lat\": 40.534667857436,\n            \"long\": -3.6697241083987\n        },\n        {\n            \"lat\": 40.534565660232,\n            \"long\": -3.669559437557\n        },\n        {\n            \"lat\": 40.534458099501,\n            \"long\": -3.6693875112175\n        },\n        {\n            \"lat\": 40.534395545937,\n            \"long\": -3.6692841746806\n        },\n        {\n            \"lat\": 40.532058663511,\n            \"long\": -3.6709786156292\n        },\n        {\n            \"lat\": 40.530864726682,\n            \"long\": -3.6723113875074\n        },\n        {\n            \"lat\": 40.528376558793,\n            \"long\": -3.6756992982059\n        },\n        {\n            \"lat\": 40.527240536312,\n            \"long\": -3.6765034563191\n        },\n        {\n            \"lat\": 40.526987825606,\n            \"long\": -3.6771821364824\n        },\n        {\n            \"lat\": 40.526113654692,\n            \"long\": -3.6755574477285\n        },\n        {\n            \"lat\": 40.525571007461,\n            \"long\": -3.6750421092684\n        },\n        {\n            \"lat\": 40.524361884003,\n            \"long\": -3.6720044113733\n        },\n        {\n            \"lat\": 40.524716358394,\n            \"long\": -3.6700230553521\n        },\n        {\n            \"lat\": 40.525003369357,\n            \"long\": -3.6676267271289\n        },\n        {\n            \"lat\": 40.524475015084,\n            \"long\": -3.6659533452972\n        },\n        {\n            \"lat\": 40.524463274111,\n            \"long\": -3.6659115545395\n        }\n    ],\n    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\",\n    \"id\": \"561e04ed6aa918910c8b4592\",\n    \"jurisdiction_elements\": [\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"5d9ee7bcde2efef4018b4569\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"64cb9cebaddc18074d0e4193\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"64cb9e98addc18074d0e4195\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletas\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"64cb9edb24ab2d777a0ca313\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"64df24ef07a26e434d01f893\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"667031dac97737f437009da6\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png\",\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas\",\n            \"is_main\": true\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png\",\n            \"id\": \"65c27852911e73e22d02f413\",\n            \"name\": \"prueba\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba S y G\",\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/667b22cc072a7815151459.png\",\n            \"id\": \"65ea13f79f912150be097e22\",\n            \"name\": \"prueba_copy\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba_copy\",\n            \"position\": {\n                \"address_string\": \"7CMF9HRJ+C9\",\n                \"lat\": 23.391075815349,\n                \"long\": -10.419070926826\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png\",\n            \"id\": \"65ea172b751882bcdd08f9c2\",\n            \"name\": \"prueba_copy_copy\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba_copy_copy\",\n            \"position\": {\n                \"lat\": 23.391075815349,\n                \"long\": -10.419070926826\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png\",\n            \"id\": \"65ea1744b312b50dec003e12\",\n            \"name\": \"prueba_copy_copy_copy\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba_copy_copy_copy\",\n            \"position\": {\n                \"lat\": 23.391075815349,\n                \"long\": -10.419070926826\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/661016786f01f245765540.png\",\n            \"id\": \"66102b1ef3a7a40d9e07dcb2\",\n            \"name\": \"prueba 66102b1e0f1ce0.98388817\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba 66102b1e0f1d69.43217378\",\n            \"position\": {\n                \"address_string\": \"C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.5417604,\n                \"long\": -3.6488851\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png\",\n            \"id\": \"6622699b678cd8206600a642\",\n            \"name\": \"prueba 6622699b459009.72981868\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba 6622699b459072.064512034\",\n            \"position\": {\n                \"address_string\": \"C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain4\",\n                \"lat\": 40.5417604,\n                \"long\": -3.6488851\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a753e68c729442026.png\",\n            \"id\": \"662274499a752fef9c0d3fd2\",\n            \"name\": \"prueba_copy 66227449a7bc29.71828875\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba_copy 66227449a7bc97.76088342\",\n            \"position\": {\n                \"address_string\": \"7CMF9HRJ+C9\",\n                \"lat\": 23.391075815349,\n                \"long\": -10.419070926826\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/665f158dd7a2f696134412.png\",\n            \"id\": \"6622747196f67a49700e3773\",\n            \"name\": \"PruebaRed\",\n            \"type\": \"city\",\n            \"visible_name\": \"Prueba Redireccion\",\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758676e710fb864221721.png\",\n            \"id\": \"663d17ac964ad414110d9154\",\n            \"name\": \"prueba - rutas\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba - rutas\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"663d50f27849b9e1d40dac0a\",\n            \"name\": \"prueba-redirect\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba-redirect\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"663d519e5827e05956040922\",\n            \"name\": \"prueba-redirect 663d519e05b6c2.37692593\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba-redirect 663d519e05b745.04573792\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7f8c00d8bf483509589.png\",\n            \"id\": \"66a7f8c05adb7591e20f34a3\",\n            \"name\": \"dsfdsf\",\n            \"type\": \"city\",\n            \"visible_name\": \"sdfdsf\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7fbae44082397700839.png\",\n            \"id\": \"66a7fbaece27438232094fb3\",\n            \"name\": \"sdfsdffds\",\n            \"type\": \"city\",\n            \"visible_name\": \"sfdfsdf\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83602dcee520229024.png\",\n            \"id\": \"66ab8360fe792921890d0b93\",\n            \"name\": \"xczxczxc\",\n            \"type\": \"city\",\n            \"visible_name\": \"zxczxc\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83991030e165490436.png\",\n            \"id\": \"66ab8399fe792921890d0b95\",\n            \"name\": \"asdsad\",\n            \"type\": \"city\",\n            \"visible_name\": \"sdasd\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [\n                -3.6383701014039476,\n                40.53726099591145,\n                -3.636267202837841,\n                40.53737383778608\n            ],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab8630cd7f2176146195.png\",\n            \"id\": \"66ab8630a7ae91e5dd0513ad\",\n            \"name\": \"dasdasd\",\n            \"type\": \"city\",\n            \"visible_name\": \"asdasdads\",\n            \"position\": {\n                \"address_string\": \"Alcobendas, Madrid, Spain\",\n                \"lat\": 40.5372512,\n                \"long\": -3.6372245\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66feab42f3863925866863.png\",\n            \"id\": \"66acd7c67dcac6466406e973\",\n            \"name\": \"prueba copy21\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba48\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66d8ab81aded9310723592.png\",\n            \"id\": \"66d8aaac847ce6c01b051c6a\",\n            \"name\": \"Pruebas_00\",\n            \"type\": \"city\",\n            \"visible_name\": \"Subproyecto de Prueba 00\",\n            \"position\": {\n                \"address_string\": \"Av. de la Zaporra, 30, 28108 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.536950952219,\n                \"long\": -3.6375723972414\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"66ec8a415944e6a1d70d294a\",\n            \"name\": \"sdfsdf\",\n            \"type\": \"city\",\n            \"visible_name\": \"sdfsdf\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e93a7fca30a7b0d7e04\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e94a7fca30a7b0d7e0c\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e94a7fca30a7b0d7e0d\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletass\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e94a7fca30a7b0d7e0e\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e94a7fca30a7b0d7e0f\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e94a7fca30a7b0d7e11\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n            \"id\": \"66f55e93a7fca30a7b0d7e03\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 2\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604\",\n            \"position\": {\n                \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.537075706835,\n                \"long\": -3.6352928421438\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e9cfc8304ec890065d6\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e9cfc8304ec890065de\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e9cfc8304ec890065df\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletas\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e9cfc8304ec890065e0\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e9cfc8304ec890065e1\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55e9cfc8304ec890065e3\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"id\": \"66f55e9cfc8304ec890065d5\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 66f55e9c25b230.62445164\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 66f55e9c25b292.93160889\",\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55eb3a7fca30a7b0d7e13\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55eb3a7fca30a7b0d7e1b\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55eb3a7fca30a7b0d7e1c\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletas\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55eb3a7fca30a7b0d7e1d\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55eb3a7fca30a7b0d7e1e\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"66f55eb3a7fca30a7b0d7e20\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"id\": \"66f55eb3a7fca30a7b0d7e12\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 66f55eb3782408.06642050\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 66f55eb3782462.71960258\",\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66fd515dd2918569942317.png\",\n            \"id\": \"66fd515e402343afa9009794\",\n            \"name\": \"AlcobendasTest\",\n            \"type\": \"city\",\n            \"visible_name\": \"AlcobendasTest\",\n            \"position\": {\n                \"address_string\": \"Av. de Peñalara, 14, 28108 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.534024499598,\n                \"long\": -3.6633100275929\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"66fd51c6768fcce869009695\",\n            \"name\": \"TestOne\",\n            \"type\": \"building\",\n            \"visible_name\": \"TestOne\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"66fd6717b2e794c2750311ef\",\n            \"name\": \"sadas\",\n            \"type\": \"building\",\n            \"visible_name\": \"dsds\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"66fe916a7ecd831d99057fae\",\n            \"name\": \"fdgdfgg\",\n            \"type\": \"city\",\n            \"visible_name\": \"sadasdsf\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/663d17acab642804466040.png\",\n            \"id\": \"66febaa95704247b9101f8d4\",\n            \"name\": \"prueba - rutas 66febaa9e601d7.81700930\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba - rutas 66febaa9e60247.16727571\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": true,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6707f0f2a56ab960053749.png\",\n            \"id\": \"6707cc6602f036033f087a1d\",\n            \"name\": \"Documentación 2\",\n            \"type\": \"building\",\n            \"visible_name\": \"Prueba Documentación 2\",\n            \"position\": {\n                \"address_string\": \"C. de Embajadores, 77, Arganzuela, 28012 Madrid, Spain\",\n                \"lat\": 40.402644829153,\n                \"long\": -3.7004203901125\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"670802e62f9d4a71cd06a755\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"670802e62f9d4a71cd06a75d\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"670802e62f9d4a71cd06a75e\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletas\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"670802e62f9d4a71cd06a75f\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"670802e62f9d4a71cd06a760\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"670802e62f9d4a71cd06a762\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"id\": \"670802e62f9d4a71cd06a754\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 670802e6be8658.12404683\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 670802e6be86b5.23732963\",\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67096bc2ffc05a02a10aeb01\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67096bc2ffc05a02a10aeb09\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67096bc2ffc05a02a10aeb0a\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletas\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67096bc2ffc05a02a10aeb0b\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67096bc3ffc05a02a10aeb0c\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67096bc3ffc05a02a10aeb0e\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"id\": \"67096bc2ffc05a02a10aeb00\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 67096bc2dbe5c3.49134378\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 67096bc2dbe626.22009007\",\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"67478f9898e9bea6e70a90b8\",\n            \"name\": \"sasdda\",\n            \"type\": \"city\",\n            \"visible_name\": \"pruebas\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/675947afec6a2469197916.png\",\n            \"id\": \"675947b0f044affc53005ba8\",\n            \"name\": \"Prueba QA\",\n            \"type\": \"building\",\n            \"visible_name\": \"Prueba QA\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678832b021303145868051.png\",\n            \"id\": \"678832b0deaa23504a049c36\",\n            \"name\": \"bvnbvn\",\n            \"type\": \"building\",\n            \"visible_name\": \"vnbn\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"6788340c943dcdca3d0b7994\",\n            \"name\": \"xcxcv\",\n            \"type\": \"building\",\n            \"visible_name\": \"xcvx\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834b8890a3779c2073c94\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834b8890a3779c2073c9c\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834b8890a3779c2073c9d\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletass\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834b8890a3779c2073c9e\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834b8890a3779c2073c9f\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834b8890a3779c2073ca1\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n            \"id\": \"678834b8890a3779c2073c93\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 66f55e93e28df4.433383312 678834b8c3dcd9.23960367\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 678834b8c3dd25.76718740\",\n            \"position\": {\n                \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.537075706835,\n                \"long\": -3.6352928421438\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834e03ccfc90eab0a4843\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834e03ccfc90eab0a484b\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834e03ccfc90eab0a484c\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletas\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834e03ccfc90eab0a484d\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834e03ccfc90eab0a484e\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678834e03ccfc90eab0a4850\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n            \"id\": \"678834e03ccfc90eab0a4842\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 678834e037e4b0.37687067\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 678834e037e531.71607018\",\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"6788372e67c09c2f2f0909c3\",\n            \"name\": \"xzcxzc\",\n            \"type\": \"building\",\n            \"visible_name\": \"xczxczxcxz\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678837b72bdfe4fd820c4af3\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678837b72bdfe4fd820c4afb\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678837b72bdfe4fd820c4afc\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletass\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678837b72bdfe4fd820c4afd\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678837b72bdfe4fd820c4afe\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"678837b72bdfe4fd820c4b00\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.694952001222114,\n                40.50117283,\n                -3.55027416,\n                40.58886136999999\n            ],\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n            \"id\": \"678837b72bdfe4fd820c4af2\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 66f55e93e28df4.433383312 678837b7995d51.94642502\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 678837b7995da7.96927208\",\n            \"position\": {\n                \"address_string\": \"C. Clz8 G17 María Teresa, 10, 28108 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.537085389425,\n                \"long\": -3.634876818277\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fa592bdfe4fd820c4b04\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fa592bdfe4fd820c4b0c\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fa592bdfe4fd820c4b0d\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletass\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fa592bdfe4fd820c4b0e\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fa592bdfe4fd820c4b0f\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fa592bdfe4fd820c4b11\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n            \"id\": \"6788fa592bdfe4fd820c4b03\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 2 6788fa592cb379.01808297\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fa592cb3b6.23533051\",\n            \"position\": {\n                \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.537075706835,\n                \"long\": -3.6352928421438\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fab5deaa23504a049c38\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fab5deaa23504a049c40\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fab5deaa23504a049c41\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletass\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fab5deaa23504a049c42\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fab6deaa23504a049c43\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fab6deaa23504a049c45\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n            \"id\": \"6788fab5deaa23504a049c37\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 2 6788fab5d845e1.14038314\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fab5d84645.20456436\",\n            \"position\": {\n                \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.537075706835,\n                \"long\": -3.6352928421438\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe6867c09c2f2f0909c5\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe6867c09c2f2f0909cd\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe6867c09c2f2f0909ce\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletass\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe6867c09c2f2f0909cf\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe6867c09c2f2f0909d0\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe6867c09c2f2f0909d2\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n            \"id\": \"6788fe6867c09c2f2f0909c4\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 2 6788fe686b90d8.11238269\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fe686b9136.06999346\",\n            \"position\": {\n                \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.537075706835,\n                \"long\": -3.6352928421438\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe7fe05c80a755015855\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe7fe05c80a75501585d\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe7fe05c80a75501585e\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletass\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe7fe05c80a75501585f\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe7fe05c80a755015860\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788fe7fe05c80a755015862\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n            \"id\": \"6788fe7fe05c80a755015854\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 2 6788fe7f6fa3d3.89895977\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fe7f6fa465.61898122\",\n            \"position\": {\n                \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.537075706835,\n                \"long\": -3.6352928421438\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788feb7f9371c00d10b1b93\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788feb7f9371c00d10b1b9b\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788feb7f9371c00d10b1b9c\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletas\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788feb7f9371c00d10b1b9d\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788feb7f9371c00d10b1b9e\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"6788feb7f9371c00d10b1ba0\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n            \"id\": \"6788feb7f9371c00d10b1b92\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendass 6788feb77346e1.9556351oo\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 6788feb7734735.49508202\",\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"6788ff26890a3779c2073ca7\",\n            \"name\": \"vbcb\",\n            \"type\": \"building\",\n            \"visible_name\": \"bcvbcv\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"6788ff3df9371c00d10b1ba3\",\n            \"name\": \"zxczxcxz\",\n            \"type\": \"building\",\n            \"visible_name\": \"xcxzcxz\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"678abbbde8f9deafd60f708e\",\n            \"name\": \"fdgdfgdfg\",\n            \"type\": \"city\",\n            \"visible_name\": \"fgdfg\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678e5cd089f0c939082671.png\",\n            \"id\": \"678e5cd054203c217a055dc6\",\n            \"name\": \"nestor\",\n            \"type\": \"building\",\n            \"visible_name\": \"testNestor\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b47abce50676616067.png\",\n            \"id\": \"67b4b47b42839b62430b8483\",\n            \"name\": \"jurisdictionElement prueba\",\n            \"type\": \"building\",\n            \"visible_name\": \"prueba jurisdictionElement\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b51484af1723070026.png\",\n            \"id\": \"67b4b51572ed11bc700c2824\",\n            \"name\": \"prueba 1\",\n            \"type\": \"city\",\n            \"visible_name\": \"prueba 1\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [\n                -3.6664793853892252,\n                40.531531171052336,\n                -3.6064955047159155,\n                40.56840696769418\n            ],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67e890bb58e39372179361.png\",\n            \"id\": \"67c6f7e7af404fd6bc04f153\",\n            \"name\": \"Alcobendas 1 subproyecto\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 1 subproyecto\",\n            \"position\": {\n                \"address_string\": \"P.º de la Chopera, 2, 28100 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.5375258,\n                \"long\": -3.6371678\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"67d197cde42d705904084ce3\",\n            \"name\": \"preuab2\",\n            \"type\": \"city\",\n            \"visible_name\": \"pruebaaaa\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"67d19967a06bdf23380a9a76\",\n            \"name\": \"prueba1\",\n            \"type\": \"city\",\n            \"visible_name\": \"crack\",\n            \"position\": {\n                \"address_string\": \"canino Canterac Park, C. Canterac, 28B, 47013 Valladolid, Spain\",\n                \"lat\": 41.638658052263,\n                \"long\": -4.7141842143906\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"67d42f3d0f0b22f66907dbec\",\n            \"name\": \"prueba3\",\n            \"type\": \"building\",\n            \"visible_name\": \"dasdasdasd\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"67d4549cc0c8e0cbca03a8f3\",\n            \"name\": \"joseprueba\",\n            \"type\": \"building\",\n            \"visible_name\": \"jose\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67d455457febe717149554.png\",\n            \"id\": \"67d45545a906d3ff900946b5\",\n            \"name\": \"crackfut\",\n            \"type\": \"building\",\n            \"visible_name\": \"crackmes\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67e7425479962014f00e34e3\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67e7425479962014f00e34eb\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                    \"name\": \"Aparcapatinetes\",\n                    \"description\": \"Aparcapatinetes\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67e7425479962014f00e34ec\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                    \"level\": 8,\n                    \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                    \"name\": \"Aparcabicicletas\",\n                    \"description\": \"Aparcabicicletas\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\",\n                    \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67e7425479962014f00e34ed\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                    \"name\": \"Aparcamientos (PMR)\",\n                    \"description\": \"Aparcamientos (PMR)\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67e7425479962014f00e34ee\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                    \"name\": \"Puntos de Recarga\",\n                    \"description\": \"Puntos de Recarga\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"POI\"\n                },\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67e7425479962014f00e34f0\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                    \"name\": \"MAINTENANCE PRUEBA\",\n                    \"description\": \"MAINTENANCE PRUEBA\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"MAINTENANCE ASSET\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/689afb53e097c133825380.png\",\n            \"id\": \"67e7425479962014f00e34e2\",\n            \"location_additional_data\": {},\n            \"name\": \"org.alcobendas 67e74254a71995.25767502\",\n            \"type\": \"building\",\n            \"visible_name\": \"Alcobendas 67e74254a719f4.11715944\",\n            \"is_main\": true\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"id\": \"67e7467679962014f00e34f3\",\n            \"name\": \"Alcobendas 1 subproyecto 67e74676ee0f33.56206097\",\n            \"type\": \"city\",\n            \"visible_name\": \"Alcobendas 1 subproyecto 67e74676ee0f91.76578534\",\n            \"position\": {\n                \"address_string\": \"P.º de la Chopera, 2, 28100 Alcobendas, Madrid, Spain\",\n                \"lat\": 40.5375258,\n                \"long\": -3.6371678\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67f6c2cd32a22461808825.png\",\n            \"id\": \"67f6c29287bcd0a4720254ca\",\n            \"name\": \"QA Externo\",\n            \"type\": \"building\",\n            \"visible_name\": \"QA\",\n            \"position\": {\n                \"address_string\": \"Av. de los Montes de Oca, 14, 28703 San Sebastián de los Reyes, Madrid, Spain\",\n                \"lat\": 40.551773662072,\n                \"long\": -3.6149869900721\n            },\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [\n                -3.6364172109596353,\n                40.53630460226685,\n                -3.6354953216164216,\n                40.5367605591301\n            ],\n            \"guided_module\": false,\n            \"id\": \"68a89596da168ede230eae43\",\n            \"name\": \"prueba palomino\",\n            \"type\": \"building\",\n            \"visible_name\": \"prueba palomino\",\n            \"position\": {},\n            \"is_main\": false\n        },\n        {\n            \"map_layers\": [],\n            \"extent\": [\n                -3.636484806398722,\n                40.5361976274601,\n                -3.6349743395421803,\n                40.53675343031418\n            ],\n            \"guided_module\": false,\n            \"id\": \"68a8d218e05a6efce8071d84\",\n            \"name\": \"palominoo\",\n            \"type\": \"city\",\n            \"visible_name\": \"palomino\",\n            \"position\": {},\n            \"is_main\": false\n        }\n    ],\n    \"jurisdiction_id\": \"org.alcobendas\",\n    \"key_name\": \"Alcobendas, Madrid\",\n    \"locales\": [\n        \"en\",\n        \"es\"\n    ],\n    \"name\": \"Alcobendas\",\n    \"origin_devices\": [\n        {\n            \"id\": \"5850de88e22c6d9f51b17715\",\n            \"options\": []\n        },\n        {\n            \"id\": \"5850de88e22c6d9f51b17717\",\n            \"options\": [\n                \"ios\"\n            ]\n        },\n        {\n            \"id\": \"5850de88e22c6d9f51b17718\",\n            \"options\": [\n                \"android\",\n                \"internal\"\n            ]\n        },\n        {\n            \"id\": \"5850de88e22c6d9f51b17719\",\n            \"options\": [\n                \"inperson\",\n                \"internal\"\n            ]\n        },\n        {\n            \"id\": \"5850de88e22c6d9f51b1771a\",\n            \"options\": [\n                \"inperson\"\n            ]\n        },\n        {\n            \"id\": \"5850de88e22c6d9f51b1771b\",\n            \"options\": [\n                \"inperson\",\n                \"email\"\n            ]\n        },\n        {\n            \"id\": \"5850de88e22c6d9f51b1771c\",\n            \"options\": [\n                \"inperson\"\n            ]\n        },\n        {\n            \"id\": \"5850de88e22c6d9f51b1771d\",\n            \"options\": [\n                \"facebook\",\n                \"inperson\"\n            ]\n        },\n        {\n            \"id\": \"5850de88e22c6d9f51b1771e\",\n            \"options\": [\n                \"twitter\",\n                \"inperson\"\n            ]\n        },\n        {\n            \"id\": \"5850de88e22c6d9f51b17722\",\n            \"options\": [\n                \"web_channel\"\n            ]\n        },\n        {\n            \"id\": \"59c3ad5e626fae16048b4567\",\n            \"options\": [\n                \"internal\",\n                \"inperson\"\n            ]\n        },\n        {\n            \"id\": \"5fd0d60b00674b94038b456b\",\n            \"options\": [\n                \"android\",\n                \"ios\",\n                \"facebook\",\n                \"twitter\",\n                \"inperson\",\n                \"web_channel\",\n                \"internal\",\n                \"email\"\n            ]\n        },\n        {\n            \"id\": \"60c09cdccdf34808168b4573\",\n            \"options\": [\n                \"android\"\n            ]\n        }\n    ],\n    \"lat\": 40.5367233,\n    \"long\": -3.6370633,\n    \"tags\": [\n        {\n            \"name\": \"Alcobendas\",\n            \"color\": \"#0271b8\",\n            \"id\": \"Alcobendas\"\n        },\n        {\n            \"name\": \"Cultura\",\n            \"color\": \"#000000\",\n            \"id\": \"Cultura\"\n        },\n        {\n            \"name\": \"Entretenimiento\",\n            \"color\": \"#000000\",\n            \"id\": \"Entretenimiento\"\n        },\n        {\n            \"name\": \"Social\",\n            \"color\": \"#000000\",\n            \"id\": \"Social\"\n        },\n        {\n            \"name\": \"Deportes\",\n            \"color\": \"#000000\",\n            \"id\": \"Deportes\"\n        },\n        {\n            \"name\": \"TACA\",\n            \"color\": \"#000000\",\n            \"id\": \"TACA\"\n        },\n        {\n            \"name\": \"Teatro\",\n            \"color\": \"#000000\",\n            \"id\": \"Teatro\"\n        },\n        {\n            \"name\": \"Ayuntamiento\",\n            \"color\": \"#000000\",\n            \"id\": \"Ayuntamiento\"\n        },\n        {\n            \"name\": \"Trámites\",\n            \"color\": \"#000000\",\n            \"id\": \"Trámites\"\n        },\n        {\n            \"name\": \"censo\",\n            \"color\": \"#000000\",\n            \"id\": \"censo\"\n        },\n        {\n            \"name\": \"consulta\",\n            \"color\": \"#000000\",\n            \"id\": \"consulta\"\n        },\n        {\n            \"name\": \"electoral\",\n            \"color\": \"#000000\",\n            \"id\": \"electoral\"\n        },\n        {\n            \"name\": \"elecciones\",\n            \"color\": \"#000000\",\n            \"id\": \"elecciones\"\n        },\n        {\n            \"name\": \"contrato,\",\n            \"color\": \"#000000\",\n            \"id\": \"contrato,\"\n        },\n        {\n            \"name\": \"bolsa,empleo,\",\n            \"color\": \"#000000\",\n            \"id\": \"bolsa,empleo,\"\n        },\n        {\n            \"name\": \"movilidad, transporte, desplazamiento, coche, autobús, metro, tren, patinete, bicicleta, car,\",\n            \"color\": \"#000000\",\n            \"id\": \"movilidad, transporte, desplazamiento, coche, autobús, metro, tren, patinete, bicicleta, car,\"\n        },\n        {\n            \"name\": \"Rutas biosaludables\",\n            \"color\": \"#000000\",\n            \"id\": \"Rutas biosaludables\"\n        },\n        {\n            \"name\": \"ruta, nadar, bici,\",\n            \"color\": \"#000000\",\n            \"id\": \"ruta, nadar, bici,\"\n        },\n        {\n            \"name\": \"Alumbrado\",\n            \"color\": \"#000000\",\n            \"id\": \"Alumbrado\"\n        },\n        {\n            \"name\": \"armarios de alumbrado\",\n            \"color\": \"#000000\",\n            \"id\": \"armarios de alumbrado\"\n        },\n        {\n            \"name\": \"adsa\",\n            \"color\": \"#000000\",\n            \"id\": \"adsa\"\n        },\n        {\n            \"name\": \"et\",\n            \"color\": \"#000000\",\n            \"id\": \"et\"\n        },\n        {\n            \"name\": \"noticias\",\n            \"color\": \"#000000\",\n            \"id\": \"noticias\"\n        },\n        {\n            \"name\": \"dadasda\",\n            \"color\": \"#000000\",\n            \"id\": \"dadasda\"\n        },\n        {\n            \"name\": \"no\",\n            \"color\": \"#000000\",\n            \"id\": \"no\"\n        }\n    ],\n    \"third_emails\": [\n        \"comentarios.alcobendas@mejoratuciudad.org\"\n    ],\n    \"timezone\": \"Europe/Madrid\",\n    \"typologies\": [\n        {\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": true,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        }\n    ],\n    \"typology_nodes\": [\n        {\n            \"id\": \"5850dca2e22c6d9f51b00c59\",\n            \"color\": \"#f1c40f\",\n            \"order\": 0,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Nuevo\"\n        },\n        {\n            \"id\": \"64ac2229512893e6a20abfb2\",\n            \"color\": \"#ff0000\",\n            \"order\": 0,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Prueba\"\n        },\n        {\n            \"id\": \"6183cd316ac0f4001e8b4573\",\n            \"color\": \"#337ab7\",\n            \"order\": 0,\n            \"typology\": {\n                \"id\": \"6183cc553c69dc0b1e8b4572\",\n                \"color\": \"#6c8ce0\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 2,\n                \"public\": false,\n                \"visible_name\": \"Inspección\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            \"visible_name\": \"En ejecución\"\n        },\n        {\n            \"id\": \"62137c48dc539fcf0d8b4567\",\n            \"color\": \"#337ab7\",\n            \"order\": 1,\n            \"typology\": {\n                \"id\": \"6183cc553c69dc0b1e8b4572\",\n                \"color\": \"#6c8ce0\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 2,\n                \"public\": false,\n                \"visible_name\": \"Inspección\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            \"visible_name\": \"No Solucionado\"\n        },\n        {\n            \"id\": \"6183d57e6ac0f4021e8b4589\",\n            \"color\": \"#b290e0\",\n            \"order\": 1,\n            \"typology\": {\n                \"id\": \"6183cc553c69dc0b1e8b4572\",\n                \"color\": \"#6c8ce0\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 2,\n                \"public\": false,\n                \"visible_name\": \"Inspección\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            \"visible_name\": \"Nuevo\"\n        },\n        {\n            \"id\": \"59c3693622a293ad018b45d1\",\n            \"color\": \"#b39ddb\",\n            \"order\": 10,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"En consulta\"\n        },\n        {\n            \"id\": \"6183cd683c69dc091e8b4593\",\n            \"color\": \"#ef6c00\",\n            \"order\": 10,\n            \"typology\": {\n                \"id\": \"6183cc553c69dc0b1e8b4572\",\n                \"color\": \"#6c8ce0\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 2,\n                \"public\": false,\n                \"visible_name\": \"Inspección\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            \"visible_name\": \"Pte validar ejecución\"\n        },\n        {\n            \"id\": \"62137d02648cf0e70d8b456e\",\n            \"color\": \"#ef6c00\",\n            \"order\": 10,\n            \"typology\": {\n                \"id\": \"6183cc553c69dc0b1e8b4572\",\n                \"color\": \"#6c8ce0\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 2,\n                \"public\": false,\n                \"visible_name\": \"Inspección\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            \"visible_name\": \"Pte Validar Solucionado\"\n        },\n        {\n            \"id\": \"5850dca2e22c6d9f51b00c5a\",\n            \"color\": \"#0c98f5\",\n            \"order\": 20,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"En ejecución\"\n        },\n        {\n            \"id\": \"6183cddb8baf53bc208b4599\",\n            \"color\": \"#e91e63\",\n            \"order\": 20,\n            \"typology\": {\n                \"id\": \"6183cc553c69dc0b1e8b4572\",\n                \"color\": \"#6c8ce0\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 2,\n                \"public\": false,\n                \"visible_name\": \"Inspección\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            \"visible_name\": \"Devuelto\"\n        },\n        {\n            \"id\": \"6038dd859c1bc3f1088b45d2\",\n            \"color\": \"#084a87\",\n            \"order\": 25,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Pte validar ejecución\"\n        },\n        {\n            \"id\": \"59c36970626faeab018b456c\",\n            \"color\": \"#993399\",\n            \"order\": 30,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Consultado\"\n        },\n        {\n            \"id\": \"6183cce0d27499861d8b4567\",\n            \"color\": \"#33691e\",\n            \"order\": 30,\n            \"typology\": {\n                \"id\": \"6183cc553c69dc0b1e8b4572\",\n                \"color\": \"#6c8ce0\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 2,\n                \"public\": false,\n                \"visible_name\": \"Inspección\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            \"visible_name\": \"En consulta\"\n        },\n        {\n            \"id\": \"5850dca2e22c6d9f51b00c5b\",\n            \"color\": \"#21618c\",\n            \"order\": 40,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Resuelto\"\n        },\n        {\n            \"id\": \"59c36995626fae09028b456c\",\n            \"color\": \"#3abdaa\",\n            \"order\": 50,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Devuelto\"\n        },\n        {\n            \"id\": \"6183ce11390a87c71e8b4567\",\n            \"color\": \"#486634\",\n            \"order\": 50,\n            \"typology\": {\n                \"id\": \"6183cc553c69dc0b1e8b4572\",\n                \"color\": \"#6c8ce0\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 2,\n                \"public\": false,\n                \"visible_name\": \"Inspección\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            \"visible_name\": \"Solucionado\"\n        },\n        {\n            \"id\": \"59c3724d22a293ab018b45cd\",\n            \"color\": \"#8cbc2d\",\n            \"order\": 60,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Validado\"\n        },\n        {\n            \"id\": \"5850dca2e22c6d9f51b00c5d\",\n            \"color\": \"#d35400\",\n            \"order\": 70,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Rechazado\"\n        },\n        {\n            \"id\": \"6183ce283c69dc0d1e8b4567\",\n            \"color\": \"#b71b1c\",\n            \"order\": 70,\n            \"typology\": {\n                \"id\": \"6183cc553c69dc0b1e8b4572\",\n                \"color\": \"#6c8ce0\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 2,\n                \"public\": false,\n                \"visible_name\": \"Inspección\",\n                \"with_authorized_users\": false,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": false,\n                \"with_medias\": true,\n                \"with_temporality_data\": false\n            },\n            \"visible_name\": \"Cancelado\"\n        },\n        {\n            \"id\": \"59c369576b53f325138b4571\",\n            \"color\": \"#b71b1c\",\n            \"order\": 100,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Cancelado\"\n        },\n        {\n            \"id\": \"5850dca2e22c6d9f51b00c5c\",\n            \"color\": \"#2e7d32\",\n            \"order\": 110,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Solucionado\"\n        },\n        {\n            \"id\": \"650328c7f946773c920854d2\",\n            \"color\": \"#66a5db\",\n            \"order\": 115,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Pendiente de planificar\"\n        },\n        {\n            \"id\": \"601937683dfd4806068b4568\",\n            \"color\": \"#978c8c\",\n            \"order\": 120,\n            \"typology\": {\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"visible_name\": \"Planificado en ejecución\"\n        }\n    ],\n    \"user_info\": [\n        {\n            \"available\": true,\n            \"field\": \"first_name\"\n        },\n        {\n            \"available\": true,\n            \"field\": \"last_name\"\n        },\n        {\n            \"available\": true,\n            \"field\": \"email\"\n        },\n        {\n            \"available\": true,\n            \"field\": \"phone\"\n        },\n        {\n            \"available\": false,\n            \"field\": \"secondary_phone\"\n        },\n        {\n            \"available\": true,\n            \"field\": \"twitter_nickname\"\n        },\n        {\n            \"available\": true,\n            \"field\": \"id_document\"\n        },\n        {\n            \"available\": false,\n            \"field\": \"gender\"\n        },\n        {\n            \"available\": true,\n            \"field\": \"birthday\"\n        },\n        {\n            \"available\": false,\n            \"field\": \"addresses\"\n        },\n        {\n            \"available\": true,\n            \"field\": \"address\"\n        },\n        {\n            \"available\": true,\n            \"field\": \"id_documents\"\n        }\n    ],\n    \"modules\": {\n        \"requests\": true,\n        \"requests_process\": true,\n        \"requests_comments\": true,\n        \"requests_worknotes\": true,\n        \"requests_reiterations\": true,\n        \"requests_complaints\": true,\n        \"user_evaluation\": true,\n        \"service_survey\": true,\n        \"alerts\": true,\n        \"inventory\": false,\n        \"news\": false,\n        \"backoffice_admin\": true,\n        \"app_configuration\": true,\n        \"notifications\": true,\n        \"planned_requests\": true,\n        \"planning\": true,\n        \"users\": true,\n        \"predetermined_response\": true,\n        \"predetermined_response_external_source\": true,\n        \"company_enquiry\": true,\n        \"layer\": true,\n        \"jurisdiction_element\": true,\n        \"webhook\": true,\n        \"user_guide\": true,\n        \"worklog\": true,\n        \"calendar\": true\n    },\n    \"app_urls\": {\n        \"web_url\": \"https://mapa-canary.mejoratuciudad.org/\",\n        \"google_play_manager\": \"https://play.google.com/store/apps/details?id=com.radmas.iycp.production\",\n        \"google_play_citizens\": \"https://play.google.com/store/apps/details?id=com.radmas.iyc.alcobendas\",\n        \"app_store\": \"https://apps.apple.com/app/id1309506191\"\n    }\n}"
                },
                {
                  "id": "0fea5f15-b099-40d5-a9db-83e5e3fce1a0",
                  "name": "Jurisdiction Detail Error app_key",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdictions/{{jurisdiction_id}}?app_key={{app_key}}6",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "jurisdictions",
                        "{{jurisdiction_id}}"
                      ],
                      "query": [
                        {
                          "key": "app_key",
                          "value": "12345556",
                          "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": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 400,\n        \"description\": \"app_key does not exist or is not allowed\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Jurisdiction Elements List By Jurisdiction",
              "id": "522ff847-440e-4b00-b788-e3a9a4164923",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-elements?app_element={{app_element_id}}&type=all",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "jurisdiction",
                    "{{jurisdiction_id}}",
                    "jurisdiction-elements"
                  ],
                  "query": [
                    {
                      "key": "app_element",
                      "value": "{{app_element_id}}",
                      "description": "String. [optional] (null). ID opcional de AppElement para filtro por configuracion."
                    },
                    {
                      "key": "type",
                      "value": "all",
                      "description": "string. [optional]. Admite los valores \"all\" \"city\" y \"building\". Por defecto \"all\"."
                    }
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "",
                      "description": "String. [required]. ID funcional de la jurisdiccion."
                    }
                  ]
                },
                "description": "**Request param**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_id | String | \\[requerido\\]  <br>ID funcional de la jurisdiccion (ejemplo MTC). |\n| type | String | \\[opcional\\]  <br>Admite los valores \"all\" \"city\" y \"building\" (por defecto \"all\"). |\n| app_element | String | \\[opcional\\]  <br>ID opcional de AppElement para filtro por configuracion. |\n\nEste 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`."
              },
              "response": [
                {
                  "id": "35713daf-d1f0-43ae-a13c-3e1b1d240cc1",
                  "name": "Response OK Jurisdiction Element List By Jurisdiction",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-elements?type=all",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "jurisdiction",
                        "{{jurisdiction_id}}",
                        "jurisdiction-elements"
                      ],
                      "query": [
                        {
                          "key": "type",
                          "value": "all"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5d9ee7bcde2efef4018b4569\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"64cb9cebaddc18074d0e4193\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"64cb9e98addc18074d0e4195\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"64cb9edb24ab2d777a0ca313\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"64df24ef07a26e434d01f893\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"667031dac97737f437009da6\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png\",\n        \"id\": \"5c9b55579650e67d42985e80\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas\",\n        \"is_main\": true\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png\",\n        \"id\": \"65c27852911e73e22d02f413\",\n        \"name\": \"prueba\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba S y G\",\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/667b22cc072a7815151459.png\",\n        \"id\": \"65ea13f79f912150be097e22\",\n        \"name\": \"prueba_copy\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba_copy\",\n        \"position\": {\n            \"address_string\": \"7CMF9HRJ+C9\",\n            \"lat\": 23.391075815349,\n            \"long\": -10.419070926826,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png\",\n        \"id\": \"65ea172b751882bcdd08f9c2\",\n        \"name\": \"prueba_copy_copy\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba_copy_copy\",\n        \"position\": {\n            \"lat\": 23.391075815349,\n            \"long\": -10.419070926826,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png\",\n        \"id\": \"65ea1744b312b50dec003e12\",\n        \"name\": \"prueba_copy_copy_copy\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba_copy_copy_copy\",\n        \"position\": {\n            \"lat\": 23.391075815349,\n            \"long\": -10.419070926826,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/661016786f01f245765540.png\",\n        \"id\": \"66102b1ef3a7a40d9e07dcb2\",\n        \"name\": \"prueba 66102b1e0f1ce0.98388817\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba 66102b1e0f1d69.43217378\",\n        \"position\": {\n            \"address_string\": \"C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.5417604,\n            \"long\": -3.6488851,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png\",\n        \"id\": \"6622699b678cd8206600a642\",\n        \"name\": \"prueba 6622699b459009.72981868\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba 6622699b459072.064512034\",\n        \"position\": {\n            \"address_string\": \"C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain4\",\n            \"lat\": 40.5417604,\n            \"long\": -3.6488851,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a753e68c729442026.png\",\n        \"id\": \"662274499a752fef9c0d3fd2\",\n        \"name\": \"prueba_copy 66227449a7bc29.71828875\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba_copy 66227449a7bc97.76088342\",\n        \"position\": {\n            \"address_string\": \"7CMF9HRJ+C9\",\n            \"lat\": 23.391075815349,\n            \"long\": -10.419070926826,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/665f158dd7a2f696134412.png\",\n        \"id\": \"6622747196f67a49700e3773\",\n        \"name\": \"PruebaRed\",\n        \"type\": \"city\",\n        \"visible_name\": \"Prueba Redireccion\",\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758676e710fb864221721.png\",\n        \"id\": \"663d17ac964ad414110d9154\",\n        \"name\": \"prueba - rutas\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba - rutas\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"663d50f27849b9e1d40dac0a\",\n        \"name\": \"prueba-redirect\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba-redirect\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"663d519e5827e05956040922\",\n        \"name\": \"prueba-redirect 663d519e05b6c2.37692593\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba-redirect 663d519e05b745.04573792\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7f8c00d8bf483509589.png\",\n        \"id\": \"66a7f8c05adb7591e20f34a3\",\n        \"name\": \"dsfdsf\",\n        \"type\": \"city\",\n        \"visible_name\": \"sdfdsf\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7fbae44082397700839.png\",\n        \"id\": \"66a7fbaece27438232094fb3\",\n        \"name\": \"sdfsdffds\",\n        \"type\": \"city\",\n        \"visible_name\": \"sfdfsdf\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83602dcee520229024.png\",\n        \"id\": \"66ab8360fe792921890d0b93\",\n        \"name\": \"xczxczxc\",\n        \"type\": \"city\",\n        \"visible_name\": \"zxczxc\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83991030e165490436.png\",\n        \"id\": \"66ab8399fe792921890d0b95\",\n        \"name\": \"asdsad\",\n        \"type\": \"city\",\n        \"visible_name\": \"sdasd\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [\n            -3.6383701014039476,\n            40.53726099591145,\n            -3.636267202837841,\n            40.53737383778608\n        ],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab8630cd7f2176146195.png\",\n        \"id\": \"66ab8630a7ae91e5dd0513ad\",\n        \"name\": \"dasdasd\",\n        \"type\": \"city\",\n        \"visible_name\": \"asdasdads\",\n        \"position\": {\n            \"address_string\": \"Alcobendas, Madrid, Spain\",\n            \"lat\": 40.5372512,\n            \"long\": -3.6372245,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66feab42f3863925866863.png\",\n        \"id\": \"66acd7c67dcac6466406e973\",\n        \"name\": \"prueba copy21\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba48\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66d8ab81aded9310723592.png\",\n        \"id\": \"66d8aaac847ce6c01b051c6a\",\n        \"name\": \"Pruebas_00\",\n        \"type\": \"city\",\n        \"visible_name\": \"Subproyecto de Prueba 00\",\n        \"position\": {\n            \"address_string\": \"Av. de la Zaporra, 30, 28108 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.536950952219,\n            \"long\": -3.6375723972414,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"66ec8a415944e6a1d70d294a\",\n        \"name\": \"sdfsdf\",\n        \"type\": \"city\",\n        \"visible_name\": \"sdfsdf\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e93a7fca30a7b0d7e04\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e94a7fca30a7b0d7e0c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e94a7fca30a7b0d7e0d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e94a7fca30a7b0d7e0e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e94a7fca30a7b0d7e0f\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e94a7fca30a7b0d7e11\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n        \"id\": \"66f55e93a7fca30a7b0d7e03\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 2\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604\",\n        \"position\": {\n            \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.537075706835,\n            \"long\": -3.6352928421438,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065d6\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065de\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065df\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065e0\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065e1\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55e9cfc8304ec890065e3\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"id\": \"66f55e9cfc8304ec890065d5\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 66f55e9c25b230.62445164\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 66f55e9c25b292.93160889\",\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e13\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e1b\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e1c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e1d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e1e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"66f55eb3a7fca30a7b0d7e20\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"id\": \"66f55eb3a7fca30a7b0d7e12\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 66f55eb3782408.06642050\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 66f55eb3782462.71960258\",\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66fd515dd2918569942317.png\",\n        \"id\": \"66fd515e402343afa9009794\",\n        \"name\": \"AlcobendasTest\",\n        \"type\": \"city\",\n        \"visible_name\": \"AlcobendasTest\",\n        \"position\": {\n            \"address_string\": \"Av. de Peñalara, 14, 28108 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.534024499598,\n            \"long\": -3.6633100275929,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"66fd51c6768fcce869009695\",\n        \"name\": \"TestOne\",\n        \"type\": \"building\",\n        \"visible_name\": \"TestOne\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"66fd6717b2e794c2750311ef\",\n        \"name\": \"sadas\",\n        \"type\": \"building\",\n        \"visible_name\": \"dsds\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"66fe916a7ecd831d99057fae\",\n        \"name\": \"fdgdfgg\",\n        \"type\": \"city\",\n        \"visible_name\": \"sadasdsf\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/663d17acab642804466040.png\",\n        \"id\": \"66febaa95704247b9101f8d4\",\n        \"name\": \"prueba - rutas 66febaa9e601d7.81700930\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba - rutas 66febaa9e60247.16727571\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": true,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6707f0f2a56ab960053749.png\",\n        \"id\": \"6707cc6602f036033f087a1d\",\n        \"name\": \"Documentación 2\",\n        \"type\": \"building\",\n        \"visible_name\": \"Prueba Documentación 2\",\n        \"position\": {\n            \"address_string\": \"C. de Embajadores, 77, Arganzuela, 28012 Madrid, Spain\",\n            \"lat\": 40.402644829153,\n            \"long\": -3.7004203901125,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a755\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a75d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a75e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a75f\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a760\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"670802e62f9d4a71cd06a762\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"id\": \"670802e62f9d4a71cd06a754\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 670802e6be8658.12404683\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 670802e6be86b5.23732963\",\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc2ffc05a02a10aeb01\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc2ffc05a02a10aeb09\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc2ffc05a02a10aeb0a\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc2ffc05a02a10aeb0b\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc3ffc05a02a10aeb0c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67096bc3ffc05a02a10aeb0e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"id\": \"67096bc2ffc05a02a10aeb00\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 67096bc2dbe5c3.49134378\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 67096bc2dbe626.22009007\",\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"67478f9898e9bea6e70a90b8\",\n        \"name\": \"sasdda\",\n        \"type\": \"city\",\n        \"visible_name\": \"pruebas\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/675947afec6a2469197916.png\",\n        \"id\": \"675947b0f044affc53005ba8\",\n        \"name\": \"Prueba QA\",\n        \"type\": \"building\",\n        \"visible_name\": \"Prueba QA\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678832b021303145868051.png\",\n        \"id\": \"678832b0deaa23504a049c36\",\n        \"name\": \"bvnbvn\",\n        \"type\": \"building\",\n        \"visible_name\": \"vnbn\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"6788340c943dcdca3d0b7994\",\n        \"name\": \"xcxcv\",\n        \"type\": \"building\",\n        \"visible_name\": \"xcvx\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073c94\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073c9c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073c9d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073c9e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073c9f\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834b8890a3779c2073ca1\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n        \"id\": \"678834b8890a3779c2073c93\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 66f55e93e28df4.433383312 678834b8c3dcd9.23960367\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 678834b8c3dd25.76718740\",\n        \"position\": {\n            \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.537075706835,\n            \"long\": -3.6352928421438,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a4843\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a484b\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a484c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a484d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a484e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678834e03ccfc90eab0a4850\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n        \"id\": \"678834e03ccfc90eab0a4842\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 678834e037e4b0.37687067\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 678834e037e531.71607018\",\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"6788372e67c09c2f2f0909c3\",\n        \"name\": \"xzcxzc\",\n        \"type\": \"building\",\n        \"visible_name\": \"xczxczxcxz\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4af3\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4afb\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4afc\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4afd\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4afe\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"678837b72bdfe4fd820c4b00\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.694952001222114,\n            40.50117283,\n            -3.55027416,\n            40.58886136999999\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n        \"id\": \"678837b72bdfe4fd820c4af2\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 66f55e93e28df4.433383312 678837b7995d51.94642502\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 678837b7995da7.96927208\",\n        \"position\": {\n            \"address_string\": \"C. Clz8 G17 María Teresa, 10, 28108 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.537085389425,\n            \"long\": -3.634876818277,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b04\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b0c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b0d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b0e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b0f\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fa592bdfe4fd820c4b11\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n        \"id\": \"6788fa592bdfe4fd820c4b03\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 2 6788fa592cb379.01808297\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fa592cb3b6.23533051\",\n        \"position\": {\n            \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.537075706835,\n            \"long\": -3.6352928421438,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab5deaa23504a049c38\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab5deaa23504a049c40\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab5deaa23504a049c41\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab5deaa23504a049c42\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab6deaa23504a049c43\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fab6deaa23504a049c45\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n        \"id\": \"6788fab5deaa23504a049c37\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 2 6788fab5d845e1.14038314\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fab5d84645.20456436\",\n        \"position\": {\n            \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.537075706835,\n            \"long\": -3.6352928421438,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909c5\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909cd\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909ce\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909cf\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909d0\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe6867c09c2f2f0909d2\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n        \"id\": \"6788fe6867c09c2f2f0909c4\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 2 6788fe686b90d8.11238269\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fe686b9136.06999346\",\n        \"position\": {\n            \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.537075706835,\n            \"long\": -3.6352928421438,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a755015855\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a75501585d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a75501585e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletass\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a75501585f\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a755015860\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788fe7fe05c80a755015862\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png\",\n        \"id\": \"6788fe7fe05c80a755015854\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 2 6788fe7f6fa3d3.89895977\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 66f55e93e28e50.95622604 6788fe7f6fa465.61898122\",\n        \"position\": {\n            \"address_string\": \"C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.537075706835,\n            \"long\": -3.6352928421438,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1b93\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1b9b\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1b9c\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1b9d\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1b9e\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"6788feb7f9371c00d10b1ba0\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n        \"id\": \"6788feb7f9371c00d10b1b92\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendass 6788feb77346e1.9556351oo\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 6788feb7734735.49508202\",\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"6788ff26890a3779c2073ca7\",\n        \"name\": \"vbcb\",\n        \"type\": \"building\",\n        \"visible_name\": \"bcvbcv\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"6788ff3df9371c00d10b1ba3\",\n        \"name\": \"zxczxcxz\",\n        \"type\": \"building\",\n        \"visible_name\": \"xcxzcxz\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"678abbbde8f9deafd60f708e\",\n        \"name\": \"fdgdfgdfg\",\n        \"type\": \"city\",\n        \"visible_name\": \"fgdfg\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678e5cd089f0c939082671.png\",\n        \"id\": \"678e5cd054203c217a055dc6\",\n        \"name\": \"nestor\",\n        \"type\": \"building\",\n        \"visible_name\": \"testNestor\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b47abce50676616067.png\",\n        \"id\": \"67b4b47b42839b62430b8483\",\n        \"name\": \"jurisdictionElement prueba\",\n        \"type\": \"building\",\n        \"visible_name\": \"prueba jurisdictionElement\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b51484af1723070026.png\",\n        \"id\": \"67b4b51572ed11bc700c2824\",\n        \"name\": \"prueba 1\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba 1\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [\n            -3.6664793853892252,\n            40.531531171052336,\n            -3.6064955047159155,\n            40.56840696769418\n        ],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67e890bb58e39372179361.png\",\n        \"id\": \"67c6f7e7af404fd6bc04f153\",\n        \"name\": \"Alcobendas 1 subproyecto\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 1 subproyecto\",\n        \"position\": {\n            \"address_string\": \"P.º de la Chopera, 2, 28100 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.5375258,\n            \"long\": -3.6371678,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"67d197cde42d705904084ce3\",\n        \"name\": \"preuab2\",\n        \"type\": \"city\",\n        \"visible_name\": \"pruebaaaa\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"67d19967a06bdf23380a9a76\",\n        \"name\": \"prueba1\",\n        \"type\": \"city\",\n        \"visible_name\": \"crack\",\n        \"position\": {\n            \"address_string\": \"canino Canterac Park, C. Canterac, 28B, 47013 Valladolid, Spain\",\n            \"lat\": 41.638658052263,\n            \"long\": -4.7141842143906,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"67d42f3d0f0b22f66907dbec\",\n        \"name\": \"prueba3\",\n        \"type\": \"building\",\n        \"visible_name\": \"dasdasdasd\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"67d4549cc0c8e0cbca03a8f3\",\n        \"name\": \"joseprueba\",\n        \"type\": \"building\",\n        \"visible_name\": \"jose\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67d455457febe717149554.png\",\n        \"id\": \"67d45545a906d3ff900946b5\",\n        \"name\": \"crackfut\",\n        \"type\": \"building\",\n        \"visible_name\": \"crackmes\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34e3\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34eb\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\",\n                \"name\": \"Aparcapatinetes\",\n                \"description\": \"Aparcapatinetes\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34ec\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcabicicletas\",\n                \"level\": 8,\n                \"map_layer_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\",\n                \"name\": \"Aparcabicicletas\",\n                \"description\": \"Aparcabicicletas\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\",\n                \"mapLayerIcon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34ed\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcamientos_pmr\",\n                \"name\": \"Aparcamientos (PMR)\",\n                \"description\": \"Aparcamientos (PMR)\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34ee\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_puntos_recarga\",\n                \"name\": \"Puntos de Recarga\",\n                \"description\": \"Puntos de Recarga\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"POI\"\n            },\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"67e7425479962014f00e34f0\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"buildings:alcobendas_poi_aparcapatinetes\",\n                \"name\": \"MAINTENANCE PRUEBA\",\n                \"description\": \"MAINTENANCE PRUEBA\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"MAINTENANCE ASSET\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/689afb53e097c133825380.png\",\n        \"id\": \"67e7425479962014f00e34e2\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"oij\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"barrio_es_t\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5ea6af91eaa11bba058b45d5\",\n                        \"question\": \"Barrio\",\n                        \"question_translations\": {\n                            \"es\": \"Barrio\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"barrio\",\n                                \"color\": \"#000000\",\n                                \"id\": \"barrio\"\n                            },\n                            {\n                                \"name\": \"localización\",\n                                \"color\": \"#000000\",\n                                \"id\": \"localización\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Barrio\",\n                    \"default_value\": \"\"\n                },\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"email\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67b7379e336c4a5e470bb672\",\n                        \"question\": \"Email\",\n                        \"question_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"Email\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"org.alcobendas 67e74254a71995.25767502\",\n        \"type\": \"building\",\n        \"visible_name\": \"Alcobendas 67e74254a719f4.11715944\",\n        \"is_main\": true\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"id\": \"67e7467679962014f00e34f3\",\n        \"name\": \"Alcobendas 1 subproyecto 67e74676ee0f33.56206097\",\n        \"type\": \"city\",\n        \"visible_name\": \"Alcobendas 1 subproyecto 67e74676ee0f91.76578534\",\n        \"position\": {\n            \"address_string\": \"P.º de la Chopera, 2, 28100 Alcobendas, Madrid, Spain\",\n            \"lat\": 40.5375258,\n            \"long\": -3.6371678,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67f6c2cd32a22461808825.png\",\n        \"id\": \"67f6c29287bcd0a4720254ca\",\n        \"name\": \"QA Externo\",\n        \"type\": \"building\",\n        \"visible_name\": \"QA\",\n        \"position\": {\n            \"address_string\": \"Av. de los Montes de Oca, 14, 28703 San Sebastián de los Reyes, Madrid, Spain\",\n            \"lat\": 40.551773662072,\n            \"long\": -3.6149869900721,\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [\n            -3.6364172109596353,\n            40.53630460226685,\n            -3.6354953216164216,\n            40.5367605591301\n        ],\n        \"guided_module\": false,\n        \"id\": \"68a89596da168ede230eae43\",\n        \"name\": \"prueba palomino\",\n        \"type\": \"building\",\n        \"visible_name\": \"prueba palomino\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [\n            -3.636484806398722,\n            40.5361976274601,\n            -3.6349743395421803,\n            40.53675343031418\n        ],\n        \"guided_module\": false,\n        \"id\": \"68a8d218e05a6efce8071d84\",\n        \"name\": \"palominoo\",\n        \"type\": \"city\",\n        \"visible_name\": \"palomino\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [\n            -3.6264635364355704,\n            40.54572226159695,\n            -3.6256815675974927,\n            40.54624886263457\n        ],\n        \"guided_module\": false,\n        \"id\": \"68dd31d10cc6fbfdba0e4973\",\n        \"name\": \"prueba_principal\",\n        \"type\": \"city\",\n        \"visible_name\": \"principal de prueba\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [\n            -3.6286929719797625,\n            40.5437731040285,\n            -3.6280609025671957,\n            40.54414322936694\n        ],\n        \"guided_module\": false,\n        \"id\": \"68dd339197d82fed2001cc33\",\n        \"name\": \"prueba_#\",\n        \"type\": \"city\",\n        \"visible_name\": \"prueba\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    },\n    {\n        \"map_layers\": [],\n        \"extent\": [\n            -3.633987562442894,\n            40.536512105867445,\n            -3.6329365753912812,\n            40.53708537841831\n        ],\n        \"guided_module\": false,\n        \"id\": \"68dd34790a583c63c9026a84\",\n        \"name\": \"para_otra_prueba\",\n        \"type\": \"city\",\n        \"visible_name\": \"para otra pueba\",\n        \"position\": {\n            \"location_additional_data\": []\n        },\n        \"is_main\": false\n    }\n]"
                },
                {
                  "id": "64c69e2f-6cde-4a61-af4f-42ce6ac2c9b3",
                  "name": "Response Error Invalid app_element",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-elements?app_element=65f1e0b6f6a2a8d1c1a9a22&type=all",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "jurisdiction",
                        "{{jurisdiction_id}}",
                        "jurisdiction-elements"
                      ],
                      "query": [
                        {
                          "key": "app_element",
                          "value": "65f1e0b6f6a2a8d1c1a9a22"
                        },
                        {
                          "key": "type",
                          "value": "all"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 400,\n    \"description\": \"Parameter \\\"app_element\\\" of value \\\"65f1e0b6f6a2a8d1c1a9a22\\\" violated a constraint \\\"Ids are not valid\\\"\"\n}"
                },
                {
                  "id": "698eb1f4-d043-4ae8-b451-88efea81160e",
                  "name": "Response Error Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-elements?type=all",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"jurisdiction_id was not found\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Jurisdiction Elements By Jurisdiction Mongo Id (Deprecated)",
              "id": "fbce5878-00cc-451e-8ec8-cc7276ecaad2",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "GET",
                "header": [
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "description": "String. [optional]. Client identifier when mandatory_client_header=true.",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_mongo_id}}/jurisdictionElements",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "jurisdiction",
                    "{{jurisdiction_mongo_id}}",
                    "jurisdictionElements"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_mongo_id",
                      "value": "",
                      "description": "String. [required]. MongoDB ObjectId of the jurisdiction."
                    }
                  ]
                },
                "description": "**Description**\n\nDeprecated 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.\n\n**Request Params**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_mongo_id | String | \\[required\\]. MongoDB ObjectId de la jurisdiccion. |"
              },
              "response": [
                {
                  "id": "7cbeb73f-e4d9-4403-a0da-340e4600f615",
                  "name": "Response OK Deprecated Jurisdiction Elements",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_mongo_id}}/jurisdictionElements",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "jurisdiction",
                        "{{jurisdiction_mongo_id}}",
                        "jurisdictionElements"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"id\": \"65f1e0b6f6a2a8d1c1a9aaaa\",\n    \"type\": \"district\"\n  }\n]"
                },
                {
                  "id": "38a3429d-14a1-4af2-a9dd-2ccc8660c650",
                  "name": "Response Error Not Found Deprecated Jurisdiction Elements",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_mongo_id}}/jurisdictionElements",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "jurisdiction",
                        "{{jurisdiction_mongo_id}}",
                        "jurisdictionElements"
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"code\": 404,\n    \"description\": \"jurisdiction_mongo_id was not found\"\n  }\n]"
                }
              ]
            },
            {
              "name": "Jurisdiction Element By Lat And Lng",
              "id": "374aba8b-cab4-4910-9729-784977d04996",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-element?lat={{latitude}}&lng={{longitude}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "jurisdiction",
                    "{{jurisdiction_id}}",
                    "jurisdiction-element"
                  ],
                  "query": [
                    {
                      "key": "lat",
                      "value": "{{latitude}}",
                      "description": "Float. [required]. Latitud de la ubicación a consultar"
                    },
                    {
                      "key": "lng",
                      "value": "{{longitude}}",
                      "description": "Float. [required]. Longitud de la ubicación a consulta"
                    }
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso jurisdiction id."
                    }
                  ]
                },
                "description": "**Description**\n\nEste 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.\n\n**Request Param**\n\n| Campo | **Tipo** | **Description** |\n| --- | --- | --- |\n| 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": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-element?lat={{latitude}}&lng={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "jurisdiction",
                        "{{jurisdiction_id}}",
                        "jurisdiction-element"
                      ],
                      "query": [
                        {
                          "key": "lat",
                          "value": "{{latitude}}"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"map_layers\": [\n        {\n            \"backend\": \"OWS\",\n            \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n            \"id\": \"694939992c7a8694cb0b9a07\",\n            \"is_default\": false,\n            \"color\": \"#000000\",\n            \"internal_name\": \"buildings:custom_zones_fixtures\",\n            \"name\": \"FixtureZones\",\n            \"description\": \"Test Layer 5\",\n            \"preset\": false,\n            \"public\": true,\n            \"tags\": [],\n            \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n            \"type\": \"WORK\"\n        }\n    ],\n    \"extent\": [],\n    \"geoserver_perimeter_id\": \"custom_zones_fixtures.13\",\n    \"guided_module\": false,\n    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/icon_mock.png\",\n    \"id\": \"694939982c7a8694cb0b98b9\",\n    \"name\": \"madrid\",\n    \"type\": \"city\",\n    \"visible_name\": \"Madrid\",\n    \"is_main\": false\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-element",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"latitude or longitude not provided\"\n    }\n]"
                },
                {
                  "id": "2ee77375-6be0-484e-a70d-fa6746954e83",
                  "name": "Jurisdiction Not Found Get Jurisdiction Element By Lat And Lng",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-element?lat={{latitude}}&lng={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "jurisdiction",
                        "{{jurisdiction_id}}",
                        "jurisdiction-element"
                      ],
                      "query": [
                        {
                          "key": "lat",
                          "value": "{{latitude}}"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 404,\n        \"description\": \"jurisdiction_id was not found\"\n    }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "jurisdiction_preferences",
                    "{{jurisdiction_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso jurisdiction id."
                    }
                  ]
                },
                "description": "**Request param**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_id | String | \\[requerido\\]  <br>jurisdiction_id de mongo de la jurisdicción de la cual se desean consultar. |\n\nEste 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": "{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"id\": \"68829cebed7baf72480a1533\",\n    \"widget_buttons_ids\": []\n}"
                }
              ]
            },
            {
              "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": "{\n    \"widget_buttons_ids\": [\n        \"{{objectId}}\",\n        \"{{objectId}}\"\n    ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "jurisdiction_preferences",
                    "{{jurisdiction_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso 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.\n\nEn términos simples: el usuario personaliza qué acciones rápidas (widgets) quiere ver en su interfaz de la app, y en qué orden aparecen.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_id | String | \\[required\\]. Identificador interno de la jurisdicción |\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": "{\n    \"widget_buttons_ids\": [\n        \"6945724342852b3792050bca\",\n        \"6945724342852b3792050bcb\"\n    ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n  \"id\": \"6945713ea3a8f68c2b011555\",\n  \"widget_buttons_ids\": [\n    \"69457145a3a8f68c2b01155a\",\n    \"69457145a3a8f68c2b01155b\"\n  ]\n}"
                },
                {
                  "id": "a6bc4f32-89fd-4a6d-8612-4663a9a88039",
                  "name": "Update Preferences user not authenticated",
                  "originalRequest": {
                    "method": "PUT",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"widget_buttons_ids\": [\n        \"6945724342852b3792050bca\",\n        \"6945724342852b3792050bcb\"\n    ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"code\": 403,\n    \"description\": \"Access Denied\"\n  }\n]"
                },
                {
                  "id": "505ff7ca-0c5b-49b5-9730-fa98bc65fbc0",
                  "name": "Update Preferences user not related with jurisdiction",
                  "originalRequest": {
                    "method": "PUT",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"widget_buttons_ids\": [\n        \"6945724342852b3792050bca\",\n        \"6945724342852b3792050bcb\"\n    ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"code\": 403,\n    \"description\": \"Jurisdiction By User No Exist\"\n  }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/jurisdiction-element/service/{{service_id}}",
              "host": [
                "{{publicBaseUrl}}"
              ],
              "path": [
                "jurisdiction-element",
                "service",
                "{{service_id}}"
              ],
              "variable": [
                {
                  "key": "service_id",
                  "value": "",
                  "description": "String. [required]. ID del recurso 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.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\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": "{{publicBaseUrl}}/jurisdiction-element/service/{{service_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "[\n  \"5c9b55579650e67d42985e80\",\n  \"5c9b55579650e67d42985e81\",\n  \"5c9b55579650e67d42985e82\"\n]"
            },
            {
              "id": "1eab203a-3ec2-45d8-955b-5f02b4f64c3b",
              "name": "List JurisdictionElements By Service without results",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/jurisdiction-element/service/{{service_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "{{publicBaseUrl}}/jurisdiction-element/service/{{service_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "[\n  {\n    \"code\": 404,\n    \"description\": \"Object not found\"\n  }\n]"
            }
          ]
        }
      ],
      "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": "{{clientId}}",
                    "description": "Identificador del cliente Open010. Requerido para este endpoint.",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "description": "Opcional. Valor recomendado para respuesta JSON.",
                    "type": "text"
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token_public}}",
                    "description": "Opcional. Incluir solo para pruebas en contexto autenticado.",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/legal-terms",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "legal-terms"
                  ]
                },
                "description": "Endpoint que permite obtener los términos legales asociados al cliente."
              },
              "response": [
                {
                  "id": "16de9c38-7ba9-4d65-864a-f416b57aac70",
                  "name": "Get LegalTerms OK",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "Identificador del cliente Open010. Requerido para este endpoint.",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "description": "Opcional. Valor recomendado para respuesta JSON.",
                        "type": "text"
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer {{token_public}}",
                        "description": "Opcional. Incluir solo para pruebas en contexto autenticado.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/legal-terms",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "legal-terms"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": \"65f1e0b6f6a2a8d1c1a9a888\",\n    \"termsOfUse\": {\n        \"date\": \"2026-01-10T00:00:00+00:00\",\n        \"type\": \"html\",\n        \"content\": \"<p>...</p>\",\n        \"version\": 4\n    },\n    \"legal_text\": {\n        \"terms_of_use\": \"https://<host>/public-api/legal-text.json?legal_policy_type=terms_of_use&legal_terms_id=65f1e0b6f6a2a8d1c1a9a888\"\n    }\n}"
                },
                {
                  "id": "25aabf0e-0c96-43ba-adfe-797901f800a9",
                  "name": "Get LegalTerms Client Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "Identificador del cliente Open010. Requerido para este endpoint.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/legal-terms",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"Client not found\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Get LegalTerms By Jurisdiction",
              "id": "315d79f9-818a-4e55-9662-a319b3c2a5e6",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "description": "Identificador del cliente. Requerido solo si mandatory_client_header=true."
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token_public}}",
                    "description": "Opcional. No requerido para ejecutar este endpoint."
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/legal-terms-by-jurisdiction?jurisdiction_id={{jurisdiction_id}}&type=citizen",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "legal-terms-by-jurisdiction"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [required]. ID funcional de la jurisdicción."
                    },
                    {
                      "key": "type",
                      "value": "citizen",
                      "description": "String. [required]. Tipo de aplicación (validado por ValidateAppTypeConstraint)."
                    }
                  ]
                },
                "description": "## Descripcion\n\nObtiene los textos legales (URLs) configurados para una jurisdicción y tipo de aplicación.\n\n## Autenticacion\n\n- `X-CLIENT-ID`: `{{clientId}}` (requerido solo si `mandatory_client_header=true`).\n- `Authorization`: `Bearer {{token_public}}` (opcional; no requerido para este endpoint).\n\n## Response\n\n- `200 OK`: Devuelve el objeto `legal_text` con URLs a cada política disponible."
              },
              "response": [
                {
                  "id": "86f83dc9-d8b0-429a-8d3b-285ca34d7c6e",
                  "name": "Get LegalTerms By Jurisdiction OK",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/legal-terms-by-jurisdiction?jurisdiction_id={{jurisdiction_id}}&type=citizen",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "legal-terms-by-jurisdiction"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "key": "type",
                          "value": "citizen"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"legal_text\": {\n        \"privacy_policy\": \"https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=privacy_policy\",\n        \"terms_of_use\": \"https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=terms_of_use\",\n        \"cookies_policy\": \"https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=cookies_policy\"\n    }\n}"
                },
                {
                  "id": "6fe08773-a33e-4774-b764-765c7ac7c0a7",
                  "name": "Application Not Found LegalTerms By Jurisdiction",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/legal-terms-by-jurisdiction?jurisdiction_id={{jurisdiction_id}}&type=citizen",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "legal-terms-by-jurisdiction"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "key": "type",
                          "value": "citizen"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 400,\n        \"description\": \"Application was not found\"\n    }\n]"
                },
                {
                  "id": "a5e01281-2e20-44b4-9379-4de0e16c2e94",
                  "name": "Jurisdiction Not Found LegalTerms By Jurisdiction",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/legal-terms-by-jurisdiction?jurisdiction_id=unknown&type=citizen",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "legal-terms-by-jurisdiction"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "unknown"
                        },
                        {
                          "key": "type",
                          "value": "citizen"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 404,\n        \"description\": \"Object not found\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Get LegalText",
              "id": "67549128-3301-4e2c-84ec-9261d45c7a00",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/legal-text?legal_policy_type=privacy_policy&legal_terms_id={{legal_terms_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "legal-text"
                  ],
                  "query": [
                    {
                      "key": "legal_policy_type",
                      "value": "privacy_policy",
                      "description": "String. [required]. . String. Indica el tipo de documento legal a obtener. Valores válidos: privacy_policy, terms_of_use, accessibility, cookies_policy"
                    },
                    {
                      "key": "legal_terms_id",
                      "value": "{{legal_terms_id}}",
                      "description": "String. [required]. . String. El identificador único del documento de términos legales del cual se quiere extraer la política específica"
                    }
                  ]
                },
                "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": "{{publicBaseUrl}}/legal-text?legal_terms_id={{legal_terms_id}}&legal_policy_type=privacy_policy",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "legal-text"
                      ],
                      "query": [
                        {
                          "key": "legal_terms_id",
                          "value": "{{legal_terms_id}}",
                          "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": "<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>"
                },
                {
                  "id": "39defbba-23e8-4729-863b-60f87614ad9a",
                  "name": "Get LegalText Terms of Use",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/legal-text?legal_terms_id={{legal_terms_id}}&legal_policy_type=terms_of_use",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "legal-text"
                      ],
                      "query": [
                        {
                          "key": "legal_terms_id",
                          "value": "{{legal_terms_id}}",
                          "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>\n<p>Bienvenido a nuestra plataforma de participación ciudadana. Al utilizar este servicio, acepta los siguientes términos\n    y condiciones.</p>\n<h2>1. Objeto</h2>\n<p>Esta plataforma permite a los ciudadanos comunicar incidencias, sugerencias y propuestas a la administración pública.\n</p>\n<h2>2. Registro y cuenta de usuario</h2>\n<p>Para utilizar los servicios es necesario registrarse proporcionando información veraz y actualizada. El usuario es\n    responsable de mantener la confidencialidad de sus credenciales.</p>\n<h2>3. Uso aceptable</h2>\n<p>El usuario se compromete a:</p>\n<ul>\n    <li>No publicar contenido ofensivo, difamatorio o ilegal</li>\n    <li>Proporcionar información veraz en las comunicaciones</li>\n    <li>Respetar los derechos de otros usuarios</li>\n    <li>No utilizar la plataforma para fines comerciales no autorizados</li>\n</ul>\n<h2>4. Propiedad intelectual</h2>\n<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": "{{publicBaseUrl}}/legal-text?legal_terms_id={{legal_terms_id}}&legal_policy_type=accesibility",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "legal-text"
                      ],
                      "query": [
                        {
                          "key": "legal_terms_id",
                          "value": "{{legal_terms_id}}",
                          "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>\n<p>Esta plataforma está comprometida con garantizar la accesibilidad digital conforme al Real Decreto 1112/2018.</p>\n<h2>Situación de cumplimiento</h2>\n<p>Este sitio web es parcialmente conforme con el nivel AA de las Pautas WCAG 2.1 debido a las excepciones que se\n    indican a continuación.</p>\n<h2>Contenido no accesible</h2>\n<p>El contenido que se recoge a continuación no es accesible por los siguientes motivos:</p>\n<ul>\n    <li>Algunos documentos PDF antiguos pueden no ser totalmente accesibles</li>\n    <li>Ciertos vídeos pueden carecer de subtítulos</li>\n</ul>\n<h2>Preparación de la declaración</h2>\n<p>Esta declaración fue preparada el 1 de enero de 2024 y se revisa periódicamente.</p>\n<h2>Contacto</h2>\n<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": "{{publicBaseUrl}}/legal-text?legal_terms_id={{legal_terms_id}}&legal_policy_type=terms_of_use",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "legal-text"
                      ],
                      "query": [
                        {
                          "key": "legal_terms_id",
                          "value": "{{legal_terms_id}}",
                          "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>\n<p>Esta plataforma utiliza cookies para mejorar la experiencia del usuario y ofrecer servicios personalizados.</p>\n<h2>¿Qué son las cookies?</h2>\n<p>Las cookies son pequeños archivos de texto que se almacenan en su dispositivo cuando visita un sitio web. Permiten\n    recordar sus preferencias y mejorar la navegación.</p>\n<h2>Tipos de cookies que utilizamos</h2>\n<ul>\n    <li><strong>Cookies técnicas:</strong> Necesarias para el funcionamiento básico del sitio</li>\n    <li><strong>Cookies de sesión:</strong> Permiten mantener su sesión activa mientras navega</li>\n    <li><strong>Cookies analíticas:</strong> Nos ayudan a entender cómo interactúan los usuarios con la plataforma</li>\n    <li><strong>Cookies de preferencias:</strong> Recuerdan sus ajustes y configuraciones</li>\n</ul>\n<h2>Gestión de cookies</h2>\n<p>Puede configurar su navegador para rechazar cookies o para que le avise cuando se envíen. Sin embargo, algunas\n    funcionalidades del sitio pueden no estar disponibles si desactiva las cookies.</p>\n<h2>Más información</h2>\n<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": "{{publicBaseUrl}}/legal-text?legal_terms_id={{legal_terms_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "legal-text"
                      ],
                      "query": [
                        {
                          "key": "legal_terms_id",
                          "value": "{{legal_terms_id}}",
                          "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"Client not found\"\n    }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/location-additional-data?jurisdiction_element_id={{jurisdiction_element_id}}&formatted_address=GCH2+3F Madrid, Spain&lat={{latitude}}&lng={{longitude}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "location-additional-data"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_element_id",
                      "value": "{{jurisdiction_element_id}}",
                      "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": "{{latitude}}",
                      "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": "{{longitude}}",
                      "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": "{{publicBaseUrl}}/location-additional-data?jurisdiction_element_id={{jurisdiction_element_id}}&formatted_address=GCH2+3F Madrid, Spain&lat={{latitude}}&lng={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "location-additional-data"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}"
                        },
                        {
                          "key": "formatted_address",
                          "value": "GCH2+3F Madrid, Spain"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"formatted_address\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n    \"geometry\": null,\n    \"data\": [\n        {\n            \"question\": {\n                \"type\": \"text\",\n                \"active\": true,\n                \"code\": \"distrito_T\",\n                \"help_text\": \"\",\n                \"help_text_translations\": {\n                    \"es\": \"\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"id\": \"5de929ca0007544c098b4578\",\n                \"question\": \"Distrito\",\n                \"question_translations\": {\n                    \"es\": \"Distrito\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"tags\": [\n                    {\n                        \"name\": \"distrito\",\n                        \"color\": \"#000000\",\n                        \"id\": \"distrito\"\n                    }\n                ]\n            },\n            \"value\": null,\n            \"editable\": true,\n            \"response_attribute\": \"Distrito\",\n            \"required\": false,\n            \"hidden_in_form\": false,\n            \"hidden_in_detail\": false,\n            \"visibility\": \"public\"\n        }\n    ],\n    \"location\": {\n        \"lat\": 40.550750699999988,\n        \"lng\": -3.6389062000000001\n    }\n}"
                },
                {
                  "id": "ea6ee58d-ec6b-477f-8a37-67e7a31cc90a",
                  "name": "Response OK File Jurisdiction Element List Location Additional Data",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/location-additional-data?jurisdiction_element_id={{jurisdiction_element_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "location-additional-data"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{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": "{\n    \"formatted_address\": null,\n    \"geometry\": null,\n    \"data\": [\n        {\n            \"question\": {\n                \"type\": \"text\",\n                \"active\": true,\n                \"code\": \"distrito_T\",\n                \"help_text\": \"\",\n                \"help_text_translations\": {\n                    \"es\": \"\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"id\": \"5de929ca0007544c098b4578\",\n                \"question\": \"Distrito\",\n                \"question_translations\": {\n                    \"es\": \"Distrito\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"tags\": [\n                    {\n                        \"name\": \"distrito\",\n                        \"color\": \"#000000\",\n                        \"id\": \"distrito\"\n                    },\n                    {\n                        \"name\": \"localización\",\n                        \"color\": \"#000000\",\n                        \"id\": \"localización\"\n                    }\n                ]\n            },\n            \"value\": null,\n            \"editable\": true,\n            \"response_attribute\": \"Distrito\",\n            \"required\": false,\n            \"hidden_in_form\": false,\n            \"hidden_in_detail\": false,\n            \"visibility\": \"public\"\n        },\n        {\n            \"question\": {\n                \"type\": \"text\",\n                \"active\": true,\n                \"code\": \"barrio_es_t\",\n                \"help_text\": \"\",\n                \"help_text_translations\": {\n                    \"es\": \"\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"id\": \"5ea6af91eaa11bba058b45d5\",\n                \"question\": \"Barrio\",\n                \"question_translations\": {\n                    \"es\": \"Barrio\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"tags\": [\n                    {\n                        \"name\": \"barrio\",\n                        \"color\": \"#000000\",\n                        \"id\": \"barrio\"\n                    },\n                    {\n                        \"name\": \"localización\",\n                        \"color\": \"#000000\",\n                        \"id\": \"localización\"\n                    }\n                ]\n            },\n            \"value\": null,\n            \"editable\": true,\n            \"response_attribute\": \"Barrio\",\n            \"required\": false,\n            \"hidden_in_form\": false,\n            \"hidden_in_detail\": false,\n            \"visibility\": \"public\"\n        }\n    ]\n}"
                },
                {
                  "id": "26958bfa-aa51-4241-9957-a3b7ab448dcb",
                  "name": "Error Jurisdiction Element Not Valid List Location Additional Data",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/location-additional-data?jurisdiction_element_id=5c9b555796",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"error_code\": 404,\n    \"error_msg\": \"Object not found\"\n}"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/service/{{service_id}}/validate-position?jurisdiction_element_id={{jurisdiction_element_id}}&lat={{latitude}}&long={{longitude}}&level=3&projection=4326",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "service",
                    "{{service_id}}",
                    "validate-position"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_element_id",
                      "value": "{{jurisdiction_element_id}}",
                      "description": "String. [required]. ID del elemento jurisdicción contra el cual se valida la posición"
                    },
                    {
                      "key": "lat",
                      "value": "{{latitude}}",
                      "description": "Float. [required]. Latitud del punto a validar"
                    },
                    {
                      "key": "long",
                      "value": "{{longitude}}",
                      "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"
                    }
                  ],
                  "variable": [
                    {
                      "key": "service_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso service id."
                    }
                  ]
                },
                "description": "**Request param**\n\n| **Campo** | Tipo | **Descripción** |\n| --- | --- | --- |\n| service_id | String | \\[required\\] ID del servicio del que se quiere validar la posición. |\n\nEste 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": "{{publicBaseUrl}}/service/{{service_id}}/validate-position?jurisdiction_element_id={{jurisdiction_element_id}}&lat={{latitude}}&long={{longitude}}&level=3&projection=4326",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "service",
                        "{{service_id}}",
                        "validate-position"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}"
                        },
                        {
                          "key": "long",
                          "value": "{{longitude}}"
                        },
                        {
                          "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": "{\n    \"valid\": true\n}"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/nearest-geofences?lat={{latitude}}&limit={{limit}}&lng={{longitude}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "nearest-geofences"
                  ],
                  "query": [
                    {
                      "key": "lat",
                      "value": "{{latitude}}",
                      "description": "Float. [optional]. Latitud desde la cual se buscan las geocercas cercanas."
                    },
                    {
                      "key": "limit",
                      "value": "{{limit}}",
                      "description": "Int. [optional]. Número máximo de geocercas a retornar. Default: 20."
                    },
                    {
                      "key": "lng",
                      "value": "{{longitude}}",
                      "description": "Float. [optional]. Longitud desde la cual se buscan las geocercas cercanas."
                    }
                  ]
                },
                "description": "**Requiere autenticación**\n\nEste 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.\n\n**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": "{{publicBaseUrl}}/nearest-geofences?lat={{latitude}}&lng={{longitude}}&limit={{limit}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "nearest-geofences"
                      ],
                      "query": [
                        {
                          "key": "lat",
                          "value": "{{latitude}}"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}"
                        }
                      ]
                    }
                  },
                  "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": "{{publicBaseUrl}}/nearest-geofences?lat={{latitude}}&lng={{longitude}}&limit={{limit}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "nearest-geofences"
                      ],
                      "query": [
                        {
                          "key": "lat",
                          "value": "{{latitude}}"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}"
                        }
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"error_code\": 401,\n    \"error_msg\": \"Unauthorized\"\n}"
                }
              ]
            },
            {
              "name": "Get POI Detail",
              "id": "859640fe-a024-422a-a8e9-e9d67d3cfaf7",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id={{layer_id}}&projection=4326",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "poi-detail"
                  ],
                  "query": [
                    {
                      "key": "poi_id",
                      "value": "ciudadbbva_PL0_paths.1",
                      "description": "String. [required]. . String. Identificador único del POI en GeoServer. Formato típico: layerName.numericId"
                    },
                    {
                      "key": "layer_id",
                      "value": "{{layer_id}}",
                      "description": "String. [optional]. . String. ID del MapLayer (MongoDB ObjectId). Si no se proporciona, se busca automáticamente por el poi_id"
                    },
                    {
                      "key": "projection",
                      "value": "4326",
                      "description": "String. [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": "{{publicBaseUrl}}/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id={{layer_id}}&projection=4326",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{layer_id}}",
                          "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": "{\n  \"type\": \"Feature\",\n  \"id\": \"ciudadbbva_PL0_paths.1\",\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [\n      -3.6892,\n      40.4168\n    ]\n  },\n  \"properties\": {\n    \"description\": \"Área de tránsito principal\",\n    \"short_description\": \"Área principal\",\n    \"type\": \"transito\",\n    \"layer_name\": \"buildings:ciudadbbva_PL0_paths\",\n    \"layer_id\": \"5d91db6311235f7f2b8b45a2\",\n    \"level\": 0,\n    \"favorite\": false\n  },\n  \"additional_data\": [\n    {\n      \"key\": \"capacidad\",\n      \"label\": \"Capacidad máxima\",\n      \"value\": 500\n    },\n    {\n      \"key\": \"horario\",\n      \"label\": \"Horario de apertura\",\n      \"value\": \"08:00 - 22:00\"\n    }\n  ]\n}"
                },
                {
                  "id": "d79a0854-f3b6-4d0e-9589-cca201f0ae2a",
                  "name": "Get POI Detail without Layer Id",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id={{layer_id}}&projection=4326",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{layer_id}}",
                          "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": "{\n  \"type\": \"Feature\",\n  \"id\": \"ciudadbbva_PL0_paths.1\",\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [\n      -3.6892,\n      40.4168\n    ]\n  },\n  \"properties\": {\n    \"description\": \"Área de tránsito principal\",\n    \"short_description\": \"Área principal\",\n    \"type\": \"transito\",\n    \"layer_name\": \"buildings:ciudadbbva_PL0_paths\",\n    \"layer_id\": \"5d91db6311235f7f2b8b45a2\",\n    \"level\": 0,\n    \"favorite\": false\n  },\n  \"additional_data\": [\n    {\n      \"key\": \"capacidad\",\n      \"label\": \"Capacidad máxima\",\n      \"value\": 500\n    },\n    {\n      \"key\": \"horario\",\n      \"label\": \"Horario de apertura\",\n      \"value\": \"08:00 - 22:00\"\n    }\n  ]\n}"
                },
                {
                  "id": "03f9952f-b1f9-4276-95cd-c2c1dbfdb7ab",
                  "name": "Get POI Detail Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id={{layer_id}}&projection=4326",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{layer_id}}",
                          "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": "[\n  {\n    \"code\": 404,\n    \"description\": \"POI not found\"\n  }\n]"
                },
                {
                  "id": "c878cf96-12cf-4d80-9a18-db5c2266b48e",
                  "name": "Get POI Detail Layer not found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id={{layer_id}}&projection=4326",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{layer_id}}",
                          "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": "[\n  {\n    \"code\": 404,\n    \"description\": \"No MapLayers found\"\n  }\n]"
                }
              ]
            },
            {
              "name": "Get Feature Detail",
              "id": "9ebace2c-9e60-4b97-81df-2640a74d11f2",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "description": "Identificador del cliente. Requerido solo si mandatory_client_header=true."
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token_public}}",
                    "description": "Opcional. No requerido para ejecutar este endpoint."
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/geoserver/feature/{{layer_id}}/detail.json?fid=123",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "geoserver",
                    "feature",
                    "{{layer_id}}",
                    "detail.json"
                  ],
                  "query": [
                    {
                      "key": "fid",
                      "value": "123",
                      "description": "Integer. [required]. Feature ID en Geoserver"
                    }
                  ],
                  "variable": [
                    {
                      "key": "layer_id",
                      "value": "",
                      "description": "String. [required]. ID de la capa (MapLayer) en formato hexadecimal de 24 caracteres."
                    }
                  ]
                },
                "description": "## Descripcion\n\nDocumenta el endpoint `GET /public-api/geoserver/feature/{layer_id}/detail` para obtener una feature de Geoserver y sus datos adicionales públicos.\n\n## Autenticacion\n\n- `X-CLIENT-ID`: `{{clientId}}` (requerido solo si `mandatory_client_header=true`).\n- `Authorization`: `Bearer {{token_public}}` (opcional; no requerido para este endpoint).\n\n## Request Params\n\n| Campo | Descripcion |\n| --- | --- |\n| layer_id | (string) [required]. ID de la capa (MapLayer) en formato hexadecimal de 24 caracteres |\n\n## Query Params\n\n| Key | Value | Description |\n| --- | --- | --- |\n| fid | 123 | Integer. [required]. Feature ID en Geoserver |\n\n## Response\n\n- `200 OK`: Feature encontrada o `[]` cuando el `fid` no existe en la capa."
              },
              "response": [
                {
                  "id": "20a2f58a-75a3-4b41-8c15-a080849829b9",
                  "name": "200 OK - Feature detail",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "Identificador del cliente. Requerido solo si mandatory_client_header=true."
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer {{token_public}}",
                        "description": "Opcional. No requerido para ejecutar este endpoint."
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/geoserver/feature/{{layer_id}}/detail.json?fid=123",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "geoserver",
                        "feature",
                        "{{layer_id}}",
                        "detail.json"
                      ],
                      "query": [
                        {
                          "key": "fid",
                          "value": "123",
                          "description": "Integer. [required]. Feature ID en Geoserver"
                        }
                      ]
                    },
                    "description": "## Descripcion\n\nDocumenta el endpoint `GET /public-api/geoserver/feature/{layer_id}/detail` para obtener una feature de Geoserver y sus datos adicionales públicos.\n\n## Autenticacion\n\n- `X-CLIENT-ID`: `{{clientId}}` (requerido solo si `mandatory_client_header=true`).\n- `Authorization`: `Bearer {{token_public}}` (opcional; no requerido para este endpoint).\n\n## Request Params\n\n| Campo | Descripcion |\n| --- | --- |\n| layer_id | (string) [required]. ID de la capa (MapLayer) en formato hexadecimal de 24 caracteres |\n\n## Query Params\n\n| Key | Value | Description |\n| --- | --- | --- |\n| fid | 123 | Integer. [required]. Feature ID en Geoserver |\n\n## Response\n\n- `200 OK`: Feature encontrada o `[]` cuando el `fid` no existe en la capa."
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"type\": \"Feature\",\n  \"id\": \"points_of_interest.123\",\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-3.7038, 40.4168]\n  },\n  \"properties\": {\n    \"name\": \"Plaza Mayor\",\n    \"category\": \"plaza\"\n  },\n  \"additional_data\": [\n    {\n      \"question\": {\n        \"id\": \"507f1f77bcf86cd799439011\",\n        \"type\": \"text\",\n        \"question\": \"Nombre\",\n        \"code\": \"name\",\n        \"active\": true\n      },\n      \"value\": \"Plaza Mayor\",\n      \"editable\": true,\n      \"response_attribute\": \"name\",\n      \"required\": false,\n      \"hidden_in_form\": false,\n      \"hidden_in_detail\": false,\n      \"visibility\": \"public\"\n    }\n  ]\n}"
                },
                {
                  "id": "a39d3fde-fa16-43d9-9985-d815756a4769",
                  "name": "400 Bad Request - Invalid fid",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "Identificador del cliente. Requerido solo si mandatory_client_header=true."
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer {{token_public}}",
                        "description": "Opcional. No requerido para ejecutar este endpoint."
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/geoserver/feature/{{layer_id}}/detail.json?fid=abc",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "geoserver",
                        "feature",
                        "{{layer_id}}",
                        "detail.json"
                      ],
                      "query": [
                        {
                          "key": "fid",
                          "value": "abc",
                          "description": "Integer. [required]. Feature ID en Geoserver"
                        }
                      ]
                    },
                    "description": "## Descripcion\n\nDocumenta el endpoint `GET /public-api/geoserver/feature/{layer_id}/detail` para obtener una feature de Geoserver y sus datos adicionales públicos.\n\n## Autenticacion\n\n- `X-CLIENT-ID`: `{{clientId}}` (requerido solo si `mandatory_client_header=true`).\n- `Authorization`: `Bearer {{token_public}}` (opcional; no requerido para este endpoint).\n\n## Request Params\n\n| Campo | Descripcion |\n| --- | --- |\n| layer_id | (string) [required]. ID de la capa (MapLayer) en formato hexadecimal de 24 caracteres |\n\n## Query Params\n\n| Key | Value | Description |\n| --- | --- | --- |\n| fid | 123 | Integer. [required]. Feature ID en Geoserver |\n\n## Response\n\n- `200 OK`: Feature encontrada o `[]` cuando el `fid` no existe en la capa."
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "[\n  {\n    \"code\": 400,\n    \"description\": \"Parameter \\\"fid\\\" of value \\\"abc\\\" violated a constraint \\\"This value should match \\\\\\\"\\\\d+\\\\\\\".\\\"\"\n  }\n]"
                },
                {
                  "id": "0d66fd8d-5583-48c6-be9b-1216cfa75782",
                  "name": "404 Not Found - MapLayer not found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "Identificador del cliente. Requerido solo si mandatory_client_header=true."
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer {{token_public}}",
                        "description": "Opcional. No requerido para ejecutar este endpoint."
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/geoserver/feature/{{layer_id}}/detail.json?fid=123",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "geoserver",
                        "feature",
                        "{{layer_id}}",
                        "detail.json"
                      ],
                      "query": [
                        {
                          "key": "fid",
                          "value": "123",
                          "description": "Integer. [required]. Feature ID en Geoserver"
                        }
                      ]
                    },
                    "description": "## Descripcion\n\nDocumenta el endpoint `GET /public-api/geoserver/feature/{layer_id}/detail` para obtener una feature de Geoserver y sus datos adicionales públicos.\n\n## Autenticacion\n\n- `X-CLIENT-ID`: `{{clientId}}` (requerido solo si `mandatory_client_header=true`).\n- `Authorization`: `Bearer {{token_public}}` (opcional; no requerido para este endpoint).\n\n## Request Params\n\n| Campo | Descripcion |\n| --- | --- |\n| layer_id | (string) [required]. ID de la capa (MapLayer) en formato hexadecimal de 24 caracteres |\n\n## Query Params\n\n| Key | Value | Description |\n| --- | --- | --- |\n| fid | 123 | Integer. [required]. Feature ID en Geoserver |\n\n## Response\n\n- `200 OK`: Feature encontrada o `[]` cuando el `fid` no existe en la capa."
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "[\n  {\n    \"code\": 404,\n    \"description\": \"Not Found\"\n  }\n]"
                },
                {
                  "id": "ab42f5a4-8836-4f2d-a53f-c45b0580f531",
                  "name": "200 OK - Feature not found (empty array)",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "Identificador del cliente. Requerido solo si mandatory_client_header=true."
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer {{token_public}}",
                        "description": "Opcional. No requerido para ejecutar este endpoint."
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/geoserver/feature/{{layer_id}}/detail.json?fid=999999",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "geoserver",
                        "feature",
                        "{{layer_id}}",
                        "detail.json"
                      ],
                      "query": [
                        {
                          "key": "fid",
                          "value": "999999",
                          "description": "Integer. [required]. Feature ID en Geoserver"
                        }
                      ]
                    },
                    "description": "## Descripcion\n\nDocumenta el endpoint `GET /public-api/geoserver/feature/{layer_id}/detail` para obtener una feature de Geoserver y sus datos adicionales públicos.\n\n## Autenticacion\n\n- `X-CLIENT-ID`: `{{clientId}}` (requerido solo si `mandatory_client_header=true`).\n- `Authorization`: `Bearer {{token_public}}` (opcional; no requerido para este endpoint).\n\n## Request Params\n\n| Campo | Descripcion |\n| --- | --- |\n| layer_id | (string) [required]. ID de la capa (MapLayer) en formato hexadecimal de 24 caracteres |\n\n## Query Params\n\n| Key | Value | Description |\n| --- | --- | --- |\n| fid | 123 | Integer. [required]. Feature ID en Geoserver |\n\n## Response\n\n- `200 OK`: Feature encontrada o `[]` cuando el `fid` no existe en la capa."
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "[]"
                }
              ]
            },
            {
              "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": "X-CLIENT-ID",
                    "value": "{{clientId}}"
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token_public}}"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/search-point-layers.json?jurisdiction_element_id={{jurisdiction_element_id}}&highlighted_poi=true&lat={{latitude}}&layer_ids[]={{layer_ids}}&layer_names[]=buildings:ciudadbbva_PL0_paths&level=0&limit={{limit}}&lng={{longitude}}&only_favorites=false&q={{searchQuery}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "search-point-layers.json"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_element_id",
                      "value": "{{jurisdiction_element_id}}",
                      "description": "String. [required]. ID del elemento de jurisdicción (MongoDB ObjectId)."
                    },
                    {
                      "key": "highlighted_poi",
                      "value": "true",
                      "description": "Boolean. [optional]. Filtrar solo POIs destacados."
                    },
                    {
                      "key": "lat",
                      "value": "{{latitude}}",
                      "description": "Float. [optional]. Latitud para ordenar por proximidad."
                    },
                    {
                      "key": "layer_ids[]",
                      "value": "{{layer_ids}}",
                      "description": "Array. [optional]. IDs de MapLayer (MongoDB ObjectId). Tiene prioridad sobre layer_names[]."
                    },
                    {
                      "key": "layer_names[]",
                      "value": "buildings:ciudadbbva_PL0_paths",
                      "description": "Array. [optional]. Nombres internos de capas a consultar."
                    },
                    {
                      "key": "level",
                      "value": "0",
                      "description": "Integer. [optional]. Nivel/planta del edificio (0, 1, 2...)."
                    },
                    {
                      "key": "limit",
                      "value": "{{limit}}",
                      "description": "Integer. [optional] (15). Número máximo de resultados."
                    },
                    {
                      "key": "lng",
                      "value": "{{longitude}}",
                      "description": "Float. [optional]. Longitud para ordenar por proximidad."
                    },
                    {
                      "key": "only_favorites",
                      "value": "false",
                      "description": "Boolean. [optional]. Filtrar solo POIs favoritos (requiere usuario autenticado)."
                    },
                    {
                      "key": "q",
                      "value": "{{searchQuery}}",
                      "description": "String. [optional]. Texto para filtrar POIs por nombre o descripción."
                    }
                  ]
                },
                "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.\n\n## Autenticación\n\n- `X-CLIENT-ID`: `{{clientId}}` (obligatorio solo cuando `mandatory_client_header=true`).\n- `Authorization`: `Bearer {{token_public}}` (opcional; requerido para aplicar `only_favorites` por usuario autenticado).\n\n## Responses\n\n- `200 OK`: retorna un `FeatureCollection` con `features`, `totalFeatures`, `numberMatched` y `numberReturned`.\n- `200 OK` (caso adicional): cuando `only_favorites=true` y el usuario no tiene favoritos, retorna `[]`.\n- `400 Bad Request`: falta `jurisdiction_element_id` o hay parámetros inválidos.\n- `404 Not Found`: error funcional del servicio de capas (sin capas válidas).\n\nNota: 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.\n\nNo se documentan errores `5XX`."
              },
              "response": [
                {
                  "id": "7f162f8b-71bb-475b-8be7-220f5f98fccd",
                  "name": "Search Points From Layer OK",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}"
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer {{token_public}}"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/search-point-layers.json?jurisdiction_element_id={{jurisdiction_element_id}}&layer_names[]=buildings:ciudadbbva_PL0_paths&layer_ids[]={{layer_ids}}&level=0&lat={{latitude}}&lng={{longitude}}&q={{searchQuery}}&limit={{limit}}&highlighted_poi=true&only_favorites=false",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "search-point-layers.json"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}",
                          "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": "{{layer_ids}}",
                          "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": "{{latitude}}",
                          "description": "[optional]. Float. Latitud para ordenar por proximidad"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}",
                          "description": "[optional]. Float. Longitud para ordenar por proximidad"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}",
                          "description": "[optional]. String. Texto de búsqueda para filtrar POIs por nombre/descripción"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}",
                          "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": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"id\": \"ciudadbbva_PL0_paths.1\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [\n          -3.6892,\n          40.4168\n        ]\n      },\n      \"properties\": {\n        \"description\": \"Sala de reuniones A\",\n        \"short_description\": \"Sala A\",\n        \"type\": \"meeting_room\",\n        \"subtype\": \"small\",\n        \"layer_name\": \"buildings:ciudadbbva_PL0_paths\",\n        \"layer_id\": \"5d91db6311235f7f2b8b45a2\",\n        \"level\": 0,\n        \"favorite\": false,\n        \"distance\": 125.5\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"id\": \"ciudadbbva_PL0_paths.2\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [\n          -3.6895,\n          40.417\n        ]\n      },\n      \"properties\": {\n        \"description\": \"Cafetería principal\",\n        \"short_description\": \"Cafetería\",\n        \"type\": \"restaurant\",\n        \"layer_name\": \"buildings:ciudadbbva_PL0_paths\",\n        \"layer_id\": \"5d91db6311235f7f2b8b45a2\",\n        \"level\": 0,\n        \"favorite\": true,\n        \"distance\": 230.2\n      }\n    }\n  ],\n  \"totalFeatures\": 2,\n  \"numberMatched\": 2,\n  \"numberReturned\": 2\n}"
                },
                {
                  "id": "9c58f592-1f58-4f62-bbd9-3fb3c7ce4a33",
                  "name": "Search Points From Layer Favorites Empty",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}"
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer {{token_public}}"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/search-point-layers.json?jurisdiction_element_id={{jurisdiction_element_id}}&layer_names[]=buildings:ciudadbbva_PL0_paths&layer_ids[]={{layer_ids}}&level=0&lat={{latitude}}&lng={{longitude}}&q={{searchQuery}}&limit={{limit}}&highlighted_poi=true&only_favorites=true",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "search-point-layers.json"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}",
                          "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."
                        },
                        {
                          "key": "layer_ids[]",
                          "value": "{{layer_ids}}",
                          "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": "{{latitude}}",
                          "description": "[optional]. Float. Latitud para ordenar por proximidad"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}",
                          "description": "[optional]. Float. Longitud para ordenar por proximidad"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}",
                          "description": "[optional]. String. Texto de búsqueda para filtrar POIs por nombre/descripción"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}",
                          "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": "true",
                          "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": "[]"
                },
                {
                  "id": "d58b483c-7b1a-4a39-835b-1de7a67a93f8",
                  "name": "Search Points From Layer Map Layer not found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}"
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer {{token_public}}"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/search-point-layers.json?jurisdiction_element_id={{jurisdiction_element_id}}&layer_names[]=buildings:ciudadbbva_PL0_paths&layer_ids[]={{layer_ids}}&level=0&lat={{latitude}}&lng={{longitude}}&q={{searchQuery}}&limit={{limit}}&highlighted_poi=true&only_favorites=false",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "search-point-layers.json"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}",
                          "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": "{{layer_ids}}",
                          "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": "{{latitude}}",
                          "description": "[optional]. Float. Latitud para ordenar por proximidad"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}",
                          "description": "[optional]. Float. Longitud para ordenar por proximidad"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}",
                          "description": "[optional]. String. Texto de búsqueda para filtrar POIs por nombre/descripción"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}",
                          "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": "[\n  {\n    \"code\": 404,\n    \"description\": \"No Map Layers Found\"\n  }\n]"
                },
                {
                  "id": "acc742ab-2348-45a6-bb52-97da8bac98ba",
                  "name": "Search Points From Layer Invalid JurisdictionElement",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}"
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer {{token_public}}"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/search-point-layers.json?layer_names[]=buildings:ciudadbbva_PL0_paths&layer_ids[]={{layer_ids}}&level=0&lat={{latitude}}&lng={{longitude}}&q={{searchQuery}}&limit={{limit}}&highlighted_poi=true&only_favorites=false",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{layer_ids}}",
                          "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": "{{latitude}}",
                          "description": "[optional]. Float. Latitud para ordenar por proximidad"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}",
                          "description": "[optional]. Float. Longitud para ordenar por proximidad"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}",
                          "description": "[optional]. String. Texto de búsqueda para filtrar POIs por nombre/descripción"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}",
                          "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": "[\n  {\n    \"code\": 400,\n    \"description\": \"Parameter \\\"jurisdiction_element_id\\\" is required\"\n  }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/management/check_optional_updates",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "{{publicBaseUrl}}/management/check_optional_updates",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{publicBaseUrl}}/map-layer/list?geoserver_serialize=true&include_without_level=true&jurisdiction_element_id={{jurisdiction_element_id}}&level=2&type=request",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "map-layer",
                    "list"
                  ],
                  "query": [
                    {
                      "key": "geoserver_serialize",
                      "value": "true",
                      "description": "Boolean. [optional]. Si es true, la respuesta se serializa con el grupo geoserver."
                    },
                    {
                      "key": "include_without_level",
                      "value": "true",
                      "description": "Boolean. [optional]. Si es true, también se incluyen capas que no tienen nivel asignado."
                    },
                    {
                      "key": "jurisdiction_element_id",
                      "value": "{{jurisdiction_element_id}}",
                      "description": "String. [optional]. ID de mongo de la jurisdicción sobre el cual se consulta información adicional"
                    },
                    {
                      "key": "level",
                      "value": "2",
                      "description": "Integer. [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": "{{publicBaseUrl}}/map-layer/list?geoserver_serialize=true&include_without_level=true&jurisdiction_element_id={{jurisdiction_element_id}}&level=2&type=request",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "map-layer",
                        "list"
                      ],
                      "query": [
                        {
                          "key": "geoserver_serialize",
                          "value": "true"
                        },
                        {
                          "key": "include_without_level",
                          "value": "true"
                        },
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}"
                        },
                        {
                          "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": "{{publicBaseUrl}}/map-layer/{{map_layer_id}}/question-list",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "map-layer",
                    "{{map_layer_id}}",
                    "question-list"
                  ],
                  "variable": [
                    {
                      "key": "map_layer_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso map layer id."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| map_layer_id | String | \\[required\\]. ID del map_layer sobre la cual se requiere obtener la lista de preguntas asociadas. |\n\nEste 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": "{{publicBaseUrl}}/map-layer/{{map_layer_id}}/question-list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"nestingLevel\": 1,\n    \"requiredVariables\": [],\n    \"configurable_questions\": [\n        {\n            \"editable\": true,\n            \"hidden_in_detail\": false,\n            \"hidden_in_form\": false,\n            \"hidden_in_open010_detail\": false,\n            \"hidden_in_open010_form\": false,\n            \"show_collapsed\": false,\n            \"default_collapsed\": false,\n            \"question\": {\n                \"type\": \"text\",\n                \"active\": true,\n                \"code\": \"horario\",\n                \"help_text\": \"*   Lunes a viernes: 8:00 - 20:00.  \\n*   Sábados, domingos y festivos: 9:00 - 20:00.\",\n                \"help_text_translations\": {\n                    \"es\": \"*   Lunes a viernes: 8:00 - 20:00.  \\n*   Sábados, domingos y festivos: 9:00 - 20:00.\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\",\n                    \"gl\": \"\"\n                },\n                \"id\": \"691eea114fb8f78005078b39\",\n                \"question\": \"Horario\",\n                \"question_translations\": {\n                    \"es\": \"Horario\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\",\n                    \"gl\": \"\"\n                },\n                \"tags\": []\n            },\n            \"required\": false,\n            \"default_value\": \"\",\n            \"visibility\": \"public\",\n            \"filterable\": false\n        }\n    ],\n    \"id\": \"691eea734fb8f78005078b3b\",\n    \"jurisdictions\": [\n        {\n            \"jurisdiction_id\": \"org.alcobendas\",\n            \"name\": \"Alcobendas\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n        }\n    ],\n    \"name\": \"POI Alcobendas (Punto limpio fijo)\",\n    \"tags\": [\n        {\n            \"name\": \"poi\",\n            \"color\": \"#000000\",\n            \"id\": \"poi\"\n        }\n    ],\n    \"use_cases\": [],\n    \"description\": \"Punto limpio fijo\"\n}"
                }
              ]
            }
          ],
          "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": "{\n    \"email\": \"S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=\",\n    \"request_id\": \"{{requestId}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/notification/unsubscribe",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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).\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| email | String | \\[required\\]  <br>Email encriptado del usuario al que se quieren desactivar las notificaciones por email |\n| 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": "{\n    \"email\": \"S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=\",\n    \"request_id\": \"539eb901e940f62c788b456a\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/notification/unsubscribe",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"message\": \"You have unsubscribed from email notifications for the request 5000056\"\n}"
                },
                {
                  "id": "72bac7f2-2969-48b1-9522-0284f2cfd21c",
                  "name": "Error Decrypting Email",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"email\": \"email_fake@example.com\",\n    \"request_id\": \"539eb901e940f62c788b456a\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/notification/unsubscribe",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 400,\n        \"description\": \"Error decrypting email\"\n    }"
                },
                {
                  "id": "444501d8-fa29-4cd3-aa6a-0ec52994f6b3",
                  "name": "Error RequestFollowers Not Found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"email\": \"S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=\",\n    \"request_id\": \"539eb901e940f62c788b456a\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/notification/unsubscribe",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 404,\n    \"description\": \"RequestFollowers not found\"\n}"
                },
                {
                  "id": "a619f86e-1822-4ab7-a403-753bdd8322e7",
                  "name": "Error Saving RequestFollower",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"email\": \"S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=\",\n    \"request_id\": \"539eb901e940f62c788b456a\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/notification/unsubscribe",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 400,\n        \"description\": \"Error saving RequestFollower\"\n    }"
                },
                {
                  "id": "8bcc6105-0d99-4a89-bb87-daa7fcc0decd",
                  "name": "Error Flush RequestFollower",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"email\": \"S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=\",\n    \"request_id\": \"539eb901e940f62c788b456a\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/notification/unsubscribe",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 400,\n        \"description\": \"Error saving RequestFollower\"\n    }"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/poi-route/{{poi_route_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "poi-route",
                    "{{poi_route_id}}"
                  ],
                  "variable": [
                    {
                      "key": "poi_route_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso poi route id."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| poi_route_id | String | \\[required\\] Id de mongo de PoiRoute |\n\nEste 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": "{{publicBaseUrl}}/poi-route/{{poi_route_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "poi-route",
                        "{{poi_route_id}}"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": \"690388de6a8055eff602ab63\",\n    \"pois_by_layer\": [],\n    \"name\": \"dsadsad\",\n    \"jurisdiction_element\": {\n        \"id\": \"5c9b55579650e67d42985e80\",\n        \"visible_name\": \"Alcobendas\"\n    },\n    \"description\": \"dsadsadsaddasd\",\n    \"images\": [\n        \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690388c9766e53.10949981.jpg\"\n    ],\n    \"starting_point\": {\n        \"lat\": 40.546819487301,\n        \"long\": -3.646459174043\n    },\n    \"estimated_difficulty\": \"easy\"\n}"
                },
                {
                  "id": "1c20dba9-b896-478c-ac29-73842bd09ae0",
                  "name": "Error Not Found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/poi-route/{{poi_route_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "poi-route",
                        "{{poi_route_id}}"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 404,\n        \"description\": \"Object not found\"\n    }\n]"
                }
              ]
            },
            {
              "name": "PoiRoute List",
              "id": "0ef26415-bb39-4994-8712-79057e40f39f",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/poi-route/list?difficulty[]=easy&jurisdiction_element_ids[]={{jurisdiction_element_ids}}&limit={{limit}}&max_distance=100&max_duration=120&min_distance=20.5&min_duration=20&page={{page}}&q={{searchQuery}} 12",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "poi-route",
                    "list"
                  ],
                  "query": [
                    {
                      "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": "jurisdiction_element_ids[]",
                      "value": "{{jurisdiction_element_ids}}",
                      "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": "limit",
                      "value": "{{limit}}",
                      "description": "Integer. [optional]. Resultados por página"
                    },
                    {
                      "key": "max_distance",
                      "value": "100",
                      "description": "Float. [optional]. Distancia máxima (en metros)"
                    },
                    {
                      "key": "max_duration",
                      "value": "120",
                      "description": "Float. [optional]. Duración máxima (en minutos)"
                    },
                    {
                      "key": "min_distance",
                      "value": "20.5",
                      "description": "Float. [optional]. Distancia mínima (en metros)"
                    },
                    {
                      "key": "min_duration",
                      "value": "20",
                      "description": "Float. [optional]. Duración mínima (en minutos)"
                    },
                    {
                      "key": "page",
                      "value": "{{page}}",
                      "description": "Integer. [optional]. Página"
                    },
                    {
                      "key": "q",
                      "value": "{{searchQuery}}",
                      "description": "String. [optional]. Parámetro de búsqueda opcional utilizado para filtrar las rutas de POIs por una palabra clave o frase."
                    }
                  ]
                },
                "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": "{\n    \"name\": \"Ruta Prueba\",\n    \"jurisdiction_element\": \"5c9b55579650e67d42985e81\",\n    \"description\": \"TEST2\",\n    \"images\": [\n        \"https://s3.eu-west-1.amazonaws.com/static.dev.images.org/undefined/68cda0a4d34a879071.png\"\n    ],\n    \"starting_point\": {\n        \"lat\": 40.5346163476741,\n        \"lng\": -3.6356105327592885\n    },\n    \"estimated_difficulty\": \"easy\",\n    \"estimated_duration\": 20,\n    \"estimated_distance\": 300.63,\n    \"pois_by_layer\": [\n        {\n            \"layer_id\": \"5d91db6311235f7f2b8b45a2\",\n            \"pois\": [\n                \"Puntos_de_interes.1\",\n                \"Puntos_de_interes.2\"\n            ]\n        }\n    ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/poi-route/list?difficulty[]=easy&min_distance=0.2&max_distance=300.8&min_duration=10&max_duration=20&jurisdiction_element_ids[]={{jurisdiction_element_ids}}&q={{searchQuery}}&difficulty[]=hard&page={{page}}&limit={{limit}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{jurisdiction_element_ids}}"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}"
                        },
                        {
                          "key": "difficulty[]",
                          "value": "hard"
                        },
                        {
                          "key": "page",
                          "value": "{{page}}"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"id\": \"69021857c741eca1c9044c52\",\n        \"pois_by_layer\": [],\n        \"name\": \"dsadasd\",\n        \"jurisdiction_element\": {\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"visible_name\": \"Alcobendas\"\n        },\n        \"description\": \"dsdasdas\",\n        \"images\": [\n            \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/69021849ab7019.53062596.jpg\"\n        ],\n        \"starting_point\": {\n            \"lat\": 40.547983940487,\n            \"long\": -3.6435103563539\n        }\n    },\n    {\n        \"id\": \"690221eaa6d759e3a1088c92\",\n        \"pois_by_layer\": [],\n        \"name\": \"dsadasdas\",\n        \"jurisdiction_element\": {\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"visible_name\": \"Alcobendas\"\n        },\n        \"description\": \"dasdasdas\",\n        \"images\": [\n            \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690221d5c97a07.79522579.jpg\"\n        ],\n        \"starting_point\": {\n            \"lat\": 40.534996442872,\n            \"long\": -3.6363975803572\n        }\n    },\n    {\n        \"id\": \"6902822405139a6f81065a25\",\n        \"pois_by_layer\": [],\n        \"name\": \"dsadsadas\",\n        \"jurisdiction_element\": {\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"visible_name\": \"Alcobendas\"\n        },\n        \"description\": \"dsadsadasdsadsadsa\",\n        \"images\": [\n            \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/69028218d63731.69314275.jpg\"\n        ],\n        \"starting_point\": {\n            \"lat\": 40.53611679952,\n            \"long\": -3.6342971602309\n        }\n    },\n    {\n        \"id\": \"69036e011629cd75330aaaa4\",\n        \"pois_by_layer\": [],\n        \"name\": \"sadasdsa\",\n        \"jurisdiction_element\": {\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"visible_name\": \"Alcobendas\"\n        },\n        \"description\": \"dsadsad\",\n        \"images\": [],\n        \"starting_point\": {\n            \"lat\": 40.548798394585,\n            \"long\": -3.6431276812872\n        },\n        \"estimated_difficulty\": \"easy\"\n    },\n    {\n        \"id\": \"6903846719995a489a088074\",\n        \"pois_by_layer\": [],\n        \"name\": \"dsadasdas\",\n        \"jurisdiction_element\": {\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"visible_name\": \"Alcobendas\"\n        },\n        \"description\": \"dsadasdasdas\",\n        \"images\": [],\n        \"starting_point\": {\n            \"lat\": 40.543638358867,\n            \"long\": -3.6576112688977\n        },\n        \"estimated_difficulty\": \"easy\"\n    },\n    {\n        \"id\": \"690388de6a8055eff602ab63\",\n        \"pois_by_layer\": [],\n        \"name\": \"dsadsad\",\n        \"jurisdiction_element\": {\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"visible_name\": \"Alcobendas\"\n        },\n        \"description\": \"dsadsadsaddasd\",\n        \"images\": [\n            \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690388c9766e53.10949981.jpg\"\n        ],\n        \"starting_point\": {\n            \"lat\": 40.546819487301,\n            \"long\": -3.646459174043\n        },\n        \"estimated_difficulty\": \"easy\"\n    }\n]"
                }
              ]
            },
            {
              "name": "PoiRoute Calculate Path",
              "id": "24350f69-c0ff-4ecd-8281-e7163ae58e2d",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/poi-route/{{poi_route_id}}/calculate-path",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "poi-route",
                    "{{poi_route_id}}",
                    "calculate-path"
                  ],
                  "variable": [
                    {
                      "key": "poi_route_id",
                      "value": "",
                      "description": "String. [required]. ID de la ruta (PoiRoute) en formato hexadecimal de 24 caracteres."
                    }
                  ]
                },
                "description": "Calcula la ruta óptima entre los puntos de interés (POIs) configurados en un PoiRoute usando el grafo de conexiones de Geoserver.\n\n| **Campo** | **Tipo** | **Descripción** |\n| --- | --- | --- |\n| poi_route_id | String | [required]. ID de la ruta (PoiRoute) en formato hexadecimal de 24 caracteres |"
              },
              "response": [
                {
                  "id": "33a20f02-e99b-44d0-97bc-390043db501b",
                  "name": "Response OK Calculate Path",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/poi-route/{{poi_route_id}}/calculate-path",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "poi-route",
                        "{{poi_route_id}}",
                        "calculate-path"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"type\": \"FeatureCollection\",\n    \"features\": [\n        {\n            \"type\": \"Feature\",\n            \"geometry\": {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                    [\n                        -3.7038,\n                        40.4168\n                    ],\n                    [\n                        -3.704,\n                        40.417\n                    ]\n                ]\n            },\n            \"properties\": {}\n        }\n    ]\n}"
                },
                {
                  "id": "03936867-2b80-470f-a09a-acd9177b4841",
                  "name": "Error PoiRoute Without POIs",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/poi-route/{{poi_route_id}}/calculate-path",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "poi-route",
                        "{{poi_route_id}}",
                        "calculate-path"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 400,\n        \"description\": \"Error calculating the route due to missing pois\"\n    }\n]"
                },
                {
                  "id": "d9faaeba-ed06-4b7a-8aa7-72dc55cb0a61",
                  "name": "Error PoiRoute Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/poi-route/{{poi_route_id}}/calculate-path",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "poi-route",
                        "{{poi_route_id}}",
                        "calculate-path"
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 404,\n        \"description\": \"Object not found\"\n    }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/{{jurisdiction_id}}/shorten-url?poi_ids=alcobendas_poi_aparcapatinetes.26, alcobendas_poi_aparcapatinetes.27, alcobendas_poi_aparcapatinetes.28",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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."
                    }
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso jurisdiction id."
                    }
                  ]
                },
                "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": "{{publicBaseUrl}}/{{jurisdiction_id}}/shorten-url?poi_ids=alcobendas_poi_aparcapatinetes.26, alcobendas_poi_aparcapatinetes.27, alcobendas_poi_aparcapatinetes.28",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"items\": [\n        {\n            \"poi_id\": \"alcobendas_poi_aparcapatinetes.26\",\n            \"shortened_url\": \"https://zeus.mejoratuciudad.org/yourls/5reoe\"\n        },\n        {\n            \"poi_id\": \"alcobendas_poi_aparcapatinetes.27\",\n            \"shortened_url\": \"https://zeus.mejoratuciudad.org/yourls/dq8b9\"\n        },\n        {\n            \"poi_id\": \"alcobendas_poi_aparcapatinetes.28\",\n            \"shortened_url\": \"https://zeus.mejoratuciudad.org/yourls/fpjfl\"\n        }\n    ]\n}"
                },
                {
                  "id": "c2f1eb26-1eb7-4025-96f4-f0ca161531d7",
                  "name": "Error Jurisdiction Id Was Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/{{jurisdiction_id}}/shorten-url?poi_ids=alcobendas_poi_aparcapatinetes.26, alcobendas_poi_aparcapatinetes.27, alcobendas_poi_aparcapatinetes.28",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 404,\n    \"message\": \"jurisdiction was not found\"\n}"
                }
              ]
            },
            {
              "name": "Get Poi Extra Data",
              "id": "024648f0-daeb-4faf-b68f-f155c0cfed73",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "X-CLIENT-ID",
                    "name": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "description": "String. [required]. Identificador de cliente para consumir la API pública.",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/poi-extra-data?poi_id={{poi_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "poi-extra-data"
                  ],
                  "query": [
                    {
                      "key": "poi_id",
                      "value": "{{poi_id}}",
                      "description": "String. [required]. Identificador del POI para localizar el documento PoiExtraData."
                    }
                  ]
                },
                "description": "**Description**\n\nObtiene la información adicional configurada para un POI a partir del parámetro `poi_id`."
              },
              "response": [
                {
                  "id": "01605fa0-b092-4b24-9022-036d8b1ad1e5",
                  "name": "Response OK Poi Extra Data",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "name": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "String. [required]. Identificador de cliente para consumir la API pública.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/poi-extra-data?poi_id={{poi_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "poi-extra-data"
                      ],
                      "query": [
                        {
                          "key": "poi_id",
                          "value": "{{poi_id}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"poiId\": \"poi_123\",\n    \"jurisdictionElement\": {\n        \"id\": \"65f0a1b2c3d4e5f607182930\"\n    },\n    \"appElements\": [\n        {\n            \"id\": \"65f0a1b2c3d4e5f607182931\",\n            \"name\": \"Elemento de ejemplo\"\n        }\n    ]\n}"
                },
                {
                  "id": "7efadbf6-4c33-47da-9ad9-64d256a3249e",
                  "name": "Poi Extra Data Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "name": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "String. [required]. Identificador de cliente para consumir la API pública.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/poi-extra-data?poi_id={{poi_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "poi-extra-data"
                      ],
                      "query": [
                        {
                          "key": "poi_id",
                          "value": "{{poi_id}}"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 404,\n    \"message\": \"Object not found\"\n}"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/releases?jurisdiction_ids={{jurisdiction_id}}&appType=backoffice&limit={{limit}}&page={{page}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "releases"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_ids",
                      "value": "{{jurisdiction_id}}",
                      "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": "{{limit}}",
                      "description": "Integer. [optional]. Permite definir el limite de cada página de resultados."
                    },
                    {
                      "key": "page",
                      "value": "{{page}}",
                      "description": "Integer. [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": "{{publicBaseUrl}}/releases?jurisdiction_ids={{jurisdiction_id}}&appType=backoffice&limit={{limit}}&page={{page}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "releases"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "key": "appType",
                          "value": "backoffice"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}"
                        },
                        {
                          "key": "page",
                          "value": "{{page}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"status\": \"PUBLISHED\",\n        \"application_types\": [\n            {\n                \"id\": \"5620af276aa91868238b4567\",\n                \"jurisdictions\": [\n                    {\n                        \"id\": \"561e04ed6aa918910c8b4592\",\n                        \"jurisdiction_id\": \"org.alcobendas\",\n                        \"name\": \"Alcobendas\",\n                        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n                    }\n                ],\n                \"name\": \"Alcobendas\",\n                \"type\": \"cityapp\"\n            }\n        ],\n        \"author\": {\n            \"id\": \"6925bd2f4bed3bfd7f0ae777\",\n            \"first_name\": \"Silvia\",\n            \"last_name\": \"Reyes\",\n            \"avatar\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n        },\n        \"channels\": [],\n        \"company\": {\n            \"alias\": \"ADDA OPS\",\n            \"id\": \"607040ae93fba54b048b457a\",\n            \"name\": \"ALC_ADDA_OPS\"\n        },\n        \"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\\\")\",\n        \"emergency\": false,\n        \"end_date\": \"2025-12-08T09:10:32+00:00\",\n        \"files\": [],\n        \"geofences\": [],\n        \"id\": \"692ead28feae9d27d30e0a4a\",\n        \"images\": [\n            {\n                \"name\": \"pRUEBAS_MTC_PRE.jpg\",\n                \"url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/release/692ead034bb615.60771455.jpg\"\n            }\n        ],\n        \"jurisdiction_element\": {\n            \"extent\": [],\n            \"id\": \"663550808a8e6f62c10d9e7e\",\n            \"name\": \"Prueba22\",\n            \"visible_name\": \"Prueba02\",\n            \"is_main\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction_element/667b22dbd531f074699340.png\"\n        },\n        \"jurisdictions\": [\n            {\n                \"id\": \"561e04ed6aa918910c8b4592\",\n                \"jurisdiction_id\": \"org.alcobendas\",\n                \"name\": \"Alcobendas\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n            }\n        ],\n        \"last_editor\": {\n            \"id\": \"6925bd2f4bed3bfd7f0ae777\",\n            \"first_name\": \"Silvia\",\n            \"last_name\": \"Reyes\",\n            \"avatar\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n        },\n        \"links\": [\n            {\n                \"link\": \"https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%2C-grat.aspx\",\n                \"name\": \"prueba\"\n            }\n        ],\n        \"name\": \"PRUEBA COMUNICACION 3\",\n        \"notification_mode\": {\n            \"email_notification\": false,\n            \"push_notification\": true,\n            \"web_notification\": false\n        },\n        \"start_date\": \"2025-12-02T09:09:27+00:00\",\n        \"tags\": [],\n        \"push_only\": false,\n        \"action\": [],\n        \"buttons\": [],\n        \"backoffice_users\": [],\n        \"users\": [],\n        \"notify_anonymous_users\": false,\n        \"map_layer_ids\": []\n    }\n]"
                },
                {
                  "id": "9ac512fe-23ce-4d1c-8c05-afda7d890ad2",
                  "name": "Releases Invalid Jurisdiction",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/releases",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"error_code\": 1040,\n    \"error_msg\": \"Jurisdiction Not found\"\n}"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/my-releases?appType=backoffice&jurisdiction_ids={{jurisdiction_id}}&limit={{limit}}&page={{page}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "{{jurisdiction_id}}",
                      "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": "{{limit}}",
                      "description": "Integer. [optional]. Permite definir el limite de cada página de resultados."
                    },
                    {
                      "key": "page",
                      "value": "{{page}}",
                      "description": "Integer. [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": "{{publicBaseUrl}}/my-releases?appType=backoffice&jurisdiction_ids={{jurisdiction_id}}&limit={{limit}}&page={{page}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "my-releases"
                      ],
                      "query": [
                        {
                          "key": "appType",
                          "value": "backoffice"
                        },
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}"
                        },
                        {
                          "key": "page",
                          "value": "{{page}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"status\": \"PUBLISHED\",\n        \"lat\": 40.3948356,\n        \"lng\": -3.6995988,\n        \"address_string\": \"Cl. de Aldea del Fresno, 37, Arganzuela, 28045 Madrid, Spain\",\n        \"application_types\": [\n            {\n                \"id\": \"5caf0fc80e9867512f8b458f\",\n                \"jurisdictions\": [\n                    {\n                        \"id\": \"561e04ed6aa918910c8b4592\",\n                        \"jurisdiction_id\": \"org.alcobendas\",\n                        \"name\": \"Alcobendas\",\n                        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n                    }\n                ],\n                \"name\": \"WorkApp Generica\",\n                \"type\": \"workapp\"\n            }\n        ],\n        \"author\": {\n            \"id\": \"66369df4d48ec432de0df580\",\n            \"avatar\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/avatars/67ccb6b12b5ce089732382.png\",\n            \"first_name\": \"Carlos\",\n            \"last_name\": \"Ascencio\"\n        },\n        \"channels\": [],\n        \"company\": {\n            \"alias\": \"ADDA OPS\",\n            \"id\": \"607040ae93fba54b048b457a\",\n            \"name\": \"ALC_ADDA_OPS\"\n        },\n        \"description\": \"Prueba de comunicación\",\n        \"emergency\": false,\n        \"end_date\": \"2025-12-06T19:52:40+00:00\",\n        \"event_end_date\": \"2025-12-06T19:53:00+00:00\",\n        \"event_start_date\": \"2025-11-30T19:52:58+00:00\",\n        \"files\": [\n            {\n                \"name\": \"En blanco.pdf\",\n                \"url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/releases/692ca0addc6be7.28141943.pdf\"\n            }\n        ],\n        \"geofences\": [],\n        \"id\": \"692ca0e68accbac9c30da945\",\n        \"images\": [\n            {\n                \"name\": \"13.jpg\",\n                \"url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/release/692ca0cff14582.98105484.jpg\"\n            }\n        ],\n        \"jurisdictions\": [\n            {\n                \"id\": \"561e04ed6aa918910c8b4592\",\n                \"jurisdiction_id\": \"org.alcobendas\",\n                \"name\": \"Alcobendas\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n            }\n        ],\n        \"last_editor\": {\n            \"id\": \"66369df4d48ec432de0df580\",\n            \"avatar\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/avatars/67ccb6b12b5ce089732382.png\",\n            \"first_name\": \"Carlos\",\n            \"last_name\": \"Ascencio\"\n        },\n        \"links\": [\n            {\n                \"link\": \"https://es.wikipedia.org/wiki/Hola_mundo\",\n                \"name\": \"Contacto\"\n            }\n        ],\n        \"name\": \"Comunicado de prueba\",\n        \"notification_mode\": {\n            \"email_notification\": true,\n            \"push_notification\": true,\n            \"web_notification\": false\n        },\n        \"position\": {\n            \"lng\": -3.6995988,\n            \"address_string\": \"Cl. de Aldea del Fresno, 37, Arganzuela, 28045 Madrid, Spain\",\n            \"lat\": 40.3948356,\n            \"long\": -3.6995988,\n            \"location_additional_data\": []\n        },\n        \"start_date\": \"2025-11-30T20:54:03+00:00\",\n        \"tags\": [],\n        \"push_only\": false,\n        \"action\": [],\n        \"buttons\": [],\n        \"backoffice_users\": [],\n        \"users\": [],\n        \"notify_anonymous_users\": false,\n        \"map_layer_ids\": []\n    }\n]"
                },
                {
                  "id": "b397dfff-ea56-4b1a-a95b-e6af80ce684a",
                  "name": "My Releases Invalid Jurisdiction",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/my-releases?jurisdiction_ids={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "my-releases"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"Invalid Jurisdiction\"\n    }\n]"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/release/{{id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "release",
                    "{{id}}"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "String. [required]. ID del recurso release id."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| release_id | String | ID del release sobre la cual se desea consultar. |\n\nEste 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": "{{publicBaseUrl}}/release/{{release_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"status\": \"PUBLISHED\",\n    \"application_types\": [\n        {\n            \"id\": \"5620af276aa91868238b4567\",\n            \"jurisdictions\": [\n                {\n                    \"id\": \"561e04ed6aa918910c8b4592\",\n                    \"jurisdiction_id\": \"org.alcobendas\",\n                    \"name\": \"Alcobendas\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n                }\n            ],\n            \"name\": \"Alcobendas\",\n            \"type\": \"cityapp\"\n        }\n    ],\n    \"author\": {\n        \"id\": \"6925bd2f4bed3bfd7f0ae777\",\n        \"first_name\": \"Silvia\",\n        \"last_name\": \"Reyes\",\n        \"avatar\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n    },\n    \"channels\": [],\n    \"company\": {\n        \"alias\": \"ADDA OPS\",\n        \"id\": \"607040ae93fba54b048b457a\",\n        \"name\": \"ALC_ADDA_OPS\"\n    },\n    \"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\\\")\",\n    \"emergency\": false,\n    \"end_date\": \"2025-12-08T09:10:32+00:00\",\n    \"files\": [],\n    \"geofences\": [],\n    \"id\": \"692ead28feae9d27d30e0a4a\",\n    \"images\": [\n        {\n            \"name\": \"pRUEBAS_MTC_PRE.jpg\",\n            \"url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/release/692ead034bb615.60771455.jpg\"\n        }\n    ],\n    \"jurisdiction_element\": {\n        \"extent\": [],\n        \"id\": \"663550808a8e6f62c10d9e7e\",\n        \"name\": \"Prueba22\",\n        \"visible_name\": \"Prueba02\",\n        \"is_main\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction_element/667b22dbd531f074699340.png\"\n    },\n    \"jurisdictions\": [\n        {\n            \"id\": \"561e04ed6aa918910c8b4592\",\n            \"jurisdiction_id\": \"org.alcobendas\",\n            \"name\": \"Alcobendas\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n        }\n    ],\n    \"last_editor\": {\n        \"id\": \"6925bd2f4bed3bfd7f0ae777\",\n        \"first_name\": \"Silvia\",\n        \"last_name\": \"Reyes\",\n        \"avatar\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n    },\n    \"links\": [\n        {\n            \"link\": \"https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%2C-grat.aspx\",\n            \"name\": \"prueba\"\n        }\n    ],\n    \"name\": \"PRUEBA COMUNICACION 3\",\n    \"notification_mode\": {\n        \"email_notification\": false,\n        \"push_notification\": true,\n        \"web_notification\": false\n    },\n    \"start_date\": \"2025-12-02T09:09:27+00:00\",\n    \"tags\": [],\n    \"push_only\": false,\n    \"action\": [],\n    \"buttons\": [],\n    \"backoffice_users\": [],\n    \"users\": [],\n    \"notify_anonymous_users\": false,\n    \"map_layer_ids\": []\n}"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/request/{{token}}/complaints",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "{{token}}",
                    "complaints"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso request token."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| request_token | String | ID de la request sobre la cual se desea consultar. |\n\nEste 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": "{{publicBaseUrl}}/request/{{token}}/complaints",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "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": "[\n    {\n        \"datetime\": \"2025-12-04T13:13:44+00:00\",\n        \"origin_create\": \"Acciona\",\n        \"id\": \"693189089ddc57f7cc015d65\",\n        \"source\": {\n            \"alias\": \"Interno (Backoffice)\",\n            \"id\": \"5850de88e22c6d9f51b17719\"\n        }\n    }\n]"
                }
              ]
            },
            {
              "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": "{{testEmail}}",
                      "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": "{{originDeviceId}}",
                      "description": "String [optional]. ID de la fuente u origen categórico de la queja."
                    },
                    {
                      "type": "text",
                      "key": "user",
                      "value": "{{userId}}",
                      "description": "String [optional]. ID del usuario que registra la queja."
                    }
                  ]
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/request/{{token}}/complaint",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "{{token}}",
                    "complaint"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso request token."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| request_token | String | ID de la request sobre la cual se desea consultar. |\n\nEste 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": "{{testEmail}}"
                        },
                        {
                          "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": "{{publicBaseUrl}}/request/{{token}}/complaint",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "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": "{\n    \"datetime\": \"2025-12-19T13:51:20+00:00\",\n    \"origin_create\": \"Lamoraleja\",\n    \"description\": \"Prueba\",\n    \"email\": \"diana.leon@gopenux.com\",\n    \"first_name\": \"Diana Lucia\",\n    \"follow_request\": true,\n    \"id\": \"69455858618773d55a0a4413\",\n    \"last_name\": \"Leon Figueroa\",\n    \"request\": {\n        \"following_count\": 1,\n        \"reiterations_count\": 0,\n        \"complaints_count\": 1,\n        \"token\": \"6903b227498563d72c0ca77e\"\n    },\n    \"source\": {\n        \"alias\": \"Interno (Backoffice)\",\n        \"id\": \"5850de88e22c6d9f51b17719\"\n    },\n    \"user\": {\n        \"nickname\": \"user_70ee9714afc834435c9d\",\n        \"id\": \"68af0c6690c69558be01ebee\"\n    }\n}"
                },
                {
                  "name": "Error de validación de queja",
                  "originalRequest": {
                    "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": "{{testEmail}}",
                          "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": "{{publicBaseUrl}}/request/{{token}}/complaint",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "complaint"
                      ],
                      "variable": [
                        {
                          "key": "request_token",
                          "value": "",
                          "description": "String. [required]. ID del recurso request token."
                        }
                      ]
                    },
                    "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| request_token | String | ID de la request sobre la cual se desea consultar. |\n\nEste 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."
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n    \"error_code\": 400,\n    \"error_msg\": \"Invalid complaint data\"\n}"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/requests?address_and_service_request_id=ALC00001&complaints=true&distance=130&end_date=2025-10-02T00:00:00Z&final_not_ok=true&final_ok=false&final_status=true&following=true&interested=true&jurisdiction_element_ids[0]={{jurisdiction_element_ids}}&jurisdiction_ids[0]={{jurisdiction_id}}&lat={{latitude}}&level=2&limit={{limit}}&long={{longitude}}&order=ASC&own=true&page={{page}}&polygon[0]=40.466&polygon[1]=-3.696&reiterations=true&service_ids[0]={{service_ids}}&service_request_ids[0]={{service_request_ids}}&start_date=2025-10-01T00:00:00Z&status[0]={{status}}&typologies[0]={{typologies}}&user_complaint=false&user_reiterated=true",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests"
                  ],
                  "query": [
                    {
                      "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": "complaints",
                      "value": "true",
                      "description": "String. [optional]. . Permite realizar búsqueda de avisos si estos poseen quejas reportadas"
                    },
                    {
                      "key": "distance",
                      "value": "130",
                      "description": "String. [optional]. (130) Permite realizar búsqueda de avisos a partir de una distancia en metros"
                    },
                    {
                      "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": "final_not_ok",
                      "value": "true",
                      "description": "Boolean. [optional]. Permite realizar la búsqueda de un aviso si su estado es intermedio (ni nuevo ni finalizado)"
                    },
                    {
                      "key": "final_ok",
                      "value": "false",
                      "description": "Boolean. [optional]. Permite realizar la búsqueda de un aviso si su estado final es correcto"
                    },
                    {
                      "key": "final_status",
                      "value": "true",
                      "description": "Boolean. [optional]. Permite realizar la búsqueda de un aviso si su estado es final"
                    },
                    {
                      "key": "following",
                      "value": "true",
                      "description": "Boolean. [optional]. (true) Permite realizar búsqueda de avisos a los que el usuario del contexto esté siguiendo"
                    },
                    {
                      "key": "interested",
                      "value": "true",
                      "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)"
                    },
                    {
                      "key": "jurisdiction_element_ids[0]",
                      "value": "{{jurisdiction_element_ids}}",
                      "description": "String. [optional]. (5c87a4d24e4ea894138b4567) Permite realiza búsquedas a partir de los elementos de jurisdicción vinculados"
                    },
                    {
                      "key": "jurisdiction_ids[0]",
                      "value": "{{jurisdiction_id}}",
                      "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": "lat",
                      "value": "{{latitude}}",
                      "description": "Float. [optional]. (1.11111) Permite realizar la búsqueda de avisos mediante coordenadas (latitud)"
                    },
                    {
                      "key": "level",
                      "value": "2",
                      "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."
                    },
                    {
                      "key": "limit",
                      "value": "{{limit}}",
                      "description": "Integer. [optional]. (10) Permite definir el limite de cada página de resultados"
                    },
                    {
                      "key": "long",
                      "value": "{{longitude}}",
                      "description": "Float. [optional]. (3.3333) Permite realizar la búsqueda de avisos mediante coordenadas (longitud)"
                    },
                    {
                      "key": "order",
                      "value": "ASC",
                      "description": "String. [optional]. Permite definir el ordenamiento de los resultados encontrados de manera ascendente o descendente (alfabéticamente)"
                    },
                    {
                      "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": "page",
                      "value": "{{page}}",
                      "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"
                    },
                    {
                      "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": "reiterations",
                      "value": "true",
                      "description": "Boolean. [optional]. Permite realizar búsqueda de avisos si estos poseen reiteraciones reportadas"
                    },
                    {
                      "key": "service_ids[0]",
                      "value": "{{service_ids}}",
                      "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": "service_request_ids[0]",
                      "value": "{{service_request_ids}}",
                      "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": "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": "status[0]",
                      "value": "{{status}}",
                      "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": "{{typologies}}",
                      "description": "String. [optional]. (5c87a4d24e4ea894138b4567) Permite realizar búsquedas de avisos a partir de la tipologia a la que pertenezcan"
                    },
                    {
                      "key": "user_complaint",
                      "value": "false",
                      "description": "Boolean. [optional]. Permite realizar búsqueda de avisos que el usuario del contexto haya denunciado (puesto una queja"
                    },
                    {
                      "key": "user_reiterated",
                      "value": "true",
                      "description": "Boolean. [optional]. Permite realizar búsqueda de avisos que el usuario del contexto haya reiterado"
                    }
                  ]
                },
                "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": "{{publicBaseUrl}}/requests?jurisdiction_ids[0]={{jurisdiction_id}}&service_request_ids[0]={{service_request_ids}}&service_ids[0]={{service_ids}}&start_date=2025-10-01T00:00:00Z&end_date=2025-10-02T00:00:00Z&own=true&lat={{latitude}}&long={{longitude}}&page={{page}}&limit={{limit}}&address_and_service_request_id=20&status[0]={{status}}&typologies[0]={{typologies}}&distance=130&following=true&order=false&complaints=true&reiterations=true&user_reiterated=true&user_complaint=false&jurisdiction_element_ids[0]={{jurisdiction_element_ids}}&level=2&polygon[0]=40.466&polygon[1]=-3.696&final_ok=false&final_not_ok=true&final_status=true&interested=true",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids[0]",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "key": "service_request_ids[0]",
                          "value": "{{service_request_ids}}"
                        },
                        {
                          "key": "service_ids[0]",
                          "value": "{{service_ids}}"
                        },
                        {
                          "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": "{{latitude}}"
                        },
                        {
                          "key": "long",
                          "value": "{{longitude}}"
                        },
                        {
                          "key": "page",
                          "value": "{{page}}"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}"
                        },
                        {
                          "key": "address_and_service_request_id",
                          "value": "20"
                        },
                        {
                          "key": "status[0]",
                          "value": "{{status}}"
                        },
                        {
                          "key": "typologies[0]",
                          "value": "{{typologies}}"
                        },
                        {
                          "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": "{{jurisdiction_element_ids}}"
                        },
                        {
                          "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": "{\n    \"service_id\": \"5627630d6aa918d3008b456a\",\n    \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/sic_pro/service_icons/5db19490928b3.png\",\n    \"service_name\": \"Farolas\",\n    \"requested_datetime\": \"2025-03-05T08:20:40+00:00\",\n    \"reiterations_count\": 0,\n    \"complaints_count\": 0,\n    \"jurisdiction_id\": \"es.madrid\",\n    \"status_node_type\": \"initial_node\",\n    \"typology\": {\n      \"id\": \"5850dca2e22c6d9f51b00c0f\",\n      \"color\": \"#ebc113\",\n      \"description_legend\": \"Ej: farola fundida\",\n      \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/sic_pro/typology_icons/5b5c6827519b7.png\",\n      \"location_type\": \"geolocation\",\n      \"order\": 1,\n      \"public\": true,\n      \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n      \"visible_name\": \"Aviso\",\n      \"with_authorized_users\": false,\n      \"with_description\": true,\n      \"with_files\": true,\n      \"with_geolocation_data\": true,\n      \"with_medias\": true,\n      \"with_temporality_data\": true\n    },\n    \"public_visibility\": true,\n    \"address\": \"Calle Padilla, 17 , Salamanca, Castellana\",\n    \"comments_count\": 1,\n    \"complaining\": false,\n    \"current_node_estimated_final_datetime\": \"2025-03-07T08:17:20+00:00\",\n    \"current_node_estimated_start_datetime\": \"2025-03-05T08:17:20+00:00\",\n    \"description\": \".\",\n    \"estimated_final_datetime\": \"2025-03-18T08:17:20+00:00\",\n    \"estimated_start_datetime\": \"2025-03-05T08:17:20+00:00\",\n    \"evaluation\": 0,\n    \"jurisdiction_element\": {\n      \"map_layers\": [\n        {\n          \"backend\": \"OWS\",\n          \"endpoint\": \"https://sic_pro.mejoratuciudad.org/geoserver\",\n          \"id\": \"5d9ee7bcde2efef4018b4569\",\n          \"is_default\": false,\n          \"color\": \"#000000\",\n          \"internal_name\": \"zones_prod:Alc_Distritos\",\n          \"name\": \"Distritos\",\n          \"description\": \"Distritos\",\n          \"preset\": false,\n          \"public\": true,\n          \"tags\": [],\n          \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n          \"type\": \"ADMINISTRATIVE\"\n        }\n      ],\n      \"extent\": [\n        -3.70038574,\n        40.50117283,\n        -3.55027416,\n        40.58886137\n      ],\n      \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/sic_pro/jurisdiction_element/674ddb7deef43095450720.png\",\n      \"id\": \"5c9b55579650e67d42985e80\",\n      \"location_additional_data\": {},\n      \"name\": \"es.madrid\",\n      \"type\": \"city\",\n      \"visible_name\": \"madrid\"\n    },\n    \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n    \"lat\": 40.543749344957,\n    \"long\": -3.6469118016521,\n    \"service_request_id\": \"ALC43676\",\n    \"status_node\": {\n      \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n      \"visible_name\": \"Nuevo\",\n      \"id\": \"5850dd1fe22c6d9f51b0158d\",\n      \"order\": 1,\n      \"planned\": false\n    },\n    \"supporting\": false,\n    \"tags\": [],\n    \"token\": \"67c809593da33d5ef9036ed8\",\n    \"worknotes_count\": 1\n  }"
                },
                {
                  "id": "96bff95d-98a3-47ad-812e-e7753ea8fb91",
                  "name": "Requests List Empty Response",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests?jurisdiction_ids[0]={{jurisdiction_id}}&service_request_ids[0]={{service_request_ids}}&service_ids[0]={{service_ids}}&start_date=2025-10-01T00:00:00Z&end_date=2025-10-02T00:00:00Z&own=true&lat={{latitude}}&long={{longitude}}&page={{page}}&limit={{limit}}&address_and_service_request_id=20&status[0]={{status}}&typologies[0]={{typologies}}&distance=130&following=true&order=false&complaints=true&reiterations=true&user_reiterated=true&user_complaint=false&jurisdiction_element_ids[0]={{jurisdiction_element_ids}}&level=2&polygon[0]=40.466&polygon[1]=-3.696&final_ok=false&final_not_ok=true&final_status=true&interested=true",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids[0]",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "key": "service_request_ids[0]",
                          "value": "{{service_request_ids}}"
                        },
                        {
                          "key": "service_ids[0]",
                          "value": "{{service_ids}}"
                        },
                        {
                          "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": "{{latitude}}"
                        },
                        {
                          "key": "long",
                          "value": "{{longitude}}"
                        },
                        {
                          "key": "page",
                          "value": "{{page}}"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}"
                        },
                        {
                          "key": "address_and_service_request_id",
                          "value": "20"
                        },
                        {
                          "key": "status[0]",
                          "value": "{{status}}"
                        },
                        {
                          "key": "typologies[0]",
                          "value": "{{typologies}}"
                        },
                        {
                          "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": "{{jurisdiction_element_ids}}"
                        },
                        {
                          "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": "{{publicBaseUrl}}/requests?jurisdiction_ids[0]={{jurisdiction_id}}&service_request_ids[0]={{service_request_ids}}&service_ids[0]={{service_ids}}&start_date=2025-10-01T00:00:00Z&end_date=2025-10-02T00:00:00Z&own=true&lat={{latitude}}&long={{longitude}}&page={{page}}&limit={{limit}}&address_and_service_request_id=ALC00001&status[0]={{status}}&typologies[0]={{typologies}}&distance=130&following=true&order=ASC&complaints=true&reiterations=true&user_reiterated=true&user_complaint=false&jurisdiction_element_ids[0]={{jurisdiction_element_ids}}&level=2&polygon[0]=40.466&polygon[1]=-3.696&final_ok=false&final_not_ok=true&final_status=true&interested=true",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids[0]",
                          "value": "{{jurisdiction_id}}",
                          "description": "[optional]. Permite realizar búsqueda de avisos a partir del identificador de una jurisdicción vinculada"
                        },
                        {
                          "key": "service_request_ids[0]",
                          "value": "{{service_request_ids}}",
                          "description": "[optional]. Permite realizar búsqueda de avisos a partir de los identificadores vinculados a los avisos"
                        },
                        {
                          "key": "service_ids[0]",
                          "value": "{{service_ids}}",
                          "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": "{{latitude}}",
                          "description": "[optional]. Permite realizar la búsqueda de avisos mediante coordenadas (latitud)"
                        },
                        {
                          "key": "long",
                          "value": "{{longitude}}",
                          "description": "[optional]. Permite realizar la búsqueda de avisos mediante coordenadas (longitud)"
                        },
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "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": "{{status}}",
                          "description": "[optional]. Permite realizar búsquedas de avisos a partir del estado de los mismos"
                        },
                        {
                          "key": "typologies[0]",
                          "value": "{{typologies}}",
                          "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": "{{jurisdiction_element_ids}}",
                          "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": "{\n    \"code\": 400,\n    \"message\": \"request_token not exist\"\n}"
                }
              ]
            },
            {
              "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": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"service_request_id\": \"ALC12345\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/request_stop_follow",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request_stop_follow"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_id | String | \\[required\\] Identificador de la jurisdicción a la que pertenece. |\n| service_request_id | String | \\[required\\] Identificador del aviso al que se le removerán los followers. |\n\nEste 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": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"service_request_id\": \"ALC12345\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/request_stop_follow",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n  \"deleted\": false,\n  \"jurisdiction_name\": \"Madrid\",\n  \"service_id\": \"6932d3a03d69676a5b0f6478\",\n  \"service_code\": \"1\",\n  \"service_name\": \"Limpieza y Residuos\",\n  \"requested_datetime\": \"2025-11-30T12:44:34+00:00\",\n  \"supporting_count\": 0,\n  \"following_count\": 0,\n  \"evaluations_count\": 0,\n  \"address\": \"Dirección de prueba56\",\n  \"updated_datetime\": \"2025-12-05T12:44:46+00:00\",\n  \"evaluations_avg\": -1,\n  \"reiterations_count\": 0,\n  \"complaints_count\": 0,\n  \"jurisdiction_id\": \"es.madrid\",\n  \"status_node_type\": \"initial_node\",\n  \"files\": [],\n  \"is_evaluable\": true,\n  \"typology\": {\n    \"hasLocation\": true,\n    \"id\": \"6932d3993d69676a5b0f6441\",\n    \"color\": \"#337ab7\",\n    \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png\",\n    \"location_type\": \"geolocation\",\n    \"name\": \"avisos\",\n    \"order\": 0,\n    \"public\": true,\n    \"visible_name\": \"Avisos\",\n    \"with_description\": true,\n    \"with_files\": true,\n    \"with_geolocation_data\": false,\n    \"with_medias\": true,\n    \"with_temporality_data\": false\n  },\n  \"current_status_assignments\": [],\n  \"public_visibility\": false,\n  \"accepted\": false,\n  \"additional_data\": [],\n  \"comments_count\": 0,\n  \"complaining\": false,\n  \"current_node_estimated_final_datetime\": \"2025-12-05T16:44:35+00:00\",\n  \"current_node_estimated_start_datetime\": \"2025-12-05T12:44:35+00:00\",\n  \"description\": \"0 - 0 - Madrid - Limpieza y Residuos\",\n  \"estimated_final_datetime\": \"2025-12-05T16:44:35+00:00\",\n  \"estimated_start_datetime\": \"2025-12-05T12:44:35+00:00\",\n  \"evaluation\": 0,\n  \"following\": {\n    \"isFollowing\": false\n  },\n  \"medias\": [\n    {\n      \"created_at\": \"2025-12-05T12:44:34+00:00\",\n      \"id\": \"6932d3b23d69676a5b0f6587\",\n      \"public\": true,\n      \"type\": \"image/jpeg\",\n      \"media_url\": \"https://mtc.vdeveloper.lan/uploads/local/open010/6932d3b2ec8e2277033655.jpg\",\n      \"created_datetime\": \"2025-12-05T12:44:34+00:00\",\n      \"deleted\": false,\n      \"media_code\": \"6932d3b23d69676a5b0f6587\",\n      \"check_distance\": \"no_data\",\n      \"check_time\": \"no_data\",\n      \"media_metadata\": {\n        \"location_additional_data\": [],\n        \"created\": \"2025-12-05T12:44:39+00:00\"\n      },\n      \"tags\": []\n    }\n  ],\n  \"address_string\": \"Dirección de prueba56\",\n  \"lat\": 40.378,\n  \"long\": -3.631,\n  \"location_additional_data\": [],\n  \"priority\": {\n    \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/priority_icons/5bab7962bb361.png\"\n  },\n  \"public\": true,\n  \"seen\": false,\n  \"service\": {\n    \"deleted\": false,\n    \"parent_service_name\": \"\",\n    \"group\": \"\",\n    \"visible_name\": \"Limpieza y Residuos (Avisos)\",\n    \"mandatory_medias\": false,\n    \"mandatory_files\": false,\n    \"id\": \"6932d3a03d69676a5b0f6478\",\n    \"social\": true,\n    \"evaluation\": true,\n    \"color\": \"#0B99A6\",\n    \"hideEstimatedDate\": false,\n    \"mandatory_description\": true,\n    \"mandatory_informant_config\": [\n      {\n        \"field\": \"first_name\",\n        \"required\": false\n      },\n      {\n        \"field\": \"last_name\",\n        \"required\": false\n      },\n      {\n        \"field\": \"phone\",\n        \"required\": false\n      },\n      {\n        \"field\": \"secondary_phone\",\n        \"required\": false\n      },\n      {\n        \"field\": \"email\",\n        \"required\": false\n      },\n      {\n        \"field\": \"twitter_nickname\",\n        \"required\": false\n      },\n      {\n        \"field\": \"id_document\",\n        \"required\": false\n      },\n      {\n        \"field\": \"id_documents\",\n        \"required\": false\n      },\n      {\n        \"field\": \"addresses\",\n        \"required\": false\n      },\n      {\n        \"field\": \"address\",\n        \"required\": false\n      },\n      {\n        \"field\": \"gender\",\n        \"required\": false\n      },\n      {\n        \"field\": \"birthday\",\n        \"required\": false\n      },\n      {\n        \"field\": \"user_location_area\",\n        \"required\": false\n      }\n    ],\n    \"max_upload_files\": 3,\n    \"max_upload_medias\": 3,\n    \"public\": true,\n    \"public_requests\": true,\n    \"public_requests_internal\": true,\n    \"allow_changing_request_privacy\": true,\n    \"service_code\": \"1\",\n    \"service_icon\": \"https://mtc.vdeveloper.lan/uploads/local/service_icons/5bab6a4c457be.png\",\n    \"status_node\": [],\n    \"typology\": {\n      \"hasLocation\": true,\n      \"id\": \"6932d3993d69676a5b0f6441\",\n      \"color\": \"#337ab7\",\n      \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png\",\n      \"location_type\": \"geolocation\",\n      \"name\": \"avisos\",\n      \"order\": 0,\n      \"public\": true,\n      \"visible_name\": \"Avisos\",\n      \"with_description\": true,\n      \"with_files\": true,\n      \"with_geolocation_data\": false,\n      \"with_medias\": true,\n      \"with_temporality_data\": false\n    },\n    \"with_informant\": true\n  },\n  \"service_request_id\": \"MAD1001\",\n  \"status_node\": {\n    \"status_node_type\": \"initial_node\",\n    \"name\": \"nuevo\",\n    \"color\": \"#7da038\",\n    \"typology_node_id\": \"6932d3993d69676a5b0f6442\",\n    \"visible_name\": \"Nuevo\",\n    \"id\": \"6932d3a03d69676a5b0f6471\",\n    \"order\": 1,\n    \"planned\": false\n  },\n  \"supporting\": false,\n  \"tags\": [],\n  \"token\": \"6932d3b23d69676a5b0f6588\",\n  \"user\": {\n    \"hasPassword\": true,\n    \"nickname\": \"hely.suarez\",\n    \"channels\": [\n      {\n        \"external\": true,\n        \"id\": \"6932d3983d69676a5b0f6430\",\n        \"name\": \"PruebaNotes\"\n      }\n    ],\n    \"id\": \"6932d3983d69676a5b0f643b\",\n    \"notification_channels\": [\n      {\n        \"external\": true,\n        \"id\": \"6932d3983d69676a5b0f6430\",\n        \"name\": \"PruebaNotes\"\n      }\n    ],\n    \"last_geofences\": [],\n    \"jurisdiction_element_channels\": []\n  },\n  \"media_url\": \"https://mtc.vdeveloper.lan/uploads/local/open010/6932d3b2ec8e2277033655.jpg\"\n}"
                },
                {
                  "id": "959a435c-8c75-4d50-ab39-0165706f9a61",
                  "name": "Remove Request Follower without service_request_id",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/request_stop_follow",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"service_request_id was not provided\"\n    }\n]"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/request/count_last_days?jurisdiction_ids={{jurisdiction_id}}&last_days=3",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "count_last_days"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_ids",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [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": "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).",
                      "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": "{{publicBaseUrl}}/request/count_last_days?jurisdiction_ids={{jurisdiction_id}}&last_days=3",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "count_last_days"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n    \"jurisdiction_ids\": \"org.alcobendas\",\n    \"last_days\": 3,\n    \"count\": 1\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/request/count_last_days?last_days=3",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"jurisdiction_ids\": \"\",\n    \"last_days\": 3,\n    \"count\": 0\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/request/count_last_days?jurisdiction_ids={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "count_last_days"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n    \"jurisdiction_ids\": \"org.alcobendas\",\n    \"last_days\": 7,\n    \"count\": 2\n}"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/request/{{token}}/related_family/list",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "{{token}}",
                    "related_family",
                    "list"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso token."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| token | String | \\[required\\]. Identificador mongo del aviso al cual se le requiere extraer la información sobre otros avisos relacionados. |\n\nEste 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": "{{publicBaseUrl}}/request/{token}/related_family/list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"service_id\": \"6932f482e4b2768f51039f52\",\n    \"service_icon\": \"https://mtc.vdeveloper.lan/uploads/local/service_icons/5bab6a4c457be.png\",\n    \"service_name\": \"Limpieza\",\n    \"requested_datetime\": \"2025-09-17T14:04:56+00:00\",\n    \"address\": \"Dirección de prueba94\",\n    \"reiterations_count\": 0,\n    \"complaints_count\": 0,\n    \"jurisdiction_id\": \"es.madrid\",\n    \"status_node_type\": \"initial_node\",\n    \"typology\": {\n      \"id\": \"6932f47fe4b2768f51039edd\",\n      \"color\": \"#337ab7\",\n      \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png\",\n      \"location_type\": \"indoor\",\n      \"order\": 1,\n      \"public\": true,\n      \"visible_name\": \"Avisos Hospital\",\n      \"with_description\": true,\n      \"with_files\": true,\n      \"with_geolocation_data\": false,\n      \"with_medias\": true,\n      \"with_temporality_data\": false\n    },\n    \"public_visibility\": false,\n    \"comments_count\": 0,\n    \"complaining\": false,\n    \"current_node_estimated_final_datetime\": \"2025-12-05T20:04:56+00:00\",\n    \"current_node_estimated_start_datetime\": \"2025-12-05T15:04:56+00:00\",\n    \"description\": \"7 - 3 - Madrid - Limpieza\",\n    \"estimated_final_datetime\": \"2025-12-05T20:04:56+00:00\",\n    \"estimated_start_datetime\": \"2025-12-05T15:04:56+00:00\",\n    \"evaluation\": 0,\n    \"jurisdiction_element\": {\n      \"map_layers\": [\n        {\n          \"backend\": \"OWS\",\n          \"endpoint\": \"https://gis.mejoratuciudad.org/geoserver\",\n          \"id\": \"6932f483e4b2768f51039fe6\",\n          \"is_default\": false,\n          \"color\": \"#000000\",\n          \"internal_name\": \"buildings:custom_zones_fixtures\",\n          \"name\": \"FixtureZones\",\n          \"description\": \"Test Layer 5\",\n          \"preset\": false,\n          \"public\": true,\n          \"tags\": [],\n          \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n          \"type\": \"WORK\"\n        }\n      ],\n      \"extent\": [],\n      \"geoserver_perimeter_id\": \"custom_zones_fixtures.13\",\n      \"guided_module\": false,\n      \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/jurisdiction_element/icon_mock.png\",\n      \"id\": \"6932f479e4b2768f51039ea9\",\n      \"name\": \"madrid\",\n      \"type\": \"city\",\n      \"visible_name\": \"Madrid\",\n      \"is_main\": false\n    },\n    \"address_string\": \"Dirección de prueba94\",\n    \"lat\": 40.419,\n    \"long\": -3.674,\n    \"service_request_id\": \"MAD1110\",\n    \"status_node\": {\n      \"typology_node_id\": \"6932f47fe4b2768f51039ede\",\n      \"visible_name\": \"Nuevo\",\n      \"id\": \"6932f482e4b2768f51039f4b\",\n      \"order\": 1,\n      \"planned\": false\n    },\n    \"supporting\": false,\n    \"tags\": [],\n    \"token\": \"6932f498e4b2768f5103a22f\",\n    \"user\": {\n      \"id\": \"6932f47ae4b2768f51039eb7\"\n    },\n    \"worknotes_count\": 1,\n    \"media_url\": \"https://mtc.vdeveloper.lan/uploads/local/open010/6932f49880585560875310.jpg\"\n  }\n]"
                },
                {
                  "id": "62728be2-db52-4395-9dad-eebb011937cf",
                  "name": "Get related family without superparent request related",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/request/{token}/related_family/list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{publicBaseUrl}}/request/{token}/related_family/list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"code\": 404,\n    \"description\": \"Object not found\"\n  }\n]"
                },
                {
                  "id": "230c3c56-5599-4f7e-8f79-8194002f962c",
                  "name": "Get related family without user in request",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/request/{token}/related_family/list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"code\": 403,\n    \"description\": \"Related family list only is available if request was created by the logged user\"\n  }\n]"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/request_duplicate?lat={{latitude}}&lng={{longitude}}{{device_id}}&service_id={{service_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request_duplicate"
                  ],
                  "query": [
                    {
                      "key": "lat",
                      "value": "{{latitude}}",
                      "description": "Float. [required]. (40.54720023441049) Coordenada de latitud geográfica."
                    },
                    {
                      "key": "lng",
                      "value": "{{longitude}}",
                      "description": "Float. [required]. (-3.6370539665222172) Coordenada de longitud geográfica."
                    },
                    {
                      "key": "service_id",
                      "value": "{{service_id}}",
                      "description": "String. [required]. (5620ec856aa918b1008b4567) Permite identificar la categoria a la que pertenece el aviso o ticket"
                    }
                  ]
                },
                "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": "{{publicBaseUrl}}/request_duplicate?service_id={{service_id}}&lat={{latitude}}&lng={{longitude}}{{device_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request_duplicate"
                      ],
                      "query": [
                        {
                          "key": "service_id",
                          "value": "{{service_id}}",
                          "description": "[required]. String - Permite identificar la categoria a la que pertenece el aviso o ticket"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}",
                          "description": "[required]. Float - Coordenada de latitud geográfica."
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}",
                          "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": "{\n    \"deleted\": false,\n    \"jurisdiction\": \"561e04ed6aa918910c8b4592\",\n    \"jurisdiction_name\": \"Madrid Móvil\",\n    \"service_id\": \"5620ec856aa918b1008b4567\",\n    \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png\",\n    \"service_code\": \"2\",\n    \"service_name\": \"Arquetas de alumbrado\",\n    \"requested_datetime\": \"2025-03-13T16:26:32+00:00\",\n    \"supporting_count\": 0,\n    \"following_count\": 1,\n    \"evaluations_count\": 0,\n    \"updated_datetime\": \"2025-03-13T20:37:45+00:00\",\n    \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n    \"evaluations_avg\": -1,\n    \"reiterations_count\": 0,\n    \"complaints_count\": 0,\n    \"jurisdiction_id\": \"es.madrid\",\n    \"status_node_type\": \"initial_node\",\n    \"final_status_ok\": false,\n    \"final_status_not_ok\": false,\n    \"files\": [],\n    \"is_evaluable\": false,\n    \"typology\": {\n        \"hasLocation\": true,\n        \"id\": \"5850dca2e22c6d9f51b00c0f\",\n        \"color\": \"#ebc113\",\n        \"description_legend\": \"Ej: farola fundida\",\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n        \"location_type\": \"geolocation\",\n        \"name\": \"Aviso\",\n        \"order\": 1,\n        \"public\": true,\n        \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n        \"visible_name\": \"Aviso\",\n        \"with_authorized_users\": false,\n        \"with_description\": true,\n        \"with_files\": true,\n        \"with_geolocation_data\": true,\n        \"with_medias\": true,\n        \"with_temporality_data\": true\n    },\n    \"paused\": false,\n    \"creator\": {\n        \"hasPassword\": true,\n        \"channels\": [],\n        \"jurisdiction_element_channels\": [],\n        \"id\": \"67d2f56f887735a7be00f7bb\",\n        \"nickname\": \"witijah950\",\n        \"notification_channels\": [],\n        \"last_geofences\": []\n    },\n    \"informant\": {\n        \"hasPassword\": true,\n        \"channels\": [],\n        \"jurisdiction_element_channels\": [],\n        \"id\": \"67d2f56f887735a7be00f7bb\",\n        \"nickname\": \"witijah950\",\n        \"notification_channels\": [],\n        \"last_geofences\": []\n    },\n    \"has_required_assignments\": false,\n    \"current_status_assignments\": [],\n    \"public_visibility\": true,\n    \"user_id\": \"67d2f56f887735a7be00f7bb\",\n    \"accepted\": false,\n    \"additional_data\": [\n        {\n            \"type\": \"singleValueList\",\n            \"value\": \"resp1\",\n            \"value_translations\": {\n                \"es\": \"resp1\",\n                \"en\": \"\",\n                \"ca\": \"\",\n                \"eu\": \"\",\n                \"fr\": \"\",\n                \"es_MX\": \"\",\n                \"en_AU\": \"\"\n            },\n            \"question\": {\n                \"type\": \"singleValueList\",\n                \"active\": true,\n                \"code\": \"code_lista_simple\",\n                \"help_text\": \"\",\n                \"help_text_translations\": {\n                    \"es\": \"\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"id\": \"64706cd7a18ec0136f01dea5\",\n                \"question\": \"pregunta lista\",\n                \"question_translations\": {\n                    \"es\": \"pregunta lista\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"tags\": [],\n                \"possible_answers\": [\n                    {\n                        \"value\": \"resp1\",\n                        \"value_translations\": {\n                            \"es\": \"resp1\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"next_question_list\": {\n                            \"requiredVariables\": [],\n                            \"configurable_questions\": [\n                                {\n                                    \"editable\": false,\n                                    \"hidden_in_detail\": false,\n                                    \"hidden_in_form\": false,\n                                    \"hidden_in_open010_detail\": false,\n                                    \"hidden_in_open010_form\": false,\n                                    \"question\": {\n                                        \"type\": \"text\",\n                                        \"active\": true,\n                                        \"code\": \"complejo\",\n                                        \"help_text\": \"\",\n                                        \"help_text_translations\": {\n                                            \"es\": \"\",\n                                            \"en\": \"\",\n                                            \"ca\": \"\",\n                                            \"eu\": \"\",\n                                            \"fr\": \"\",\n                                            \"es_MX\": \"\",\n                                            \"en_AU\": \"\"\n                                        },\n                                        \"tags\": []\n                                    },\n                                    \"required\": false,\n                                    \"default_value\": \"\"\n                                }\n                            ],\n                            \"id\": \"5d3069e643b387a9018b4568\",\n                            \"name\": \"Localización BBVA\",\n                            \"use_cases\": [\n                                {\n                                    \"type\": \"linked_list\",\n                                    \"id\": \"66ed366037c0c32c020b5372\"\n                                }\n                            ],\n                            \"description\": \".\"\n                        }\n                    }\n                ]\n            }\n        }\n    ],\n    \"address\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n    \"comments_count\": 0,\n    \"complaining\": false,\n    \"current_node_estimated_final_datetime\": \"2025-03-15T16:26:45+00:00\",\n    \"current_node_estimated_start_datetime\": \"2025-03-13T16:26:45+00:00\",\n    \"description\": \"sdgsfsdfsdfsd\",\n    \"device_type\": {\n        \"alias\": \"Canal Web\",\n        \"id\": \"5850de88e22c6d9f51b17722\",\n        \"options\": [\n            \"web_channel\"\n        ]\n    },\n    \"estimated_final_datetime\": \"2025-03-26T16:26:44+00:00\",\n    \"estimated_start_datetime\": \"2025-03-13T16:26:44+00:00\",\n    \"evaluation\": 0,\n    \"first_name\": \"Pepito\",\n    \"following\": false,\n    \"jurisdiction_element\": {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5d9ee7bcde2efef4018b4569\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"guided_module\": false,\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n        \"id\": \"5c9b55579650e67d42985e80\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"es.madrid\",\n        \"type\": \"city\",\n        \"visible_name\": \"madrid\",\n        \"is_main\": false\n    },\n    \"last_name\": \"Perez\",\n    \"medias\": [],\n    \"observers\": [],\n    \"phone\": \"5551234\",\n    \"lat\": 40.54720023441,\n    \"long\": -3.6370539665222,\n    \"location_additional_data\": [],\n    \"priority\": {},\n    \"public\": true,\n    \"seen\": false,\n    \"service\": {\n        \"deleted\": false,\n        \"parent_service_name\": \"Alumbrado público\",\n        \"group\": \"5620e9176aa91815008b4567\",\n        \"jurisdiction_id\": \"est.madrid\",\n        \"visible_name\": \"Arquetas de alumbrado (Aviso)\",\n        \"id\": \"5620ec856aa918b1008b4567\",\n        \"additionalData\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"question\": {\n                        \"type\": \"datetime\",\n                        \"active\": true,\n                        \"code\": \"code_date\",\n                        \"help_text\": \"texto ayuda\",\n                        \"help_text_translations\": {\n                            \"es\": \"texto ayuda\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"64706c8ad0e52544940c4156\",\n                        \"question\": \"pregunta fecha\",\n                        \"question_translations\": {\n                            \"es\": \"pregunta fecha\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"id\": \"64706cdad70caf226b01ff66\",\n            \"name\": \"lista prueba multi\",\n            \"use_cases\": [\n                {\n                    \"type\": \"crm_extended_detail_internal\",\n                    \"id\": \"66e95e5f83ec90ea650b1a12\"\n                }\n            ]\n        },\n        \"social\": true,\n        \"evaluation\": true,\n        \"color\": \"#FBC02D\",\n        \"description\": \"Tapas arquetas de farolas deterioradas o inexistentes\",\n        \"hideEstimatedDate\": false,\n        \"mandatory_description\": true,\n        \"mandatory_files\": false,\n        \"mandatory_informant_config\": [\n            {\n                \"field\": \"first_name\",\n                \"message\": \"\",\n                \"required\": true\n            }\n        ],\n        \"mandatory_medias\": false,\n        \"max_upload_files\": 5,\n        \"max_upload_medias\": 5,\n        \"public\": true,\n        \"public_requests\": true,\n        \"service_code\": \"2\",\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png\",\n        \"service_name\": \"Arquetas de alumbrado\",\n        \"sponsoring_info\": {\n            \"display\": false\n        },\n        \"status_node\": [],\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"Aviso\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": false,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"with_informant\": true,\n        \"with_internal_informant\": true\n    },\n    \"service_request_id\": \"ALC43684\",\n    \"status_assignments\": [],\n    \"status_node\": {\n        \"status_node_type\": \"initial_node\",\n        \"name\": \"Nuevo\",\n        \"color\": \"#f1c40f\",\n        \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n        \"visible_name\": \"Nuevo\",\n        \"id\": \"5850dd1ee22c6d9f51b0157b\",\n        \"order\": 1,\n        \"planned\": false\n    },\n    \"supporting\": false,\n    \"tags\": [],\n    \"token\": \"67d307454e10cee6cc011a37\",\n    \"user\": {\n        \"hasPassword\": true,\n        \"channels\": [],\n        \"jurisdiction_element_channels\": [],\n        \"id\": \"67d2f56f887735a7be00f7bb\",\n        \"nickname\": \"witijah950\",\n        \"notification_channels\": [],\n        \"last_geofences\": []\n    },\n    \"zones\": [\n        {}\n    ],\n    \"worknotes_count\": 0\n}"
                },
                {
                  "id": "22e5cc49-710b-482b-b470-9c3273c7dcfb",
                  "name": "Check Duplicates Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/request_duplicate?service_id={{service_id}}&lat={{latitude}}&lng={{longitude}}{{device_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request_duplicate"
                      ],
                      "query": [
                        {
                          "key": "service_id",
                          "value": "{{service_id}}",
                          "description": "[required]. String - Permite identificar la categoria a la que pertenece el aviso o ticket"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}",
                          "description": "[required]. Float - Coordenada de latitud geográfica."
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}",
                          "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": "{{publicBaseUrl}}/request_duplicate?service_id={{service_id}}&lat={{latitude}}&lng={{longitude}}{{device_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request_duplicate"
                      ],
                      "query": [
                        {
                          "key": "service_id",
                          "value": "{{service_id}}",
                          "description": "[required]. String - Permite identificar la categoria a la que pertenece el aviso o ticket"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}",
                          "description": "[required]. Float - Coordenada de latitud geográfica."
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}",
                          "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": "{\n    \"code\": 404,\n    \"description\": \"Service not configured\"\n}"
                },
                {
                  "id": "8ce7f7fd-50de-4eae-ad96-889792982f8d",
                  "name": "Check Duplicates Without Coordinates",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/request_duplicate?service_id={{service_id}}&lat={{latitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request_duplicate"
                      ],
                      "query": [
                        {
                          "key": "service_id",
                          "value": "{{service_id}}",
                          "description": "[required]. String - Permite identificar la categoria a la que pertenece el aviso o ticket"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}",
                          "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": "{\n    \"code\": 404,\n    \"description\": \"Lat and lng required\"\n}"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/requests/{{token}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests",
                    "{{token}}"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso token."
                    }
                  ]
                },
                "description": "**Request param**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| request_id | String | \\[required\\]. ID de la request sobre la cual se requiere obtener el detalle correspondiente. |\n\nEste 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": "{{publicBaseUrl}}/requests/{{token}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests",
                        "{{token}}"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"deleted\": false,\n    \"jurisdiction_name\": \"Madrid Móvil\",\n    \"service_id\": \"5627630d6aa918d3008b456a\",\n    \"service_icon\": \"https://mtc.vdeveloper.lan/uploads/local/service_icons/5db19490928b3.png\",\n    \"service_code\": \"5\",\n    \"service_name\": \"Farolas\",\n    \"requested_datetime\": \"2025-03-12T13:28:48+00:00\",\n    \"supporting_count\": 0,\n    \"following_count\": 0,\n    \"evaluations_count\": 0,\n    \"updated_datetime\": \"2025-03-12T13:28:53+00:00\",\n    \"evaluations_avg\": -1,\n    \"reiterations_count\": 0,\n    \"complaints_count\": 0,\n    \"jurisdiction_id\": \"es.madrid\",\n    \"status_node_type\": \"initial_node\",\n    \"files\": [],\n    \"is_evaluable\": false,\n    \"typology\": {\n        \"hasLocation\": true,\n        \"id\": \"5850dca2e22c6d9f51b00c0f\",\n        \"color\": \"#ebc113\",\n        \"description_legend\": \"Ej: farola fundida\",\n        \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/typology_icons/5b5c6827519b7.png\",\n        \"location_type\": \"geolocation\",\n        \"name\": \"Aviso\",\n        \"order\": 1,\n        \"public\": true,\n        \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n        \"visible_name\": \"Aviso\",\n        \"with_authorized_users\": false,\n        \"with_description\": true,\n        \"with_files\": true,\n        \"with_geolocation_data\": true,\n        \"with_medias\": true,\n        \"with_temporality_data\": true\n    },\n    \"current_status_assignments\": [],\n    \"public_visibility\": true,\n    \"accepted\": false,\n    \"additional_data\": [\n        {\n            \"type\": \"singleValueList\",\n            \"value\": \"Sí\",\n            \"value_translations\": {\n                \"es\": \"Sí\",\n                \"en\": \"\",\n                \"ca\": \"\",\n                \"eu\": \"\",\n                \"fr\": \"\",\n                \"es_MX\": \"\",\n                \"en_AU\": \"\"\n            },\n            \"question\": {\n                \"type\": \"singleValueList\",\n                \"active\": true,\n                \"code\": \"montaje_caseta1\",\n                \"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._\",\n                \"help_text_translations\": {\n                    \"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._\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"id\": \"67a4d346368ebfa05405809c\",\n                \"question\": \"Autorización de montaje\",\n                \"question_translations\": {\n                    \"es\": \"Autorización de montaje\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"tags\": [],\n                \"possible_answers\": [\n                    {\n                        \"value\": \"Sí\",\n                        \"value_translations\": {\n                            \"es\": \"Sí\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"next_question_list\": {\n                            \"requiredVariables\": [],\n                            \"configurable_questions\": [\n                                {\n                                    \"editable\": true,\n                                    \"hidden_in_detail\": false,\n                                    \"hidden_in_form\": false,\n                                    \"hidden_in_open010_detail\": false,\n                                    \"hidden_in_open010_form\": false,\n                                    \"question\": {\n                                        \"type\": \"label\",\n                                        \"active\": true,\n                                        \"code\": \"Funcionamiento_feria\",\n                                        \"help_text\": \"\",\n                                        \"help_text_translations\": {\n                                            \"es\": \"\",\n                                            \"en\": \"\",\n                                            \"ca\": \"\",\n                                            \"eu\": \"\",\n                                            \"fr\": \"\",\n                                            \"es_MX\": \"\",\n                                            \"en_AU\": \"\"\n                                        },\n                                        \"id\": \"67a4922f368ebfa054058094\",\n                                        \"question\": \"## 📋 Funcionamiento del formulario\",\n                                        \"question_translations\": {\n                                            \"es\": \"## 📋 Funcionamiento del formulario\",\n                                            \"en\": \"\",\n                                            \"ca\": \"\",\n                                            \"eu\": \"\",\n                                            \"fr\": \"\",\n                                            \"es_MX\": \"\",\n                                            \"en_AU\": \"\"\n                                        },\n                                        \"tags\": []\n                                    },\n                                    \"required\": false,\n                                    \"default_value\": \"\"\n                                }\n                            ],\n                            \"id\": \"67a23e97568815817600a1b3\",\n                            \"name\": \"prueba_feria1\",\n                            \"use_cases\": [\n                                {\n                                    \"type\": \"linked_list\",\n                                    \"id\": \"66ed366037c0c32c020b5372\"\n                                }\n                            ],\n                            \"description\": \"Certificado de seguridad y solidez\"\n                        }\n                    }\n                ]\n            }\n        }\n    ],\n    \"address\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n    \"backoffice_user\": {},\n    \"comments_count\": 1,\n    \"complaining\": false,\n    \"current_node_estimated_final_datetime\": \"2025-03-14T13:27:00+00:00\",\n    \"current_node_estimated_start_datetime\": \"2025-03-12T13:27:00+00:00\",\n    \"description\": \"Prueba\",\n    \"estimated_final_datetime\": \"2025-03-25T13:27:00+00:00\",\n    \"estimated_start_datetime\": \"2025-03-12T13:27:00+00:00\",\n    \"evaluation\": 0,\n    \"following\": {\n        \"isFollowing\": false\n    },\n    \"jurisdiction_element\": {\n        \"map_layers\": [\n            {\n                \"backend\": \"OWS\",\n                \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                \"id\": \"5d9ee7bcde2efef4018b4569\",\n                \"is_default\": false,\n                \"color\": \"#000000\",\n                \"internal_name\": \"zones_prod:Alc_Distritos\",\n                \"name\": \"Distritos\",\n                \"description\": \"Distritos\",\n                \"preset\": false,\n                \"public\": true,\n                \"tags\": [],\n                \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                \"type\": \"ADMINISTRATIVE\"\n            }\n        ],\n        \"extent\": [\n            -3.70038574,\n            40.50117283,\n            -3.55027416,\n            40.58886137\n        ],\n        \"guided_module\": false,\n        \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/jurisdiction_element/674ddb7deef43095450720.png\",\n        \"id\": \"5c9b55579650e67d42985e80\",\n        \"location_additional_data\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"question\": {\n                        \"type\": \"text\",\n                        \"active\": true,\n                        \"code\": \"distrito_T\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"5de929ca0007544c098b4578\",\n                        \"question\": \"Distrito\",\n                        \"question_translations\": {\n                            \"es\": \"Distrito\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"distrito\",\n                                \"color\": \"#000000\",\n                                \"id\": \"distrito\"\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"response_attribute\": \"Distrito\",\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\",\n            \"id\": \"5ea6b00322bce3c7058b45a9\",\n            \"name\": \"Datos Adicionales de Localización ES\",\n            \"use_cases\": [\n                {\n                    \"type\": \"linked_list\",\n                    \"id\": \"675738c67470888ae20cc926\",\n                    \"description\": \"Prueba 01\"\n                }\n            ],\n            \"description\": \"Datos adicionales1\"\n        },\n        \"name\": \"es.madrid\",\n        \"type\": \"city\",\n        \"visible_name\": \"Madrid Móvil\",\n        \"is_main\": false\n    },\n    \"medias\": [\n        {\n            \"created_at\": \"2025-03-12T13:28:52+00:00\",\n            \"id\": \"67d18c144d115a245901cc02\",\n            \"public\": true,\n            \"type\": \"image/png\",\n            \"media_url\": \"https://mtc.vdeveloper.lan/uploads/local/open010/67d18c148b6ec466193645.png\",\n            \"created_datetime\": \"2025-03-12T13:28:52+00:00\",\n            \"deleted\": false,\n            \"media_code\": \"67d18c144d115a245901cc02\",\n            \"check_distance\": \"no_data\",\n            \"check_time\": \"no_data\",\n            \"media_metadata\": {\n                \"location_additional_data\": [],\n                \"created\": \"2025-03-12T13:28:52+00:00\"\n            },\n            \"tags\": []\n        }\n    ],\n    \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n    \"lat\": 40.533558843103,\n    \"long\": -3.6451943496226,\n    \"location_additional_data\": [\n        {\n            \"type\": \"text\",\n            \"value\": \"Empresarial\",\n            \"question\": {\n                \"type\": \"text\",\n                \"active\": true,\n                \"code\": \"distrito_T\",\n                \"help_text\": \"\",\n                \"help_text_translations\": {\n                    \"es\": \"\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"id\": \"5de929ca0007544c098b4578\",\n                \"question\": \"Distrito\",\n                \"question_translations\": {\n                    \"es\": \"Distrito\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"tags\": [\n                    {\n                        \"name\": \"distrito\",\n                        \"color\": \"#000000\",\n                        \"id\": \"distrito\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"priority\": {},\n    \"public\": true,\n    \"seen\": false,\n    \"service\": {\n        \"deleted\": false,\n        \"parent_service_name\": \"Alumbrado público\",\n        \"group\": \"5620e9176aa91815008b4567\",\n        \"jurisdiction_id\": \"es.madrid\",\n        \"visible_name\": \"Farolas (Aviso)\",\n        \"id\": \"5627630d6aa918d3008b456a\",\n        \"additionalData\": {\n            \"requiredVariables\": [\n                \"5de929ca0007544c098b4578\"\n            ],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"question\": {\n                        \"type\": \"label\",\n                        \"active\": true,\n                        \"code\": \"Titulo_ordenanzalegal\",\n                        \"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._\",\n                        \"help_text_translations\": {\n                            \"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._\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"67a4d41d3074f177c00b3f40\",\n                        \"question\": \"## Ordenanza legal\",\n                        \"question_translations\": {\n                            \"es\": \"## Ordenanza legal\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": []\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"endpoint\": \"https://feria.free.beeceptor.com/todos?distrito=%5de929ca0007544c098b4578%\",\n            \"id\": \"67a4d351a35d066cff07c6e8\",\n            \"name\": \"encadenada_caseta\",\n            \"use_cases\": [],\n            \"description\": \"Autorización de montaje\"\n        },\n        \"social\": true,\n        \"evaluation\": true,\n        \"color\": \"#FBC02D\",\n        \"description\": \"Baculo deteriorado, inclinado o caído. Luz intermitente o apagada. Luminaria rota o abierta\",\n        \"hideEstimatedDate\": true,\n        \"mandatory_description\": true,\n        \"mandatory_files\": true,\n        \"mandatory_informant_config\": [\n            {\n                \"field\": \"first_name\",\n                \"message\": \"\",\n                \"required\": false\n            }\n        ],\n        \"mandatory_medias\": true,\n        \"max_upload_files\": 1,\n        \"max_upload_medias\": 2,\n        \"public\": true,\n        \"public_requests\": true,\n        \"service_code\": \"5\",\n        \"service_icon\": \"https://mtc.vdeveloper.lan/uploads/local/service_icons/5db19490928b3.png\",\n        \"service_name\": \"Farolas\",\n        \"sponsoring_info\": {\n            \"display\": false\n        },\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"Aviso\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": false,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"with_informant\": true,\n        \"with_internal_informant\": true,\n        \"with_authorized_internal_users\": true\n    },\n    \"service_request_id\": \"ALC43683\",\n    \"status_node\": {\n        \"status_node_type\": \"initial_node\",\n        \"name\": \"Nuevo\",\n        \"color\": \"#f1c40f\",\n        \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n        \"visible_name\": \"Nuevo\",\n        \"id\": \"5850dd1fe22c6d9f51b0158d\",\n        \"order\": 1,\n        \"planned\": false\n    },\n    \"supporting\": false,\n    \"tags\": [],\n    \"token\": \"67d18c1105bb19eb24016579\",\n    \"worknotes_count\": 1,\n    \"media_url\": \"https://mtc.vdeveloper.lan/uploads/local/open010/67d18c148b6ec466193645.png\"\n}"
                },
                {
                  "id": "8b0568d2-dc50-4f71-837a-0fe0da7706b2",
                  "name": "Request Detail Empty",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests/{{token}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests",
                        "{{token}}"
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 404,\n    \"description\": \"Request was not found\"\n}"
                }
              ]
            },
            {
              "name": "Get Request Media",
              "id": "88b0896d-51c4-4c30-b63c-553323ba0d40",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/request/{{token}}/medias",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "{{token}}",
                    "medias"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso request token."
                    }
                  ]
                },
                "description": "**Request param**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| request_token | String | \\[required\\].ID de la request de la cual se desean obtener las imágenes asociadas. (Ej. 690502a24e28f2eca706ecde) |\n\nEste 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": "{{publicBaseUrl}}/request/{{token}}/medias",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "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": "{\n    \"created_at\": \"2014-08-21T12:54:52+00:00\",\n    \"id\": \"53f5ec1de940f6032c8b4567\",\n    \"public\": true,\n    \"type\": \"1\",\n    \"media_url\": \"https://mtc.vxavi.lan/uploads/local/open010/53f5ec1cb0edf.jpg\",\n    \"created_datetime\": \"2014-08-21T12:54:52+00:00\",\n    \"deleted\": false,\n    \"media_code\": \"53f5ec1de940f6032c8b4567\",\n    \"check_distance\": \"no_data\",\n    \"check_time\": \"no_data\",\n    \"request\": {\n        \"deleted\": false,\n        \"jurisdiction_name\": \"Summit Smart Cities\",\n        \"service_id\": \"53f5eb12e940f6ba228b456a\",\n        \"service_code\": \"2\",\n        \"service_name\": \"Mobiliario urbano\",\n        \"requested_datetime\": \"2014-08-21T12:54:52+00:00\",\n        \"supporting_count\": 0,\n        \"following_count\": 0,\n        \"evaluations_count\": 0,\n        \"updated_datetime\": \"2018-09-27T10:55:07+00:00\",\n        \"evaluations_avg\": -1,\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"org.summit2014\",\n        \"status_node_type\": \"middle_node\",\n        \"files\": [],\n        \"is_evaluable\": false,\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c06\",\n            \"color\": \"#666666\",\n            \"description_legend\": \"\",\n            \"icon\": \"https://mtc.vxavi.lan/uploads/local/typology_icons/5b5c6825c8e85.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"aviso\",\n            \"public\": true,\n            \"typology_description\": \"\",\n            \"visible_name\": \"Aviso\",\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_medias\": true\n        },\n        \"current_status_assignments\": [\n            {\n                \"category\": {\n                    \"name\": \"Técnico Avisos\"\n                },\n                \"user_group\": {\n                    \"company\": {\n                        \"alias\": \"Equipo de Limpieza\"\n                    }\n                }\n            }\n        ],\n        \"public_visibility\": true,\n        \"accepted\": false,\n        \"additional_data\": [],\n        \"address\": \"Raulí 649-683, Santiago Centro, Región Metropolitana de Santiago, Chile\",\n        \"backoffice_user\": {},\n        \"comments_count\": 0,\n        \"complaining\": false,\n        \"description\": \"Mesa en mal estado\",\n        \"evaluation\": 0,\n        \"following\": false,\n        \"medias\": [],\n        \"address_string\": \"Raulí 649-683, Santiago Centro, Región Metropolitana de Santiago, Chile\",\n        \"lat\": -33.4510104,\n        \"long\": -70.63603239999998,\n        \"location_additional_data\": [],\n        \"priority\": {},\n        \"public\": true,\n        \"seen\": true,\n        \"service\": {\n            \"deleted\": false,\n            \"parent_service_name\": \"\",\n            \"group\": \"\",\n            \"visible_name\": \"Mobiliario urbano (Aviso)\",\n            \"id\": \"53f5eb12e940f6ba228b456a\",\n            \"social\": true,\n            \"evaluation\": true,\n            \"color\": \"#4abd85\",\n            \"hideEstimatedDate\": false,\n            \"mandatory_description\": true,\n            \"mandatory_files\": false,\n            \"mandatory_informant_config\": [\n                {\n                    \"field\": \"first_name\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"last_name\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"email\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"twitter_nickname\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"id_document\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"addresses\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"gender\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"secondary_phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"birthday\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"user_location_area\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"address\",\n                    \"message\": \"\",\n                    \"required\": false\n                }\n            ],\n            \"mandatory_medias\": false,\n            \"max_upload_files\": 5,\n            \"max_upload_medias\": 5,\n            \"public\": true,\n            \"public_requests\": true,\n            \"service_code\": \"2\",\n            \"service_icon\": \"https://mtc.vxavi.lan/uploads/local/service_icons/5b5c66c0a883c.png\",\n            \"status_node\": [],\n            \"typology\": {\n                \"hasLocation\": true,\n                \"id\": \"5850dca2e22c6d9f51b00c06\",\n                \"color\": \"#666666\",\n                \"description_legend\": \"\",\n                \"icon\": \"https://mtc.vxavi.lan/uploads/local/typology_icons/5b5c6825c8e85.png\",\n                \"location_type\": \"geolocation\",\n                \"name\": \"aviso\",\n                \"public\": true,\n                \"typology_description\": \"\",\n                \"visible_name\": \"Aviso\",\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_medias\": true\n            },\n            \"with_informant\": true,\n            \"with_internal_informant\": true\n        },\n        \"service_request_id\": \"14086256928\",\n        \"status_node\": {\n            \"status_node_type\": \"middle_node\",\n            \"name\": \"en_progreso\",\n            \"color\": \"#FFAB00\",\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c2d\",\n            \"visible_name\": \"En progreso\",\n            \"id\": \"5850dcc3e22c6d9f51b00efe\",\n            \"order\": 0,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"53f5ec1de940f6032c8b4568\",\n        \"media_url\": \"https://mtc.vxavi.lan/uploads/local/open010/53f5ec1cb0edf.jpg\"\n    },\n    \"tags\": []\n}"
                },
                {
                  "id": "fa43495d-9fa5-4f9a-903b-39cf3afae6b8",
                  "name": "Get Request Media Empty",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/request/{{token}}/medias",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "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": "{\n    \"code\": 400,\n    \"description\": \"request_token not exist\"\n}"
                }
              ]
            },
            {
              "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": "{{mapaUrl}}"
                  },
                  {
                    "key": "Connection",
                    "value": "keep-alive"
                  },
                  {
                    "key": "Referer",
                    "value": "{{mapaUrl}}/"
                  },
                  {
                    "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": "{{publicBaseUrl}}/requests/coordinates?jurisdiction_ids={{jurisdiction_id}}&lat={{latitude}}&limit={{limit}}&long={{longitude}}&own=true",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests",
                    "coordinates"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_ids",
                      "value": "{{jurisdiction_id}}",
                      "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": "lat",
                      "value": "{{latitude}}",
                      "description": "Float. [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (latitud)."
                    },
                    {
                      "key": "limit",
                      "value": "{{limit}}",
                      "description": "Integer. [optional]. Permite limitar la cantidad de resultados obtenidos por página."
                    },
                    {
                      "key": "long",
                      "value": "{{longitude}}",
                      "description": "Float. [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (longitud)."
                    },
                    {
                      "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)."
                    }
                  ]
                },
                "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": "{{mapaUrl}}"
                      },
                      {
                        "key": "Connection",
                        "value": "keep-alive"
                      },
                      {
                        "key": "Referer",
                        "value": "{{mapaUrl}}/"
                      },
                      {
                        "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": "{{publicBaseUrl}}/requests/coordinates?jurisdiction_ids={{jurisdiction_id}}&limit={{limit}}&own=true&lat={{latitude}}&long={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests",
                        "coordinates"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}",
                          "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": "{{limit}}",
                          "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": "{{latitude}}",
                          "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": "{{longitude}}",
                          "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": "[\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.52528265385,\n        \"long\": -3.62548828125,\n        \"token\": \"6931a26b70d10e94e8098d15\"\n    }\n]"
                },
                {
                  "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": "{{mapaUrl}}"
                      },
                      {
                        "key": "Connection",
                        "value": "keep-alive"
                      },
                      {
                        "key": "Referer",
                        "value": "{{mapaUrl}}/"
                      },
                      {
                        "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": "{{publicBaseUrl}}/requests/coordinates?limit={{limit}}&own=true&lat={{latitude}}&long={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests",
                        "coordinates"
                      ],
                      "query": [
                        {
                          "key": "limit",
                          "value": "{{limit}}",
                          "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": "{{latitude}}",
                          "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": "{{longitude}}",
                          "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": "[\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.52528265385,\n        \"long\": -3.62548828125,\n        \"token\": \"6931a26b70d10e94e8098d15\"\n    }\n]"
                },
                {
                  "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": "{{mapaUrl}}"
                      },
                      {
                        "key": "Connection",
                        "value": "keep-alive"
                      },
                      {
                        "key": "Referer",
                        "value": "{{mapaUrl}}/"
                      },
                      {
                        "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": "{{publicBaseUrl}}/requests/coordinates?jurisdiction_ids={{jurisdiction_id}}&limit={{limit}}&own=false&lat={{latitude}}&long={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests",
                        "coordinates"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}",
                          "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": "{{limit}}",
                          "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": "{{latitude}}",
                          "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": "{{longitude}}",
                          "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": "[\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.52528265385,\n        \"long\": -3.62548828125,\n        \"token\": \"6931a26b70d10e94e8098d15\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692f05aa842a68178c050196\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692f0252842a68178c05018f\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd77da210f331ac087187\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd76cb8b9f6918a0e0386\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd6315f98c86b560dfdb6\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd39db8b9f6918a0e037f\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd38ba8914add0604c24c\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd2f6a210f331ac087179\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd2f13164123bec033e58\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd23da8914add0604c245\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dcf993164123bec033e51\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dce3a5f98c86b560dfda8\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dcdceb8b9f6918a0e0371\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dcda9a8914add0604c23e\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dcb0cb8b9f6918a0e0368\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dcaf2a8914add0604c235\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692d97d1a8914add0604c218\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692a6783236e36d3f30173cd\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692a64d26776231a1a0378f6\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692a6425d361484694000886\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692a62f914f60fd3d800a876\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692a08c2fccaacc0a808042a\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6929f94de60a7c6ab20735c9\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6929f79fe524e52ba10abb77\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6929ead2437d68e36c02a40c\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6929e73c362d2dae9d001646\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6929e6b1189af4dcbd094c56\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6928c1da219552d51c07dd96\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Dalia, 375, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.525073917534,\n        \"long\": -3.6366227414177,\n        \"token\": \"6928b101090476c76e06d8ce\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Dalia, 375, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.525073917534,\n        \"long\": -3.6366227414177,\n        \"token\": \"6928b0189065fdb417019b65\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68d1bfb44e1c1777530c7aa2\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Municipality of Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5371361,\n        \"long\": -3.6370715,\n        \"token\": \"68d1bf3f70aaf4926901fc83\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Municipality of Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5371361,\n        \"long\": -3.6370715,\n        \"token\": \"68d1bef84e1c1777530c7a9a\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Municipality of Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5371361,\n        \"long\": -3.6370715,\n        \"token\": \"68d1bee7238dd8923804efd8\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68d1be4374e3e1147c097ad9\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Municipality of Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5371361,\n        \"long\": -3.6370715,\n        \"token\": \"68d1a94d590ad9af9f03baef\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68d14a15238dd8923804efc4\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Luis Rodríguez Ontiveros, 78, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549224853516,\n        \"long\": -3.6409599781036,\n        \"token\": \"68d0c6a7519532e5c30d82ac\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Caléndula, 208, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.527778097213,\n        \"long\": -3.6446875333786,\n        \"token\": \"68d0b9a09c1d37d0870e0daf\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Camino de Hoyarrasa, 32, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.529082867208,\n        \"long\": -3.6245226860046,\n        \"token\": \"68d0b90209e5f7c588081cb7\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Halcón, 2, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5255927,\n        \"long\": -3.6265079,\n        \"token\": \"68d085b324c1fe3f5d0aa4a5\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Halcón, 2, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.525644681244,\n        \"long\": -3.6263399258762,\n        \"token\": \"68d0854e0ba6dbf2380761e6\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Valdelaparra, 3, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379861,\n        \"long\": -3.6440703,\n        \"token\": \"68d08505899244f3470d1378\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Valdelaparra, 3, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.538258139613,\n        \"long\": -3.6440129341263,\n        \"token\": \"68d082d523271942e10d6b99\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379949,\n        \"long\": -3.6373992,\n        \"token\": \"68cd35467da03b88d6050eb7\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. Olímpica, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5367484,\n        \"long\": -3.6321514,\n        \"token\": \"68cc76eac3f255c3790a9534\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5389461,\n        \"long\": -3.6380202,\n        \"token\": \"68cc6f6e19dc4940c9024bd5\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Carr. de Madrid a Burgos, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.532755559787,\n        \"long\": -3.6393194741136,\n        \"token\": \"68cc5fe8c3f255c3790a9529\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"GC72+4C Madrid, Spain\",\n        \"lat\": 40.512792577888,\n        \"long\": -3.5989276283067,\n        \"token\": \"68cc30f8c3f255c3790a951d\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"M-12, 585, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.530702112944,\n        \"long\": -3.6130632957233,\n        \"token\": \"68cc30511ea2951465026484\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Caléndula, 6, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.533260227335,\n        \"long\": -3.6420077575764,\n        \"token\": \"68cc2f9abcb1142db60870c1\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Caléndula, 6, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.533260227335,\n        \"long\": -3.6420077575764,\n        \"token\": \"68cc2f72e1919d475e028188\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Salvia, 30, 28109 Madrid, Spain\",\n        \"lat\": 40.528143900896,\n        \"long\": -3.631237725259,\n        \"token\": \"68cc1ab01b7ac09eef03554b\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68cc0e42f5de6a92e2085d19\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68cc08b072ea31443e000137\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Pl. Mayor, 1, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5474364,\n        \"long\": -3.6417961,\n        \"token\": \"68cbcb248f26354bf505f4e8\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 7, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379051,\n        \"long\": -3.6375546,\n        \"token\": \"68cb9a35ba105bedff080917\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Bruselas, 29, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.52957864212,\n        \"long\": -3.638483054237,\n        \"token\": \"68cb2e565061c508bb0ddbd0\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. Olímpica, 9, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.534026284682,\n        \"long\": -3.6368102144837,\n        \"token\": \"68cb2db10f88f7ff0600f5de\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"GCM2+C5 Alcobendas, Spain\",\n        \"lat\": 40.533503339924,\n        \"long\": -3.5996029042337,\n        \"token\": \"68cb22efba105bedff0808a0\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"Av. de la Industria, 4, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.535426039679,\n        \"long\": -3.6418222521334,\n        \"token\": \"68cb1e4b858efcd66a061a54\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"Av. de la Industria, 4, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.535932326838,\n        \"long\": -3.6418287337436,\n        \"token\": \"68cb1d635b76da9e7e05db75\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"Azalea-PºDe Alcobendas, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.525130704358,\n        \"long\": -3.6343009548538,\n        \"token\": \"68cb18eb5b76da9e7e05db6b\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5389461,\n        \"long\": -3.6380202,\n        \"token\": \"68cb17b80f88f7ff0600f5d7\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68cb17a55061c508bb0ddb94\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68cb0bf5858efcd66a061a50\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 8, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5381924,\n        \"long\": -3.6375022,\n        \"token\": \"68caa7f789887827df04dfb1\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 3, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379178,\n        \"long\": -3.6375222,\n        \"token\": \"68caa7b4e885555ed706e649\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379949,\n        \"long\": -3.6373992,\n        \"token\": \"68ca8a875c47836b7602c177\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Pl. Mayor, 1, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5474364,\n        \"long\": -3.6417961,\n        \"token\": \"68ca86454a9034805809dea1\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Constitución, 129, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.54871,\n        \"long\": -3.6465873,\n        \"token\": \"68c89a3294ef9d8e3a04f1e5\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Cuesta del Cerro, 134, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.524270216473,\n        \"long\": -3.6327836589804,\n        \"token\": \"68c7d47eefa5daf1ce08dde7\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Joaquín Rodrigo, 3, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.547949,\n        \"long\": -3.6420561,\n        \"token\": \"68c7cf320ef81450fb0e5d45\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Blas de Otero, 4, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.547605,\n        \"long\": -3.6419796,\n        \"token\": \"68c01334a0241c076b0f0a28\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379949,\n        \"long\": -3.6373992,\n        \"token\": \"68bef7e50d35876da0096d86\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de la Chopera, 185, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.544145907268,\n        \"long\": -3.6544062895649,\n        \"token\": \"68be9a8126183dd62b023439\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Marqués de la Valdavia, 134, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.546990272268,\n        \"long\": -3.6520267506622,\n        \"token\": \"68b5b0ebe44f50d51902363a\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Calle Encinar, 3D, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.537766535264,\n        \"long\": -3.6421077817783,\n        \"token\": \"68b5b00449c9581c720a87c0\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º del Conde de los Gaitanes, 51, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.523609600764,\n        \"long\": -3.6299710008578,\n        \"token\": \"68b5af2765dd2fdc5e0143db\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Bruselas, 29, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.529023461169,\n        \"long\": -3.6395182895172,\n        \"token\": \"68b5ae45e44f50d51902362d\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Maliciosa, 3, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.538858790191,\n        \"long\": -3.658710311209,\n        \"token\": \"68b5ad7fe1c8d25976091aad\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Valdelaparra, 33C, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.538858790191,\n        \"long\": -3.6486918954648,\n        \"token\": \"68b5aa4dc522d57aa70d84b8\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Huelva, 10A, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.540891753253,\n        \"long\": -3.650030022434,\n        \"token\": \"68b5a831c522d57aa70d84b0\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Petunia, 3, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.529201373143,\n        \"long\": -3.6366487527415,\n        \"token\": \"68b5a7ed2ae2be9bc801340c\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Bruselas, 21, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.530868729958,\n        \"long\": -3.6374455690384,\n        \"token\": \"68b5a1492ae2be9bc8013401\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Bruselas, 21, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.530868729958,\n        \"long\": -3.6374455690384,\n        \"token\": \"68b5a12f074f1a6e55050289\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Camino Nuevo, 106, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.522048071386,\n        \"long\": -3.6371317056783,\n        \"token\": \"68b594be65dd2fdc5e0143b1\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Camino Nuevo, 106, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.522048071386,\n        \"long\": -3.6371317056783,\n        \"token\": \"68b594b12ae2be9bc80133dd\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de la Chopera, 287D, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.54498271006,\n        \"long\": -3.6575889587402,\n        \"token\": \"68b1c952ab3726d6130a73ab\"\n    }\n]"
                },
                {
                  "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": "{{mapaUrl}}"
                      },
                      {
                        "key": "Connection",
                        "value": "keep-alive"
                      },
                      {
                        "key": "Referer",
                        "value": "{{mapaUrl}}/"
                      },
                      {
                        "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": "{{publicBaseUrl}}/requests/coordinates?limit={{limit}}&lat={{latitude}}&long={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests",
                        "coordinates"
                      ],
                      "query": [
                        {
                          "key": "limit",
                          "value": "{{limit}}",
                          "description": "Int [optional]. Permite limitar la cantidad de resultados obtenidos por página.",
                          "uuid": "dcc987ea-970f-44c3-b915-e90f66f82bb0"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}",
                          "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": "{{longitude}}",
                          "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": "[\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.52528265385,\n        \"long\": -3.62548828125,\n        \"token\": \"6931a26b70d10e94e8098d15\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692f05aa842a68178c050196\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692f0252842a68178c05018f\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd77da210f331ac087187\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd76cb8b9f6918a0e0386\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd6315f98c86b560dfdb6\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd39db8b9f6918a0e037f\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd38ba8914add0604c24c\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd2f6a210f331ac087179\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd2f13164123bec033e58\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dd23da8914add0604c245\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dcf993164123bec033e51\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dce3a5f98c86b560dfda8\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dcdceb8b9f6918a0e0371\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dcda9a8914add0604c23e\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dcb0cb8b9f6918a0e0368\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692dcaf2a8914add0604c235\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692d97d1a8914add0604c218\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692a6783236e36d3f30173cd\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692a64d26776231a1a0378f6\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692a6425d361484694000886\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692a62f914f60fd3d800a876\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549169501264,\n        \"long\": -3.6588359330724,\n        \"token\": \"692a08c2fccaacc0a808042a\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6929f94de60a7c6ab20735c9\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6929f79fe524e52ba10abb77\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6929ead2437d68e36c02a40c\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6929e73c362d2dae9d001646\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6929e6b1189af4dcbd094c56\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.520519845197,\n        \"long\": -3.6251795820805,\n        \"token\": \"6928c1da219552d51c07dd96\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Dalia, 375, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.525073917534,\n        \"long\": -3.6366227414177,\n        \"token\": \"6928b101090476c76e06d8ce\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Dalia, 375, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.525073917534,\n        \"long\": -3.6366227414177,\n        \"token\": \"6928b0189065fdb417019b65\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68d1bfb44e1c1777530c7aa2\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Municipality of Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5371361,\n        \"long\": -3.6370715,\n        \"token\": \"68d1bf3f70aaf4926901fc83\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Municipality of Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5371361,\n        \"long\": -3.6370715,\n        \"token\": \"68d1bef84e1c1777530c7a9a\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Municipality of Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5371361,\n        \"long\": -3.6370715,\n        \"token\": \"68d1bee7238dd8923804efd8\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68d1be4374e3e1147c097ad9\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Municipality of Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5371361,\n        \"long\": -3.6370715,\n        \"token\": \"68d1a94d590ad9af9f03baef\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68d14a15238dd8923804efc4\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Luis Rodríguez Ontiveros, 78, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.549224853516,\n        \"long\": -3.6409599781036,\n        \"token\": \"68d0c6a7519532e5c30d82ac\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Caléndula, 208, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.527778097213,\n        \"long\": -3.6446875333786,\n        \"token\": \"68d0b9a09c1d37d0870e0daf\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Camino de Hoyarrasa, 32, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.529082867208,\n        \"long\": -3.6245226860046,\n        \"token\": \"68d0b90209e5f7c588081cb7\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Halcón, 2, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5255927,\n        \"long\": -3.6265079,\n        \"token\": \"68d085b324c1fe3f5d0aa4a5\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Halcón, 2, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.525644681244,\n        \"long\": -3.6263399258762,\n        \"token\": \"68d0854e0ba6dbf2380761e6\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Valdelaparra, 3, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379861,\n        \"long\": -3.6440703,\n        \"token\": \"68d08505899244f3470d1378\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Valdelaparra, 3, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.538258139613,\n        \"long\": -3.6440129341263,\n        \"token\": \"68d082d523271942e10d6b99\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379949,\n        \"long\": -3.6373992,\n        \"token\": \"68cd35467da03b88d6050eb7\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. Olímpica, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5367484,\n        \"long\": -3.6321514,\n        \"token\": \"68cc76eac3f255c3790a9534\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5389461,\n        \"long\": -3.6380202,\n        \"token\": \"68cc6f6e19dc4940c9024bd5\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Carr. de Madrid a Burgos, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.532755559787,\n        \"long\": -3.6393194741136,\n        \"token\": \"68cc5fe8c3f255c3790a9529\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"GC72+4C Madrid, Spain\",\n        \"lat\": 40.512792577888,\n        \"long\": -3.5989276283067,\n        \"token\": \"68cc30f8c3f255c3790a951d\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"M-12, 585, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.530702112944,\n        \"long\": -3.6130632957233,\n        \"token\": \"68cc30511ea2951465026484\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Caléndula, 6, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.533260227335,\n        \"long\": -3.6420077575764,\n        \"token\": \"68cc2f9abcb1142db60870c1\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Caléndula, 6, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.533260227335,\n        \"long\": -3.6420077575764,\n        \"token\": \"68cc2f72e1919d475e028188\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Salvia, 30, 28109 Madrid, Spain\",\n        \"lat\": 40.528143900896,\n        \"long\": -3.631237725259,\n        \"token\": \"68cc1ab01b7ac09eef03554b\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68cc0e42f5de6a92e2085d19\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68cc08b072ea31443e000137\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Pl. Mayor, 1, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5474364,\n        \"long\": -3.6417961,\n        \"token\": \"68cbcb248f26354bf505f4e8\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 7, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379051,\n        \"long\": -3.6375546,\n        \"token\": \"68cb9a35ba105bedff080917\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Bruselas, 29, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.52957864212,\n        \"long\": -3.638483054237,\n        \"token\": \"68cb2e565061c508bb0ddbd0\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. Olímpica, 9, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.534026284682,\n        \"long\": -3.6368102144837,\n        \"token\": \"68cb2db10f88f7ff0600f5de\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"GCM2+C5 Alcobendas, Spain\",\n        \"lat\": 40.533503339924,\n        \"long\": -3.5996029042337,\n        \"token\": \"68cb22efba105bedff0808a0\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"Av. de la Industria, 4, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.535426039679,\n        \"long\": -3.6418222521334,\n        \"token\": \"68cb1e4b858efcd66a061a54\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"Av. de la Industria, 4, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.535932326838,\n        \"long\": -3.6418287337436,\n        \"token\": \"68cb1d635b76da9e7e05db75\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"address_string\": \"Azalea-PºDe Alcobendas, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.525130704358,\n        \"long\": -3.6343009548538,\n        \"token\": \"68cb18eb5b76da9e7e05db6b\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5389461,\n        \"long\": -3.6380202,\n        \"token\": \"68cb17b80f88f7ff0600f5d7\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68cb17a55061c508bb0ddb94\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5372512,\n        \"long\": -3.6372245,\n        \"token\": \"68cb0bf5858efcd66a061a50\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 8, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5381924,\n        \"long\": -3.6375022,\n        \"token\": \"68caa7f789887827df04dfb1\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 3, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379178,\n        \"long\": -3.6375222,\n        \"token\": \"68caa7b4e885555ed706e649\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379949,\n        \"long\": -3.6373992,\n        \"token\": \"68ca8a875c47836b7602c177\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Pl. Mayor, 1, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5474364,\n        \"long\": -3.6417961,\n        \"token\": \"68ca86454a9034805809dea1\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Constitución, 129, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.54871,\n        \"long\": -3.6465873,\n        \"token\": \"68c89a3294ef9d8e3a04f1e5\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Cuesta del Cerro, 134, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.524270216473,\n        \"long\": -3.6327836589804,\n        \"token\": \"68c7d47eefa5daf1ce08dde7\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Joaquín Rodrigo, 3, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.547949,\n        \"long\": -3.6420561,\n        \"token\": \"68c7cf320ef81450fb0e5d45\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Blas de Otero, 4, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.547605,\n        \"long\": -3.6419796,\n        \"token\": \"68c01334a0241c076b0f0a28\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.5379949,\n        \"long\": -3.6373992,\n        \"token\": \"68bef7e50d35876da0096d86\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de la Chopera, 185, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.544145907268,\n        \"long\": -3.6544062895649,\n        \"token\": \"68be9a8126183dd62b023439\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Marqués de la Valdavia, 134, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.546990272268,\n        \"long\": -3.6520267506622,\n        \"token\": \"68b5b0ebe44f50d51902363a\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Calle Encinar, 3D, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.537766535264,\n        \"long\": -3.6421077817783,\n        \"token\": \"68b5b00449c9581c720a87c0\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º del Conde de los Gaitanes, 51, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.523609600764,\n        \"long\": -3.6299710008578,\n        \"token\": \"68b5af2765dd2fdc5e0143db\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Bruselas, 29, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.529023461169,\n        \"long\": -3.6395182895172,\n        \"token\": \"68b5ae45e44f50d51902362d\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Maliciosa, 3, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.538858790191,\n        \"long\": -3.658710311209,\n        \"token\": \"68b5ad7fe1c8d25976091aad\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Valdelaparra, 33C, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.538858790191,\n        \"long\": -3.6486918954648,\n        \"token\": \"68b5aa4dc522d57aa70d84b8\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de Huelva, 10A, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.540891753253,\n        \"long\": -3.650030022434,\n        \"token\": \"68b5a831c522d57aa70d84b0\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. de la Petunia, 3, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.529201373143,\n        \"long\": -3.6366487527415,\n        \"token\": \"68b5a7ed2ae2be9bc801340c\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Bruselas, 21, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.530868729958,\n        \"long\": -3.6374455690384,\n        \"token\": \"68b5a1492ae2be9bc8013401\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"Av. de Bruselas, 21, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.530868729958,\n        \"long\": -3.6374455690384,\n        \"token\": \"68b5a12f074f1a6e55050289\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Camino Nuevo, 106, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.522048071386,\n        \"long\": -3.6371317056783,\n        \"token\": \"68b594be65dd2fdc5e0143b1\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"C. del Camino Nuevo, 106, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.522048071386,\n        \"long\": -3.6371317056783,\n        \"token\": \"68b594b12ae2be9bc80133dd\"\n    },\n    {\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n        \"address_string\": \"P.º de la Chopera, 287D, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.54498271006,\n        \"long\": -3.6575889587402,\n        \"token\": \"68b1c952ab3726d6130a73ab\"\n    }\n]"
                },
                {
                  "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": "{{mapaUrl}}"
                      },
                      {
                        "key": "Connection",
                        "value": "keep-alive"
                      },
                      {
                        "key": "Referer",
                        "value": "{{mapaUrl}}/"
                      },
                      {
                        "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": "{{publicBaseUrl}}/requests/coordinates?jurisdiction_ids={{jurisdiction_id}}&limit={{limit}}&own=true&lat=&long={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests",
                        "coordinates"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}",
                          "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": "{{limit}}",
                          "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": "{{longitude}}",
                          "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"ERROR: lat or long was not found\\n\"\n    }\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": "{{mapaUrl}}"
                      },
                      {
                        "key": "Connection",
                        "value": "keep-alive"
                      },
                      {
                        "key": "Referer",
                        "value": "{{mapaUrl}}/"
                      },
                      {
                        "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": "{{publicBaseUrl}}/requests/coordinates?jurisdiction_ids={{jurisdiction_id}}&limit={{limit}}&own=true&lat={{latitude}}&long={{longitude}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests",
                        "coordinates"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}",
                          "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": "{{limit}}",
                          "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": "{{latitude}}",
                          "description": "Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (latitud)."
                        },
                        {
                          "key": "long",
                          "value": "{{longitude}}",
                          "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": "{{publicBaseUrl}}/requests_owns?app_key={{app_key}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests_owns"
                  ],
                  "query": [
                    {
                      "key": "app_key",
                      "value": "1234555",
                      "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."
                    }
                  ]
                },
                "description": "**Description**\n\nObtiene 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": "{{publicBaseUrl}}/requests_owns?app_key={{app_key}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"deleted\": false,\n        \"jurisdiction_name\": \"Alcobendas\",\n        \"service_id\": \"60754e113f00a3de068b4581\",\n        \"service_code\": \"93\",\n        \"service_name\": \"Fauna exótica invasora\",\n        \"requested_datetime\": \"2025-08-27T20:57:04+00:00\",\n        \"supporting_count\": 0,\n        \"following_count\": 0,\n        \"evaluations_count\": 0,\n        \"address\": \"C. del Marqués de la Valdavia, 132, 28100 Alcobendas, Madrid, Spain\",\n        \"updated_datetime\": \"2025-08-27T20:57:27+00:00\",\n        \"evaluations_avg\": -1,\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"status_node_type\": \"initial_node\",\n        \"files\": [],\n        \"is_evaluable\": false,\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"Aviso\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": true,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"current_status_assignments\": [],\n        \"public_visibility\": false,\n        \"accepted\": false,\n        \"additional_data\": [],\n        \"comments_count\": 0,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-08-29T20:57:05+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-08-27T20:57:05+00:00\",\n        \"description\": \"test\",\n        \"estimated_final_datetime\": \"2025-09-09T20:57:05+00:00\",\n        \"estimated_start_datetime\": \"2025-08-27T20:57:05+00:00\",\n        \"evaluation\": 0,\n        \"following\": {\n            \"isFollowing\": false\n        },\n        \"medias\": [],\n        \"address_string\": \"C. del Marqués de la Valdavia, 132, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.54667847058,\n        \"long\": -3.6517524719238,\n        \"location_additional_data\": [\n            {\n                \"type\": \"text\",\n                \"value\": \"Norte\",\n                \"question\": {\n                    \"type\": \"text\",\n                    \"active\": true,\n                    \"code\": \"distrito_T\",\n                    \"help_text\": \"\",\n                    \"help_text_translations\": {\n                        \"es\": \"\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"id\": \"5de929ca0007544c098b4578\",\n                    \"question\": \"oij\",\n                    \"question_translations\": {\n                        \"es\": \"Distrito\",\n                        \"en\": \"oij\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"tags\": [\n                        {\n                            \"name\": \"distrito\",\n                            \"color\": \"#000000\",\n                            \"id\": \"distrito\"\n                        },\n                        {\n                            \"name\": \"localización\",\n                            \"color\": \"#000000\",\n                            \"id\": \"localización\"\n                        }\n                    ],\n                    \"archived\": false\n                }\n            }\n        ],\n        \"priority\": {\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png\"\n        },\n        \"public\": true,\n        \"seen\": false,\n        \"service\": {\n            \"deleted\": false,\n            \"parent_service_name\": \"Control de plagas\",\n            \"group\": \"562763226aa918d3008b4572\",\n            \"visible_name\": \"Fauna exótica invasora (Aviso)\",\n            \"mandatory_medias\": false,\n            \"mandatory_files\": false,\n            \"id\": \"60754e113f00a3de068b4581\",\n            \"social\": true,\n            \"evaluation\": true,\n            \"color\": \"#4a148c\",\n            \"hideEstimatedDate\": false,\n            \"mandatory_description\": true,\n            \"mandatory_informant_config\": [\n                {\n                    \"field\": \"first_name\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"last_name\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"phone\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"secondary_phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"email\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"twitter_nickname\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"id_document\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"addresses\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"address\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"gender\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"birthday\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"user_location_area\",\n                    \"message\": \"\",\n                    \"required\": false\n                }\n            ],\n            \"max_upload_files\": 5,\n            \"max_upload_medias\": 5,\n            \"public\": true,\n            \"public_requests\": true,\n            \"public_requests_internal\": true,\n            \"allow_changing_request_privacy\": true,\n            \"service_code\": \"93\",\n            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/607554fec49dd.png\",\n            \"sponsoring_info\": {\n                \"display\": false\n            },\n            \"status_node\": [],\n            \"typology\": {\n                \"hasLocation\": true,\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"name\": \"Aviso\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"with_informant\": true,\n            \"with_internal_informant\": true\n        },\n        \"service_request_id\": \"ALC43992\",\n        \"status_node\": {\n            \"status_node_type\": \"initial_node\",\n            \"name\": \"Nuevo\",\n            \"color\": \"#f1c40f\",\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"60754e113f00a3de068b4574\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"68af7121b8afa2e322039137\"\n    },\n    {\n        \"deleted\": false,\n        \"jurisdiction_name\": \"Alcobendas\",\n        \"service_id\": \"60754e113f00a3de068b4581\",\n        \"service_code\": \"93\",\n        \"service_name\": \"Fauna exótica invasora\",\n        \"requested_datetime\": \"2025-08-27T20:57:26+00:00\",\n        \"supporting_count\": 0,\n        \"following_count\": 0,\n        \"evaluations_count\": 0,\n        \"address\": \"C. del Marqués de la Valdavia, 132, 28100 Alcobendas, Madrid, Spain\",\n        \"updated_datetime\": \"2025-08-27T20:57:26+00:00\",\n        \"evaluations_avg\": -1,\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"status_node_type\": \"initial_node\",\n        \"files\": [],\n        \"is_evaluable\": false,\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"Aviso\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": true,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"current_status_assignments\": [],\n        \"public_visibility\": false,\n        \"accepted\": false,\n        \"additional_data\": [],\n        \"comments_count\": 0,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-08-29T20:57:26+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-08-27T20:57:26+00:00\",\n        \"description\": \"test\",\n        \"estimated_final_datetime\": \"2025-09-09T20:57:26+00:00\",\n        \"estimated_start_datetime\": \"2025-08-27T20:57:26+00:00\",\n        \"evaluation\": 0,\n        \"following\": {\n            \"isFollowing\": false\n        },\n        \"medias\": [],\n        \"address_string\": \"C. del Marqués de la Valdavia, 132, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.54667847058,\n        \"long\": -3.6517524719238,\n        \"location_additional_data\": [\n            {\n                \"type\": \"text\",\n                \"value\": \"Norte\",\n                \"question\": {\n                    \"type\": \"text\",\n                    \"active\": true,\n                    \"code\": \"distrito_T\",\n                    \"help_text\": \"\",\n                    \"help_text_translations\": {\n                        \"es\": \"\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"id\": \"5de929ca0007544c098b4578\",\n                    \"question\": \"oij\",\n                    \"question_translations\": {\n                        \"es\": \"Distrito\",\n                        \"en\": \"oij\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"tags\": [\n                        {\n                            \"name\": \"distrito\",\n                            \"color\": \"#000000\",\n                            \"id\": \"distrito\"\n                        },\n                        {\n                            \"name\": \"localización\",\n                            \"color\": \"#000000\",\n                            \"id\": \"localización\"\n                        }\n                    ],\n                    \"archived\": false\n                }\n            }\n        ],\n        \"priority\": {\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png\"\n        },\n        \"public\": true,\n        \"seen\": false,\n        \"service\": {\n            \"deleted\": false,\n            \"parent_service_name\": \"Control de plagas\",\n            \"group\": \"562763226aa918d3008b4572\",\n            \"visible_name\": \"Fauna exótica invasora (Aviso)\",\n            \"mandatory_medias\": false,\n            \"mandatory_files\": false,\n            \"id\": \"60754e113f00a3de068b4581\",\n            \"social\": true,\n            \"evaluation\": true,\n            \"color\": \"#4a148c\",\n            \"hideEstimatedDate\": false,\n            \"mandatory_description\": true,\n            \"mandatory_informant_config\": [\n                {\n                    \"field\": \"first_name\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"last_name\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"phone\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"secondary_phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"email\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"twitter_nickname\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"id_document\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"addresses\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"address\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"gender\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"birthday\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"user_location_area\",\n                    \"message\": \"\",\n                    \"required\": false\n                }\n            ],\n            \"max_upload_files\": 5,\n            \"max_upload_medias\": 5,\n            \"public\": true,\n            \"public_requests\": true,\n            \"public_requests_internal\": true,\n            \"allow_changing_request_privacy\": true,\n            \"service_code\": \"93\",\n            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/607554fec49dd.png\",\n            \"sponsoring_info\": {\n                \"display\": false\n            },\n            \"status_node\": [],\n            \"typology\": {\n                \"hasLocation\": true,\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"name\": \"Aviso\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"with_informant\": true,\n            \"with_internal_informant\": true\n        },\n        \"service_request_id\": \"ALC43993\",\n        \"status_node\": {\n            \"status_node_type\": \"initial_node\",\n            \"name\": \"Nuevo\",\n            \"color\": \"#f1c40f\",\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"60754e113f00a3de068b4574\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"68af7136c0e785eee4079db7\"\n    },\n    {\n        \"deleted\": false,\n        \"jurisdiction_name\": \"Alcobendas\",\n        \"service_id\": \"570b55b26aa918db008b4567\",\n        \"service_code\": \"60\",\n        \"service_name\": \"Ascensor calle Granada\",\n        \"requested_datetime\": \"2025-09-22T12:13:19+00:00\",\n        \"supporting_count\": 0,\n        \"following_count\": 1,\n        \"evaluations_count\": 0,\n        \"address\": \"Av.Industria-Valgrande, 28108 Alcobendas, Madrid, Spain\",\n        \"updated_datetime\": \"2025-09-22T12:13:21+00:00\",\n        \"evaluations_avg\": -1,\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"status_node_type\": \"initial_node\",\n        \"files\": [],\n        \"is_evaluable\": false,\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"Aviso\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": true,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"current_status_assignments\": [],\n        \"public_visibility\": false,\n        \"accepted\": false,\n        \"additional_data\": [\n            {\n                \"type\": \"singleValueList\",\n                \"value\": \"No funciona/parado\",\n                \"value_translations\": {\n                    \"es\": \"No funciona/parado\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"archived\": false,\n                \"question\": {\n                    \"type\": \"singleValueList\",\n                    \"active\": true,\n                    \"code\": \"Alc_ascensorcallegranada_cualeselproblema_ls\",\n                    \"help_text\": \"\",\n                    \"help_text_translations\": {\n                        \"es\": \"\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"id\": \"604a1ade1d6cc0f7028b45a2\",\n                    \"question\": \"¿Cuál es el problema?\",\n                    \"question_translations\": {\n                        \"es\": \"¿Cuál es el problema?\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"tags\": [\n                        {\n                            \"name\": \"Acobendas\",\n                            \"color\": \"#000000\",\n                            \"id\": \"Acobendas\"\n                        },\n                        {\n                            \"name\": \"ascensor\",\n                            \"color\": \"#000000\",\n                            \"id\": \"ascensor\"\n                        }\n                    ],\n                    \"archived\": false,\n                    \"possible_answers\": [\n                        {\n                            \"value\": \"No funciona/parado\",\n                            \"value_translations\": {\n                                \"es\": \"No funciona/parado\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"archived\": false\n                        },\n                        {\n                            \"value\": \"Vandalizado\",\n                            \"value_translations\": {\n                                \"es\": \"Vandalizado\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"archived\": false\n                        },\n                        {\n                            \"value\": \"Rotura del pulsador\",\n                            \"value_translations\": {\n                                \"es\": \"Rotura del pulsador\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"archived\": false\n                        },\n                        {\n                            \"value\": \"Otro\",\n                            \"value_translations\": {\n                                \"es\": \"Otro\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"archived\": false\n                        }\n                    ]\n                }\n            }\n        ],\n        \"comments_count\": 0,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-09-24T12:13:21+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-09-22T12:13:21+00:00\",\n        \"description\": \"prueba\",\n        \"estimated_final_datetime\": \"2025-10-05T12:13:21+00:00\",\n        \"estimated_start_datetime\": \"2025-09-22T12:13:21+00:00\",\n        \"evaluation\": 0,\n        \"following\": {\n            \"isFollowing\": true,\n            \"channels\": {\n                \"email\": false,\n                \"push\": false\n            }\n        },\n        \"medias\": [],\n        \"address_string\": \"Av.Industria-Valgrande, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.535104866997,\n        \"long\": -3.6491882801056,\n        \"location_additional_data\": [],\n        \"priority\": {\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png\"\n        },\n        \"public\": true,\n        \"seen\": false,\n        \"service\": {\n            \"deleted\": false,\n            \"parent_service_name\": \"Ascensores en vía pública\",\n            \"group\": \"570b50756aa918d6008b4567\",\n            \"visible_name\": \"Ascensor calle Granada (Aviso)\",\n            \"mandatory_medias\": false,\n            \"mandatory_files\": false,\n            \"id\": \"570b55b26aa918db008b4567\",\n            \"additionalData\": {\n                \"requiredVariables\": [],\n                \"configurable_questions\": [\n                    {\n                        \"editable\": true,\n                        \"hidden_in_detail\": false,\n                        \"hidden_in_form\": false,\n                        \"hidden_in_open010_detail\": false,\n                        \"hidden_in_open010_form\": false,\n                        \"show_collapsed\": false,\n                        \"default_collapsed\": false,\n                        \"question\": {\n                            \"type\": \"singleValueList\",\n                            \"active\": true,\n                            \"code\": \"Alc_ascensorcallegranada_cualeselproblema_ls\",\n                            \"help_text\": \"\",\n                            \"help_text_translations\": {\n                                \"es\": \"\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"id\": \"604a1ade1d6cc0f7028b45a2\",\n                            \"question\": \"¿Cuál es el problema?\",\n                            \"question_translations\": {\n                                \"es\": \"¿Cuál es el problema?\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"tags\": [\n                                {\n                                    \"name\": \"Acobendas\",\n                                    \"color\": \"#000000\",\n                                    \"id\": \"Acobendas\"\n                                },\n                                {\n                                    \"name\": \"ascensor\",\n                                    \"color\": \"#000000\",\n                                    \"id\": \"ascensor\"\n                                }\n                            ],\n                            \"archived\": false,\n                            \"possible_answers\": [\n                                {\n                                    \"value\": \"No funciona/parado\",\n                                    \"value_translations\": {\n                                        \"es\": \"No funciona/parado\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                },\n                                {\n                                    \"value\": \"Vandalizado\",\n                                    \"value_translations\": {\n                                        \"es\": \"Vandalizado\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                },\n                                {\n                                    \"value\": \"Rotura del pulsador\",\n                                    \"value_translations\": {\n                                        \"es\": \"Rotura del pulsador\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                },\n                                {\n                                    \"value\": \"Otro\",\n                                    \"value_translations\": {\n                                        \"es\": \"Otro\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                }\n                            ]\n                        },\n                        \"required\": false,\n                        \"default_value\": \"\"\n                    }\n                ],\n                \"id\": \"604a1ae47c89ecbc028b45b7\",\n                \"name\": \"Alc_ascensorenlaviapublica_ascensorcallegranada\",\n                \"use_cases\": []\n            },\n            \"social\": true,\n            \"evaluation\": true,\n            \"color\": \"#bfba3d\",\n            \"hideEstimatedDate\": false,\n            \"mandatory_description\": true,\n            \"mandatory_informant_config\": [\n                {\n                    \"field\": \"first_name\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"last_name\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"phone\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"email\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"twitter_nickname\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"id_document\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"addresses\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"gender\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"secondary_phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"birthday\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"user_location_area\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"address\",\n                    \"message\": \"\",\n                    \"required\": false\n                }\n            ],\n            \"max_upload_files\": 5,\n            \"max_upload_medias\": 5,\n            \"public\": true,\n            \"public_requests\": true,\n            \"public_requests_internal\": true,\n            \"allow_changing_request_privacy\": true,\n            \"service_code\": \"60\",\n            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db194ce9e815.png\",\n            \"sponsoring_info\": {\n                \"display\": false\n            },\n            \"status_node\": [],\n            \"typology\": {\n                \"hasLocation\": true,\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"name\": \"Aviso\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"with_informant\": true,\n            \"with_internal_informant\": true\n        },\n        \"service_request_id\": \"ALC44052\",\n        \"status_node\": {\n            \"status_node_type\": \"initial_node\",\n            \"name\": \"Nuevo\",\n            \"color\": \"#f1c40f\",\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"5850dd34e22c6d9f51b016ef\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"68d13d61cc67b74eb90bcbd0\",\n        \"user\": {\n            \"hasPassword\": false,\n            \"nickname\": \"user_cf6b655f8bdc6b8ce17c\",\n            \"avatar\": \"https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600\",\n            \"channels\": [],\n            \"id\": \"68b064f122eb8e9dcf08aad6\",\n            \"notification_channels\": [],\n            \"last_geofences\": [],\n            \"jurisdiction_element_channels\": []\n        }\n    },\n    {\n        \"deleted\": false,\n        \"jurisdiction_name\": \"Alcobendas\",\n        \"service_id\": \"5620ec856aa918b1008b4567\",\n        \"service_code\": \"2\",\n        \"service_name\": \"Arquetas de alumbrado\",\n        \"requested_datetime\": \"2025-10-01T14:13:09+00:00\",\n        \"supporting_count\": 0,\n        \"following_count\": 1,\n        \"evaluations_count\": 0,\n        \"address\": \"Av. de la Industria, 20, 28108 Alcobendas, Madrid, Spain\",\n        \"updated_datetime\": \"2025-10-01T14:13:11+00:00\",\n        \"evaluations_avg\": -1,\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"status_node_type\": \"initial_node\",\n        \"files\": [],\n        \"is_evaluable\": false,\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"Aviso\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": true,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"current_status_assignments\": [],\n        \"public_visibility\": false,\n        \"accepted\": false,\n        \"additional_data\": [],\n        \"comments_count\": 0,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-10-03T14:13:10+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-10-01T14:13:10+00:00\",\n        \"description\": \"prueba\",\n        \"estimated_final_datetime\": \"2025-10-14T14:13:10+00:00\",\n        \"estimated_start_datetime\": \"2025-10-01T14:13:10+00:00\",\n        \"evaluation\": 0,\n        \"following\": {\n            \"isFollowing\": true,\n            \"channels\": {\n                \"email\": false,\n                \"push\": false\n            }\n        },\n        \"medias\": [\n            {\n                \"created_at\": \"2025-10-01T14:13:11+00:00\",\n                \"id\": \"68dd36f78496ed9dd300cb49\",\n                \"public\": true,\n                \"type\": \"image\",\n                \"media_url\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/68dd36f7c08cf025276131.png\",\n                \"created_datetime\": \"2025-10-01T14:13:11+00:00\",\n                \"deleted\": false,\n                \"media_code\": \"68dd36f78496ed9dd300cb49\",\n                \"check_distance\": \"no_data\",\n                \"check_time\": \"no_data\",\n                \"media_metadata\": {\n                    \"location_additional_data\": [],\n                    \"created\": \"2025-10-01T14:13:11+00:00\"\n                },\n                \"tags\": []\n            }\n        ],\n        \"address_string\": \"Av. de la Industria, 20, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.534892810787,\n        \"long\": -3.6485324209675,\n        \"location_additional_data\": [\n            {\n                \"type\": \"text\",\n                \"value\": \"Empresarial\",\n                \"question\": {\n                    \"type\": \"text\",\n                    \"active\": true,\n                    \"code\": \"distrito_T\",\n                    \"help_text\": \"\",\n                    \"help_text_translations\": {\n                        \"es\": \"\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"id\": \"5de929ca0007544c098b4578\",\n                    \"question\": \"oij\",\n                    \"question_translations\": {\n                        \"es\": \"Distrito\",\n                        \"en\": \"oij\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"tags\": [\n                        {\n                            \"name\": \"distrito\",\n                            \"color\": \"#000000\",\n                            \"id\": \"distrito\"\n                        },\n                        {\n                            \"name\": \"localización\",\n                            \"color\": \"#000000\",\n                            \"id\": \"localización\"\n                        }\n                    ],\n                    \"archived\": false\n                }\n            }\n        ],\n        \"priority\": {\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png\"\n        },\n        \"public\": false,\n        \"seen\": false,\n        \"service\": {\n            \"deleted\": false,\n            \"parent_service_name\": \"Alumbrado público\",\n            \"group\": \"5620e9176aa91815008b4567\",\n            \"visible_name\": \"Arquetas de alumbrado (Aviso)\",\n            \"mandatory_medias\": true,\n            \"mandatory_files\": false,\n            \"id\": \"5620ec856aa918b1008b4567\",\n            \"additionalData\": {\n                \"requiredVariables\": [],\n                \"configurable_questions\": [\n                    {\n                        \"editable\": true,\n                        \"hidden_in_detail\": false,\n                        \"hidden_in_form\": false,\n                        \"hidden_in_open010_detail\": false,\n                        \"hidden_in_open010_form\": false,\n                        \"show_collapsed\": true,\n                        \"default_collapsed\": false,\n                        \"question\": {\n                            \"type\": \"multiValueList\",\n                            \"active\": true,\n                            \"code\": \"listamultiple_prueba\",\n                            \"help_text\": \"\",\n                            \"help_text_translations\": {\n                                \"es\": \"\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"id\": \"6454501caab13877c805b023\",\n                            \"question\": \"Selecciona 2\",\n                            \"question_translations\": {\n                                \"es\": \"Selecciona 2\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"Selecciona 2\",\n                                \"en_AU\": \"\"\n                            },\n                            \"tags\": [],\n                            \"archived\": false,\n                            \"possible_answers\": [\n                                {\n                                    \"value\": \"11\",\n                                    \"value_translations\": {\n                                        \"es\": \"11\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"11\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                },\n                                {\n                                    \"value\": \"2\",\n                                    \"value_translations\": {\n                                        \"es\": \"2\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"2\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                },\n                                {\n                                    \"value\": \"3\",\n                                    \"value_translations\": {\n                                        \"es\": \"3\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"3\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                },\n                                {\n                                    \"value\": \"Opción 4\",\n                                    \"value_translations\": {\n                                        \"es\": \"Opción 4\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false,\n                                    \"next_question_list\": {\n                                        \"requiredVariables\": [],\n                                        \"configurable_questions\": [\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": true,\n                                                \"default_collapsed\": true,\n                                                \"question\": {\n                                                    \"type\": \"singleValueList\",\n                                                    \"active\": true,\n                                                    \"code\": \"code_lista_simple\",\n                                                    \"help_text\": \"esta pregunta es una lista simple\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"esta pregunta es una lista simple\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"64706cd7a18ec0136f01dea5\",\n                                                    \"question\": \"pregunta lista\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"pregunta lista\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [\n                                                        {\n                                                            \"name\": \"PRUEBA\",\n                                                            \"color\": \"#000000\",\n                                                            \"id\": \"PRUEBA\"\n                                                        }\n                                                    ],\n                                                    \"archived\": false,\n                                                    \"possible_answers\": [\n                                                        {\n                                                            \"value\": \"resp1\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"resp1\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false,\n                                                            \"next_question_list\": {\n                                                                \"requiredVariables\": [],\n                                                                \"configurable_questions\": [\n                                                                    {\n                                                                        \"editable\": false,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"text\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"complejo\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"5d30696fc5f2f3ac018b4568\",\n                                                                            \"question\": \"Complejo\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Complejo\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": false,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"text\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"edificio\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"5d3069ba9e0d8faa018b4571\",\n                                                                            \"question\": \"Edificio\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Edificio\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"text\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"sala\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"5d3069dac5f2f3aa018b4567\",\n                                                                            \"question\": \"Sala\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Sala\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    }\n                                                                ],\n                                                                \"id\": \"5d3069e643b387a9018b4568\",\n                                                                \"name\": \"Localización BBVA\",\n                                                                \"use_cases\": [\n                                                                    {\n                                                                        \"type\": \"linked_list\",\n                                                                        \"id\": \"66ed366037c0c32c020b5372\"\n                                                                    }\n                                                                ],\n                                                                \"description\": \".\"\n                                                            }\n                                                        },\n                                                        {\n                                                            \"value\": \"resp2\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"resp2\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"resp3\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"resp3\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"1\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"1\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"2\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"2\",\n                                                                \"en\": \"2\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"4\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"4\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"5\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"5\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"6\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"6\",\n                                                                \"en\": \"6\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"7\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"7\",\n                                                                \"en\": \"7\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"8\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"8\",\n                                                                \"en\": \"8\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"9\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"9\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        }\n                                                    ]\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": true,\n                                                \"default_collapsed\": true,\n                                                \"question\": {\n                                                    \"type\": \"massiveSingleValueList\",\n                                                    \"active\": true,\n                                                    \"code\": \"QA5\",\n                                                    \"help_text\": \"lista simple masiva\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"\",\n                                                        \"en\": \"lista simple masiva\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"6835a238502b54dfac08a242\",\n                                                    \"question\": \"pregunta\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"\",\n                                                        \"en\": \"pregunta\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false,\n                                                    \"possible_answers\": [\n                                                        {\n                                                            \"value\": \"1\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"\",\n                                                                \"en\": \"1\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"2\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"\",\n                                                                \"en\": \"2\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"3\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"\",\n                                                                \"en\": \"3\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"4\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"\",\n                                                                \"en\": \"4\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"1\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"\",\n                                                                \"en\": \"1\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"6\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"\",\n                                                                \"en\": \"6\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"7\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"\",\n                                                                \"en\": \"7\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"8\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"\",\n                                                                \"en\": \"8\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        }\n                                                    ],\n                                                    \"answers_count\": 8\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": true,\n                                                \"default_collapsed\": true,\n                                                \"question\": {\n                                                    \"type\": \"singleValueList\",\n                                                    \"active\": true,\n                                                    \"code\": \"prueba_lista_simpre\",\n                                                    \"help_text\": \"\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67b346c8fc074bd2800aaf22\",\n                                                    \"question\": \"prueba lista siemple\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"\",\n                                                        \"en\": \"prueba lista siemple\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false,\n                                                    \"possible_answers\": [\n                                                        {\n                                                            \"value\": \"si\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"si\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false,\n                                                            \"next_question_list\": {\n                                                                \"requiredVariables\": [],\n                                                                \"configurable_questions\": [\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"label\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"Funcionamiento_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a4922f368ebfa054058094\",\n                                                                            \"question\": \"## 📋 Funcionamiento del formulario\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"## 📋 Funcionamiento del formulario\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"label\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"funcion_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a4ab0853533cfb5605fcb5\",\n                                                                            \"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.  \\n\\nEn caso de incumplimiento, el inspector deberá:  \\n\\n*   Describir las razones en el campo de texto libre.  \\n*   Adjuntar evidencias gráficas o archivos que respalden la observación.  \\n\\nEste proceso garantiza una supervisión eficiente y una documentación clara de las incidencias.\",\n                                                                            \"question_translations\": {\n                                                                                \"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.  \\n\\nEn caso de incumplimiento, el inspector deberá:  \\n\\n*   Describir las razones en el campo de texto libre.  \\n*   Adjuntar evidencias gráficas o archivos que respalden la observación.  \\n\\nEste proceso garantiza una supervisión eficiente y una documentación clara de las incidencias.\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"label\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"titulo_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a4ab2f22f65863190e13d7\",\n                                                                            \"question\": \"## 📏 Dimensiones y estructura de las casetas\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"## 📏 Dimensiones y estructura de las casetas\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"singleValueList\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"prueba_feria01\",\n                                                                            \"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._\",\n                                                                            \"help_text_translations\": {\n                                                                                \"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._\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a48efd3074f177c00b3f34\",\n                                                                            \"question\": \"**Documento de dimensiones**\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"**Documento de dimensiones**\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false,\n                                                                            \"possible_answers\": [\n                                                                                {\n                                                                                    \"value\": \"El documento en el que se reflejan las dimensiones no está disponible o presenta irregularidades.\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"El documento en el que se reflejan las dimensiones no está disponible o presenta irregularidades.\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false,\n                                                                                    \"next_question_list\": {\n                                                                                        \"requiredVariables\": [],\n                                                                                        \"configurable_questions\": [\n                                                                                            {\n                                                                                                \"editable\": true,\n                                                                                                \"hidden_in_detail\": false,\n                                                                                                \"hidden_in_form\": false,\n                                                                                                \"hidden_in_open010_detail\": true,\n                                                                                                \"hidden_in_open010_form\": true,\n                                                                                                \"show_collapsed\": false,\n                                                                                                \"default_collapsed\": false,\n                                                                                                \"question\": {\n                                                                                                    \"type\": \"text\",\n                                                                                                    \"active\": true,\n                                                                                                    \"code\": \"texto_feria\",\n                                                                                                    \"help_text\": \"\",\n                                                                                                    \"help_text_translations\": {\n                                                                                                        \"es\": \"\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"id\": \"67a240f25a7fd323a5026116\",\n                                                                                                    \"question\": \"Indique las razones del incumplimiento:\",\n                                                                                                    \"question_translations\": {\n                                                                                                        \"es\": \"Indique las razones del incumplimiento:\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"tags\": [],\n                                                                                                    \"archived\": false\n                                                                                                },\n                                                                                                \"required\": false,\n                                                                                                \"default_value\": \"\"\n                                                                                            },\n                                                                                            {\n                                                                                                \"editable\": true,\n                                                                                                \"hidden_in_detail\": false,\n                                                                                                \"hidden_in_form\": false,\n                                                                                                \"hidden_in_open010_detail\": true,\n                                                                                                \"hidden_in_open010_form\": true,\n                                                                                                \"show_collapsed\": false,\n                                                                                                \"default_collapsed\": false,\n                                                                                                \"question\": {\n                                                                                                    \"type\": \"image\",\n                                                                                                    \"active\": true,\n                                                                                                    \"code\": \"imagen_feria\",\n                                                                                                    \"help_text\": \"\",\n                                                                                                    \"help_text_translations\": {\n                                                                                                        \"es\": \"\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"id\": \"67a241511adde9311d0f1835\",\n                                                                                                    \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                                    \"question_translations\": {\n                                                                                                        \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"tags\": [],\n                                                                                                    \"archived\": false\n                                                                                                },\n                                                                                                \"required\": false,\n                                                                                                \"default_value\": \"\"\n                                                                                            }\n                                                                                        ],\n                                                                                        \"id\": \"67a2415c8f62e72c70034f23\",\n                                                                                        \"name\": \"encadenadas_feria1\",\n                                                                                        \"use_cases\": [\n                                                                                            {\n                                                                                                \"type\": \"linked_list\",\n                                                                                                \"id\": \"66ed366037c0c32c020b5372\"\n                                                                                            }\n                                                                                        ],\n                                                                                        \"description\": \"Encadenadas\"\n                                                                                    }\n                                                                                }\n                                                                            ]\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"singleValueList\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"feria1\",\n                                                                            \"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._\",\n                                                                            \"help_text_translations\": {\n                                                                                \"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._\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a23e881a0f77255607a493\",\n                                                                            \"question\": \"**Certificado de seguridad y solidez**\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"**Certificado de seguridad y solidez**\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false,\n                                                                            \"possible_answers\": [\n                                                                                {\n                                                                                    \"value\": \"El certificado de seguridad y solidez emitido por un técnico cualificado no ha sido presentado o es inválido\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"El certificado de seguridad y solidez emitido por un técnico cualificado no ha sido presentado o es inválido\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false,\n                                                                                    \"next_question_list\": {\n                                                                                        \"requiredVariables\": [],\n                                                                                        \"configurable_questions\": [\n                                                                                            {\n                                                                                                \"editable\": true,\n                                                                                                \"hidden_in_detail\": false,\n                                                                                                \"hidden_in_form\": false,\n                                                                                                \"hidden_in_open010_detail\": true,\n                                                                                                \"hidden_in_open010_form\": true,\n                                                                                                \"show_collapsed\": false,\n                                                                                                \"default_collapsed\": false,\n                                                                                                \"question\": {\n                                                                                                    \"type\": \"text\",\n                                                                                                    \"active\": true,\n                                                                                                    \"code\": \"texto_feria\",\n                                                                                                    \"help_text\": \"\",\n                                                                                                    \"help_text_translations\": {\n                                                                                                        \"es\": \"\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"id\": \"67a240f25a7fd323a5026116\",\n                                                                                                    \"question\": \"Indique las razones del incumplimiento:\",\n                                                                                                    \"question_translations\": {\n                                                                                                        \"es\": \"Indique las razones del incumplimiento:\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"tags\": [],\n                                                                                                    \"archived\": false\n                                                                                                },\n                                                                                                \"required\": false,\n                                                                                                \"default_value\": \"\"\n                                                                                            },\n                                                                                            {\n                                                                                                \"editable\": true,\n                                                                                                \"hidden_in_detail\": false,\n                                                                                                \"hidden_in_form\": false,\n                                                                                                \"hidden_in_open010_detail\": true,\n                                                                                                \"hidden_in_open010_form\": true,\n                                                                                                \"show_collapsed\": false,\n                                                                                                \"default_collapsed\": false,\n                                                                                                \"question\": {\n                                                                                                    \"type\": \"image\",\n                                                                                                    \"active\": true,\n                                                                                                    \"code\": \"imagen_feria\",\n                                                                                                    \"help_text\": \"\",\n                                                                                                    \"help_text_translations\": {\n                                                                                                        \"es\": \"\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"id\": \"67a241511adde9311d0f1835\",\n                                                                                                    \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                                    \"question_translations\": {\n                                                                                                        \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"tags\": [],\n                                                                                                    \"archived\": false\n                                                                                                },\n                                                                                                \"required\": false,\n                                                                                                \"default_value\": \"\"\n                                                                                            }\n                                                                                        ],\n                                                                                        \"id\": \"67a2415c8f62e72c70034f23\",\n                                                                                        \"name\": \"encadenadas_feria1\",\n                                                                                        \"use_cases\": [\n                                                                                            {\n                                                                                                \"type\": \"linked_list\",\n                                                                                                \"id\": \"66ed366037c0c32c020b5372\"\n                                                                                            }\n                                                                                        ],\n                                                                                        \"description\": \"Encadenadas\"\n                                                                                    }\n                                                                                }\n                                                                            ]\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"singleValueList\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"prueba_feria2\",\n                                                                            \"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._\",\n                                                                            \"help_text_translations\": {\n                                                                                \"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._\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a48f53bddb8f0fa301e5f4\",\n                                                                            \"question\": \"**Medidas inadecuadas de la caseta**\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"**Medidas inadecuadas de la caseta**\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false,\n                                                                            \"possible_answers\": [\n                                                                                {\n                                                                                    \"value\": \"Las medidas de la caseta no cumplen con la normativa establecida.\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"Las medidas de la caseta no cumplen con la normativa establecida.\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false,\n                                                                                    \"next_question_list\": {\n                                                                                        \"requiredVariables\": [],\n                                                                                        \"configurable_questions\": [\n                                                                                            {\n                                                                                                \"editable\": true,\n                                                                                                \"hidden_in_detail\": false,\n                                                                                                \"hidden_in_form\": false,\n                                                                                                \"hidden_in_open010_detail\": true,\n                                                                                                \"hidden_in_open010_form\": true,\n                                                                                                \"show_collapsed\": false,\n                                                                                                \"default_collapsed\": false,\n                                                                                                \"question\": {\n                                                                                                    \"type\": \"text\",\n                                                                                                    \"active\": true,\n                                                                                                    \"code\": \"texto_feria\",\n                                                                                                    \"help_text\": \"\",\n                                                                                                    \"help_text_translations\": {\n                                                                                                        \"es\": \"\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"id\": \"67a240f25a7fd323a5026116\",\n                                                                                                    \"question\": \"Indique las razones del incumplimiento:\",\n                                                                                                    \"question_translations\": {\n                                                                                                        \"es\": \"Indique las razones del incumplimiento:\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"tags\": [],\n                                                                                                    \"archived\": false\n                                                                                                },\n                                                                                                \"required\": false,\n                                                                                                \"default_value\": \"\"\n                                                                                            },\n                                                                                            {\n                                                                                                \"editable\": true,\n                                                                                                \"hidden_in_detail\": false,\n                                                                                                \"hidden_in_form\": false,\n                                                                                                \"hidden_in_open010_detail\": true,\n                                                                                                \"hidden_in_open010_form\": true,\n                                                                                                \"show_collapsed\": false,\n                                                                                                \"default_collapsed\": false,\n                                                                                                \"question\": {\n                                                                                                    \"type\": \"image\",\n                                                                                                    \"active\": true,\n                                                                                                    \"code\": \"imagen_feria\",\n                                                                                                    \"help_text\": \"\",\n                                                                                                    \"help_text_translations\": {\n                                                                                                        \"es\": \"\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"id\": \"67a241511adde9311d0f1835\",\n                                                                                                    \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                                    \"question_translations\": {\n                                                                                                        \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"tags\": [],\n                                                                                                    \"archived\": false\n                                                                                                },\n                                                                                                \"required\": false,\n                                                                                                \"default_value\": \"\"\n                                                                                            }\n                                                                                        ],\n                                                                                        \"id\": \"67a2415c8f62e72c70034f23\",\n                                                                                        \"name\": \"encadenadas_feria1\",\n                                                                                        \"use_cases\": [\n                                                                                            {\n                                                                                                \"type\": \"linked_list\",\n                                                                                                \"id\": \"66ed366037c0c32c020b5372\"\n                                                                                            }\n                                                                                        ],\n                                                                                        \"description\": \"Encadenadas\"\n                                                                                    }\n                                                                                }\n                                                                            ]\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"singleValueList\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"prueba_feria3\",\n                                                                            \"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_\",\n                                                                            \"help_text_translations\": {\n                                                                                \"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_\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a48f833074f177c00b3f36\",\n                                                                            \"question\": \"**Material no autorizado en módulos de casetas**\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"**Material no autorizado en módulos de casetas**\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false,\n                                                                            \"possible_answers\": [\n                                                                                {\n                                                                                    \"value\": \"El módulo prefabricado o de chapa no cumple con los requisitos de material incombustible.\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"El módulo prefabricado o de chapa no cumple con los requisitos de material incombustible.\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false,\n                                                                                    \"next_question_list\": {\n                                                                                        \"requiredVariables\": [],\n                                                                                        \"configurable_questions\": [\n                                                                                            {\n                                                                                                \"editable\": true,\n                                                                                                \"hidden_in_detail\": false,\n                                                                                                \"hidden_in_form\": false,\n                                                                                                \"hidden_in_open010_detail\": true,\n                                                                                                \"hidden_in_open010_form\": true,\n                                                                                                \"show_collapsed\": false,\n                                                                                                \"default_collapsed\": false,\n                                                                                                \"question\": {\n                                                                                                    \"type\": \"text\",\n                                                                                                    \"active\": true,\n                                                                                                    \"code\": \"texto_feria\",\n                                                                                                    \"help_text\": \"\",\n                                                                                                    \"help_text_translations\": {\n                                                                                                        \"es\": \"\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"id\": \"67a240f25a7fd323a5026116\",\n                                                                                                    \"question\": \"Indique las razones del incumplimiento:\",\n                                                                                                    \"question_translations\": {\n                                                                                                        \"es\": \"Indique las razones del incumplimiento:\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"tags\": [],\n                                                                                                    \"archived\": false\n                                                                                                },\n                                                                                                \"required\": false,\n                                                                                                \"default_value\": \"\"\n                                                                                            },\n                                                                                            {\n                                                                                                \"editable\": true,\n                                                                                                \"hidden_in_detail\": false,\n                                                                                                \"hidden_in_form\": false,\n                                                                                                \"hidden_in_open010_detail\": true,\n                                                                                                \"hidden_in_open010_form\": true,\n                                                                                                \"show_collapsed\": false,\n                                                                                                \"default_collapsed\": false,\n                                                                                                \"question\": {\n                                                                                                    \"type\": \"image\",\n                                                                                                    \"active\": true,\n                                                                                                    \"code\": \"imagen_feria\",\n                                                                                                    \"help_text\": \"\",\n                                                                                                    \"help_text_translations\": {\n                                                                                                        \"es\": \"\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"id\": \"67a241511adde9311d0f1835\",\n                                                                                                    \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                                    \"question_translations\": {\n                                                                                                        \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"tags\": [],\n                                                                                                    \"archived\": false\n                                                                                                },\n                                                                                                \"required\": false,\n                                                                                                \"default_value\": \"\"\n                                                                                            }\n                                                                                        ],\n                                                                                        \"id\": \"67a2415c8f62e72c70034f23\",\n                                                                                        \"name\": \"encadenadas_feria1\",\n                                                                                        \"use_cases\": [\n                                                                                            {\n                                                                                                \"type\": \"linked_list\",\n                                                                                                \"id\": \"66ed366037c0c32c020b5372\"\n                                                                                            }\n                                                                                        ],\n                                                                                        \"description\": \"Encadenadas\"\n                                                                                    }\n                                                                                }\n                                                                            ]\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"singleValueList\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"prueba_feria4\",\n                                                                            \"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._\",\n                                                                            \"help_text_translations\": {\n                                                                                \"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._\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a48fb322f65863190e13d5\",\n                                                                            \"question\": \"**Dimensiones incorrectas en la cubierta**\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"**Dimensiones incorrectas en la cubierta**\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false,\n                                                                            \"possible_answers\": [\n                                                                                {\n                                                                                    \"value\": \"Las medidas de la cubierta no cumplen con la normativa establecida.\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"Las medidas de la cubierta no cumplen con la normativa establecida.\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false,\n                                                                                    \"next_question_list\": {\n                                                                                        \"requiredVariables\": [],\n                                                                                        \"configurable_questions\": [\n                                                                                            {\n                                                                                                \"editable\": true,\n                                                                                                \"hidden_in_detail\": false,\n                                                                                                \"hidden_in_form\": false,\n                                                                                                \"hidden_in_open010_detail\": true,\n                                                                                                \"hidden_in_open010_form\": true,\n                                                                                                \"show_collapsed\": false,\n                                                                                                \"default_collapsed\": false,\n                                                                                                \"question\": {\n                                                                                                    \"type\": \"text\",\n                                                                                                    \"active\": true,\n                                                                                                    \"code\": \"texto_feria\",\n                                                                                                    \"help_text\": \"\",\n                                                                                                    \"help_text_translations\": {\n                                                                                                        \"es\": \"\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"id\": \"67a240f25a7fd323a5026116\",\n                                                                                                    \"question\": \"Indique las razones del incumplimiento:\",\n                                                                                                    \"question_translations\": {\n                                                                                                        \"es\": \"Indique las razones del incumplimiento:\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"tags\": [],\n                                                                                                    \"archived\": false\n                                                                                                },\n                                                                                                \"required\": false,\n                                                                                                \"default_value\": \"\"\n                                                                                            },\n                                                                                            {\n                                                                                                \"editable\": true,\n                                                                                                \"hidden_in_detail\": false,\n                                                                                                \"hidden_in_form\": false,\n                                                                                                \"hidden_in_open010_detail\": true,\n                                                                                                \"hidden_in_open010_form\": true,\n                                                                                                \"show_collapsed\": false,\n                                                                                                \"default_collapsed\": false,\n                                                                                                \"question\": {\n                                                                                                    \"type\": \"image\",\n                                                                                                    \"active\": true,\n                                                                                                    \"code\": \"imagen_feria\",\n                                                                                                    \"help_text\": \"\",\n                                                                                                    \"help_text_translations\": {\n                                                                                                        \"es\": \"\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"id\": \"67a241511adde9311d0f1835\",\n                                                                                                    \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                                    \"question_translations\": {\n                                                                                                        \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                                        \"en\": \"\",\n                                                                                                        \"ca\": \"\",\n                                                                                                        \"eu\": \"\",\n                                                                                                        \"fr\": \"\",\n                                                                                                        \"es_MX\": \"\",\n                                                                                                        \"en_AU\": \"\"\n                                                                                                    },\n                                                                                                    \"tags\": [],\n                                                                                                    \"archived\": false\n                                                                                                },\n                                                                                                \"required\": false,\n                                                                                                \"default_value\": \"\"\n                                                                                            }\n                                                                                        ],\n                                                                                        \"id\": \"67a2415c8f62e72c70034f23\",\n                                                                                        \"name\": \"encadenadas_feria1\",\n                                                                                        \"use_cases\": [\n                                                                                            {\n                                                                                                \"type\": \"linked_list\",\n                                                                                                \"id\": \"66ed366037c0c32c020b5372\"\n                                                                                            }\n                                                                                        ],\n                                                                                        \"description\": \"Encadenadas\"\n                                                                                    }\n                                                                                }\n                                                                            ]\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    }\n                                                                ],\n                                                                \"id\": \"67a23e97568815817600a1b3\",\n                                                                \"name\": \"prueba_feria1\",\n                                                                \"use_cases\": [\n                                                                    {\n                                                                        \"type\": \"linked_list\",\n                                                                        \"id\": \"66ed366037c0c32c020b5372\"\n                                                                    }\n                                                                ],\n                                                                \"description\": \"Certificado de seguridad y solidez\"\n                                                            }\n                                                        }\n                                                    ]\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": true,\n                                                \"default_collapsed\": true,\n                                                \"question\": {\n                                                    \"type\": \"multiValueList\",\n                                                    \"active\": true,\n                                                    \"code\": \"1multip\",\n                                                    \"help_text\": \"Prueba lista multiple superior a 5\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"Prueba lista multiple superior a 5 opciones\",\n                                                        \"en\": \"Prueba lista multiple superior a 5\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"68c945250b29226cdc0397a1\",\n                                                    \"question\": \"ppr1\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"Pregunta multiple +5\",\n                                                        \"en\": \"ppr1\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [\n                                                        {\n                                                            \"name\": \"x\",\n                                                            \"color\": \"#000000\",\n                                                            \"id\": \"x\"\n                                                        }\n                                                    ],\n                                                    \"archived\": false,\n                                                    \"possible_answers\": [\n                                                        {\n                                                            \"value\": \"5c\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"Opcion 1\",\n                                                                \"en\": \"5c\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false,\n                                                            \"next_question_list\": {\n                                                                \"requiredVariables\": [],\n                                                                \"configurable_questions\": [\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"multiValueList\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"tlj_r_descacharrizacion_lm\",\n                                                                            \"help_text\": \"**¡ADVERTENCIA!** \\\\- No se recoge escombro o poda; no se recogen cacharros al interior de domicilios, favor de dejarlos fuera.\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"**¡ADVERTENCIA!** \\\\- No se recoge escombro o poda; no se recogen cacharros al interior de domicilios, favor de dejarlos fuera.\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"**¡ADVERTENCIA!** \\\\- No se recoge escombro o poda; no se recogen cacharros al interior de domicilios, favor de dejarlos fuera.\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"5e94a25d1078bd6d2e8b4571\",\n                                                                            \"question\": \"Tipo de material a recolectar\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Tipo de material a recolectar\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"Tipo de material a recolectar\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false,\n                                                                            \"possible_answers\": [\n                                                                                {\n                                                                                    \"value\": \"Electrónico\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"Electrónico\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"Electrónico\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false\n                                                                                },\n                                                                                {\n                                                                                    \"value\": \"Llantas\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"Llantas\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"Llantas\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false\n                                                                                },\n                                                                                {\n                                                                                    \"value\": \"Cartón\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"Cartón\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"Cartón\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false\n                                                                                },\n                                                                                {\n                                                                                    \"value\": \"Muebles\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"Muebles\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"Muebles\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false\n                                                                                },\n                                                                                {\n                                                                                    \"value\": \"Vidrio\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"Vidrio\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"Vidrio\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false\n                                                                                },\n                                                                                {\n                                                                                    \"value\": \"Colchones\",\n                                                                                    \"value_translations\": {\n                                                                                        \"es\": \"Colchones\",\n                                                                                        \"en\": \"\",\n                                                                                        \"ca\": \"\",\n                                                                                        \"eu\": \"\",\n                                                                                        \"fr\": \"\",\n                                                                                        \"es_MX\": \"Colchones\",\n                                                                                        \"en_AU\": \"\"\n                                                                                    },\n                                                                                    \"archived\": false\n                                                                                }\n                                                                            ]\n                                                                        },\n                                                                        \"required\": true,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"number\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"tlj_r_descacharrizacion_n\",\n                                                                            \"help_text\": \"Especifique el peso aproximado del material a recolectar.\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"Especifique el peso aproximado del material a recolectar.\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"Especifique el peso aproximado del material a recolectar.\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"5e94a2f002be88b22b8b4585\",\n                                                                            \"question\": \"Peso aproximado\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Peso aproximado\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"Peso aproximado\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": true,\n                                                                        \"default_value\": \"\"\n                                                                    }\n                                                                ],\n                                                                \"id\": \"5eebae47c0579d280a8b4578\",\n                                                                \"name\": \"Tlj_Concatenada_CasaDescacharrización\",\n                                                                \"use_cases\": [\n                                                                    {\n                                                                        \"type\": \"linked_list\",\n                                                                        \"id\": \"66ed366037c0c32c020b5372\"\n                                                                    }\n                                                                ]\n                                                            }\n                                                        },\n                                                        {\n                                                            \"value\": \"6c\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"Opción 2\",\n                                                                \"en\": \"6c\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false,\n                                                            \"next_question_list\": {\n                                                                \"requiredVariables\": [],\n                                                                \"configurable_questions\": [\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"text\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"alc_a_encargosaseromaldeldptodemantenimientodeedificios_aclaracionesalorigen_T\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"5f7336e49041c4e2018b4579\",\n                                                                            \"question\": \"Aclaraciones al origen\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Aclaraciones al origen\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [\n                                                                                {\n                                                                                    \"name\": \"Alcobendas\",\n                                                                                    \"color\": \"#0271b8\",\n                                                                                    \"id\": \"Alcobendas\"\n                                                                                },\n                                                                                {\n                                                                                    \"name\": \"mantenimiento\",\n                                                                                    \"color\": \"#000000\",\n                                                                                    \"id\": \"mantenimiento\"\n                                                                                }\n                                                                            ],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    }\n                                                                ],\n                                                                \"id\": \"5fb4fbda4e63f2d9018b456b\",\n                                                                \"name\": \"Solicitudes, aclaraciones al origen\",\n                                                                \"use_cases\": [\n                                                                    {\n                                                                        \"type\": \"linked_list\",\n                                                                        \"id\": \"66ed366037c0c32c020b5372\"\n                                                                    }\n                                                                ]\n                                                            }\n                                                        },\n                                                        {\n                                                            \"value\": \"Opcion 3\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"ffd\",\n                                                                \"en\": \"Opcion 3\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"Opcion 4\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"fft\",\n                                                                \"en\": \"Opcion 4\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"Opcion 5\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"\",\n                                                                \"en\": \"Opcion 5\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false,\n                                                            \"next_question_list\": {\n                                                                \"requiredVariables\": [],\n                                                                \"configurable_questions\": [\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": false,\n                                                                        \"hidden_in_open010_form\": false,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"text\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"necesitascontarnosalgomas_t\",\n                                                                            \"help_text\": \"Apórtanos aquí la información adicional que consideres para atender de forma más eficiente tu solicitud📌\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"Apórtanos aquí la información adicional que consideres para atender de forma más eficiente tu solicitud📌\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"Aportanos aquí la información adicional que consideres para atender de forma más eficiente tu solicitud.\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"5e84d6f81078bd27238b46a1\",\n                                                                            \"question\": \"¿Necesitas contarnos algo más?\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"¿Necesitas contarnos algo más?\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"¿Necesitas contarnos algo más?\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    }\n                                                                ],\n                                                                \"id\": \"649beeb3e0987774410f7395\",\n                                                                \"name\": \"Lista encadenada\",\n                                                                \"use_cases\": [\n                                                                    {\n                                                                        \"type\": \"linked_list\",\n                                                                        \"id\": \"66ed366037c0c32c020b5372\"\n                                                                    }\n                                                                ]\n                                                            }\n                                                        }\n                                                    ]\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            }\n                                        ],\n                                        \"id\": \"68d157ac62a9d00ccb0f6d3f\",\n                                        \"name\": \"Prueba lista encadenada\",\n                                        \"use_cases\": [\n                                            {\n                                                \"type\": \"linked_list\",\n                                                \"id\": \"675738c67470888ae20cc926\",\n                                                \"description\": \"Prueba 01\"\n                                            }\n                                        ],\n                                        \"description\": \"Prueba lista encadenada\"\n                                    }\n                                }\n                            ]\n                        },\n                        \"required\": false,\n                        \"default_value\": \"\"\n                    },\n                    {\n                        \"editable\": true,\n                        \"hidden_in_detail\": false,\n                        \"hidden_in_form\": false,\n                        \"hidden_in_open010_detail\": false,\n                        \"hidden_in_open010_form\": false,\n                        \"show_collapsed\": false,\n                        \"default_collapsed\": false,\n                        \"question\": {\n                            \"type\": \"multiValueList\",\n                            \"active\": true,\n                            \"code\": \"multicorta\",\n                            \"help_text\": \"a tun can plató\",\n                            \"help_text_translations\": {\n                                \"es\": \"a tun can plató\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"id\": \"68d11f95f9f4e3b4140e00d3\",\n                            \"question\": \"a tun can plató?\",\n                            \"question_translations\": {\n                                \"es\": \"a tun can plató?\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"tags\": [],\n                            \"archived\": false,\n                            \"possible_answers\": [\n                                {\n                                    \"value\": \"Si\",\n                                    \"value_translations\": {\n                                        \"es\": \"Si\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false,\n                                    \"next_question_list\": {\n                                        \"requiredVariables\": [],\n                                        \"configurable_questions\": [\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"multiValueList\",\n                                                    \"active\": true,\n                                                    \"code\": \"tlj_r_descacharrizacion_lm\",\n                                                    \"help_text\": \"**¡ADVERTENCIA!** \\\\- No se recoge escombro o poda; no se recogen cacharros al interior de domicilios, favor de dejarlos fuera.\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"**¡ADVERTENCIA!** \\\\- No se recoge escombro o poda; no se recogen cacharros al interior de domicilios, favor de dejarlos fuera.\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"**¡ADVERTENCIA!** \\\\- No se recoge escombro o poda; no se recogen cacharros al interior de domicilios, favor de dejarlos fuera.\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"5e94a25d1078bd6d2e8b4571\",\n                                                    \"question\": \"Tipo de material a recolectar\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"Tipo de material a recolectar\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"Tipo de material a recolectar\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false,\n                                                    \"possible_answers\": [\n                                                        {\n                                                            \"value\": \"Electrónico\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"Electrónico\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"Electrónico\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"Llantas\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"Llantas\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"Llantas\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"Cartón\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"Cartón\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"Cartón\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"Muebles\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"Muebles\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"Muebles\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"Vidrio\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"Vidrio\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"Vidrio\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        },\n                                                        {\n                                                            \"value\": \"Colchones\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"Colchones\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"Colchones\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false\n                                                        }\n                                                    ]\n                                                },\n                                                \"required\": true,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"number\",\n                                                    \"active\": true,\n                                                    \"code\": \"tlj_r_descacharrizacion_n\",\n                                                    \"help_text\": \"Especifique el peso aproximado del material a recolectar.\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"Especifique el peso aproximado del material a recolectar.\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"Especifique el peso aproximado del material a recolectar.\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"5e94a2f002be88b22b8b4585\",\n                                                    \"question\": \"Peso aproximado\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"Peso aproximado\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"Peso aproximado\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false\n                                                },\n                                                \"required\": true,\n                                                \"default_value\": \"\"\n                                            }\n                                        ],\n                                        \"id\": \"5eebae47c0579d280a8b4578\",\n                                        \"name\": \"Tlj_Concatenada_CasaDescacharrización\",\n                                        \"use_cases\": [\n                                            {\n                                                \"type\": \"linked_list\",\n                                                \"id\": \"66ed366037c0c32c020b5372\"\n                                            }\n                                        ]\n                                    }\n                                },\n                                {\n                                    \"value\": \"No\",\n                                    \"value_translations\": {\n                                        \"es\": \"No\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false,\n                                    \"next_question_list\": {\n                                        \"requiredVariables\": [],\n                                        \"configurable_questions\": [\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"text\",\n                                                    \"active\": true,\n                                                    \"code\": \"tlj_r_otro_t\",\n                                                    \"help_text\": \"\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"5f2042a8dcb6b4a7058b4568\",\n                                                    \"question\": \"Describa en caso de haber seleccionado \\\"Otro\\\"\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"Describa en caso de haber seleccionado \\\"Otro\\\"\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"Describa en caso de haber seleccionado \\\"Otro\\\"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [\n                                                        {\n                                                            \"name\": \"movilidad\",\n                                                            \"id\": \"movilidad\"\n                                                        }\n                                                    ],\n                                                    \"archived\": false\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            }\n                                        ],\n                                        \"id\": \"5f2042aedcb6b4a2058b4571\",\n                                        \"name\": \"Tlj_Movilidad_Concatenada_Describe\",\n                                        \"use_cases\": [\n                                            {\n                                                \"type\": \"linked_list\",\n                                                \"id\": \"66ed366037c0c32c020b5372\"\n                                            }\n                                        ]\n                                    }\n                                }\n                            ]\n                        },\n                        \"required\": false,\n                        \"default_value\": \"\"\n                    },\n                    {\n                        \"editable\": true,\n                        \"hidden_in_detail\": false,\n                        \"hidden_in_form\": false,\n                        \"hidden_in_open010_detail\": false,\n                        \"hidden_in_open010_form\": false,\n                        \"show_collapsed\": false,\n                        \"default_collapsed\": false,\n                        \"question\": {\n                            \"type\": \"datetime\",\n                            \"active\": true,\n                            \"code\": \"fecha_1\",\n                            \"help_text\": \"\",\n                            \"help_text_translations\": {\n                                \"es\": \"\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"id\": \"64544f73bae992b0c7064c03\",\n                            \"question\": \"Selecciona la fecha\",\n                            \"question_translations\": {\n                                \"es\": \"Selecciona la fecha\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"Selecciona la fecha\",\n                                \"en_AU\": \"\"\n                            },\n                            \"tags\": [],\n                            \"archived\": false\n                        },\n                        \"required\": false,\n                        \"default_value\": \"\"\n                    },\n                    {\n                        \"editable\": true,\n                        \"hidden_in_detail\": false,\n                        \"hidden_in_form\": false,\n                        \"hidden_in_open010_detail\": false,\n                        \"hidden_in_open010_form\": false,\n                        \"show_collapsed\": false,\n                        \"default_collapsed\": false,\n                        \"question\": {\n                            \"type\": \"hash\",\n                            \"active\": true,\n                            \"code\": \"HASHPR\",\n                            \"help_text\": \"un hash\",\n                            \"help_text_translations\": {\n                                \"es\": \"\",\n                                \"en\": \"un hash\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"id\": \"68e5212e84271c2e2708037a\",\n                            \"question\": \"HASH?\",\n                            \"question_translations\": {\n                                \"es\": \"\",\n                                \"en\": \"HASH?\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"tags\": [],\n                            \"archived\": false,\n                            \"regex\": \"/.*/\"\n                        },\n                        \"required\": false,\n                        \"default_value\": \"\"\n                    }\n                ],\n                \"id\": \"68d1448262a9d00ccb0f6d19\",\n                \"name\": \"Bateria_de_pruebas\",\n                \"use_cases\": [],\n                \"description\": \"Batería de pruebas\"\n            },\n            \"social\": true,\n            \"evaluation\": true,\n            \"color\": \"#FBC02D\",\n            \"hideEstimatedDate\": false,\n            \"mandatory_description\": true,\n            \"mandatory_informant_config\": [\n                {\n                    \"field\": \"first_name\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"last_name\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"email\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"twitter_nickname\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"id_document\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"addresses\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"gender\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"secondary_phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"birthday\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"user_location_area\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"address\",\n                    \"message\": \"\",\n                    \"required\": false\n                }\n            ],\n            \"max_upload_files\": 5,\n            \"max_upload_medias\": 5,\n            \"public\": true,\n            \"public_requests\": false,\n            \"public_requests_internal\": false,\n            \"allow_changing_request_privacy\": false,\n            \"service_code\": \"2\",\n            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png\",\n            \"sponsoring_info\": {\n                \"display\": false\n            },\n            \"status_node\": [],\n            \"typology\": {\n                \"hasLocation\": true,\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"name\": \"Aviso\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"with_informant\": true,\n            \"with_internal_informant\": true,\n            \"with_authorized_internal_users\": false\n        },\n        \"service_request_id\": \"ALC44082\",\n        \"status_node\": {\n            \"status_node_type\": \"initial_node\",\n            \"name\": \"Nuevo\",\n            \"color\": \"#f1c40f\",\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"5850dd1ee22c6d9f51b0157b\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"68dd36f6dc531d0482022469\",\n        \"user\": {\n            \"hasPassword\": false,\n            \"nickname\": \"user_cf6b655f8bdc6b8ce17c\",\n            \"avatar\": \"https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600\",\n            \"channels\": [],\n            \"id\": \"68b064f122eb8e9dcf08aad6\",\n            \"notification_channels\": [],\n            \"last_geofences\": [],\n            \"jurisdiction_element_channels\": []\n        },\n        \"media_url\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/68dd36f7c08cf025276131.png\"\n    },\n    {\n        \"deleted\": false,\n        \"jurisdiction_name\": \"Alcobendas\",\n        \"service_id\": \"5627630d6aa918d3008b456a\",\n        \"service_code\": \"5\",\n        \"service_name\": \"Farolas\",\n        \"requested_datetime\": \"2025-10-30T12:25:34+00:00\",\n        \"supporting_count\": 0,\n        \"following_count\": 1,\n        \"evaluations_count\": 0,\n        \"address\": \"C. Valportillo Segunda, 8, 28108 Alcobendas, Madrid, Spain\",\n        \"updated_datetime\": \"2025-10-30T12:25:41+00:00\",\n        \"evaluations_avg\": -1,\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"status_node_type\": \"initial_node\",\n        \"files\": [\n            {\n                \"created_at\": \"2025-10-30T12:25:41+00:00\",\n                \"public\": false,\n                \"type\": \"1\",\n                \"url\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/690359453ea04969969297.pdf\",\n                \"description\": \"[PGICS]_202405_Parque María Luisa- MVS_(Presentado)_v01.00 (1).pdf\"\n            }\n        ],\n        \"is_evaluable\": false,\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"Aviso\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": true,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"current_status_assignments\": [],\n        \"public_visibility\": false,\n        \"accepted\": false,\n        \"additional_data\": [],\n        \"backoffice_user\": {\n            \"jurisdiction_element_channels\": []\n        },\n        \"comments_count\": 0,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-11-01T12:24:27+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-10-30T12:24:27+00:00\",\n        \"description\": \"prueba daniel\",\n        \"estimated_final_datetime\": \"2025-11-12T12:24:27+00:00\",\n        \"estimated_start_datetime\": \"2025-10-30T12:24:27+00:00\",\n        \"evaluation\": 0,\n        \"following\": {\n            \"isFollowing\": true,\n            \"channels\": {\n                \"email\": false,\n                \"push\": false\n            }\n        },\n        \"medias\": [\n            {\n                \"created_at\": \"2025-10-30T12:25:38+00:00\",\n                \"id\": \"69035943361db0675807db99\",\n                \"public\": true,\n                \"type\": \"image/jpeg\",\n                \"media_url\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/69035942e90c5913010149.jpg\",\n                \"created_datetime\": \"2025-10-30T12:25:38+00:00\",\n                \"deleted\": false,\n                \"media_code\": \"69035943361db0675807db99\",\n                \"check_distance\": \"no_data\",\n                \"check_time\": \"no_data\",\n                \"media_metadata\": {\n                    \"location_additional_data\": [],\n                    \"created\": \"2025-10-30T12:25:39+00:00\"\n                },\n                \"tags\": []\n            }\n        ],\n        \"address_string\": \"C. Valportillo Segunda, 8, 28108 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.530848177852,\n        \"long\": -3.6552292016614,\n        \"location_additional_data\": [\n            {\n                \"type\": \"text\",\n                \"value\": \"Empresarial\",\n                \"question\": {\n                    \"type\": \"text\",\n                    \"active\": true,\n                    \"code\": \"distrito_T\",\n                    \"help_text\": \"\",\n                    \"help_text_translations\": {\n                        \"es\": \"\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"id\": \"5de929ca0007544c098b4578\",\n                    \"question\": \"oij\",\n                    \"question_translations\": {\n                        \"es\": \"Distrito\",\n                        \"en\": \"oij\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"tags\": [\n                        {\n                            \"name\": \"distrito\",\n                            \"color\": \"#000000\",\n                            \"id\": \"distrito\"\n                        },\n                        {\n                            \"name\": \"localización\",\n                            \"color\": \"#000000\",\n                            \"id\": \"localización\"\n                        }\n                    ],\n                    \"archived\": false\n                }\n            },\n            {\n                \"type\": \"text\",\n                \"value\": \"Poligono Industrial\",\n                \"question\": {\n                    \"type\": \"text\",\n                    \"active\": true,\n                    \"code\": \"barrio_es_t\",\n                    \"help_text\": \"\",\n                    \"help_text_translations\": {\n                        \"es\": \"\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"id\": \"5ea6af91eaa11bba058b45d5\",\n                    \"question\": \"Barrio\",\n                    \"question_translations\": {\n                        \"es\": \"Barrio\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"tags\": [\n                        {\n                            \"name\": \"barrio\",\n                            \"color\": \"#000000\",\n                            \"id\": \"barrio\"\n                        },\n                        {\n                            \"name\": \"localización\",\n                            \"color\": \"#000000\",\n                            \"id\": \"localización\"\n                        }\n                    ],\n                    \"archived\": false\n                }\n            }\n        ],\n        \"priority\": {\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png\"\n        },\n        \"public\": false,\n        \"seen\": false,\n        \"service\": {\n            \"deleted\": false,\n            \"parent_service_name\": \"Alumbrado público\",\n            \"group\": \"5620e9176aa91815008b4567\",\n            \"visible_name\": \"Farolas (Aviso)\",\n            \"mandatory_medias\": false,\n            \"mandatory_files\": false,\n            \"id\": \"5627630d6aa918d3008b456a\",\n            \"additionalData\": {\n                \"requiredVariables\": [\n                    \"5de929ca0007544c098b4578\"\n                ],\n                \"configurable_questions\": [\n                    {\n                        \"editable\": true,\n                        \"hidden_in_detail\": false,\n                        \"hidden_in_form\": false,\n                        \"hidden_in_open010_detail\": false,\n                        \"hidden_in_open010_form\": false,\n                        \"show_collapsed\": false,\n                        \"default_collapsed\": false,\n                        \"question\": {\n                            \"type\": \"label\",\n                            \"active\": true,\n                            \"code\": \"Titulo_ordenanzalegal\",\n                            \"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._\",\n                            \"help_text_translations\": {\n                                \"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._\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"id\": \"67a4d41d3074f177c00b3f40\",\n                            \"question\": \"## Ordenanza legal\",\n                            \"question_translations\": {\n                                \"es\": \"## Ordenanza legal\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"tags\": [],\n                            \"archived\": false\n                        },\n                        \"required\": false,\n                        \"default_value\": \"\"\n                    },\n                    {\n                        \"editable\": true,\n                        \"hidden_in_detail\": false,\n                        \"hidden_in_form\": false,\n                        \"hidden_in_open010_detail\": false,\n                        \"hidden_in_open010_form\": false,\n                        \"show_collapsed\": false,\n                        \"default_collapsed\": false,\n                        \"question\": {\n                            \"type\": \"label\",\n                            \"active\": true,\n                            \"code\": \"Permiso_e_Inspecci__n\",\n                            \"help_text\": \"\",\n                            \"help_text_translations\": {\n                                \"es\": \"\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"id\": \"67a4d8998f526466540bd6f4\",\n                            \"question\": \"## 📝 Permiso e Inspección\",\n                            \"question_translations\": {\n                                \"es\": \"## 📝 Permiso e Inspección\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"tags\": [],\n                            \"archived\": false\n                        },\n                        \"required\": false,\n                        \"default_value\": \"\"\n                    },\n                    {\n                        \"editable\": true,\n                        \"hidden_in_detail\": false,\n                        \"hidden_in_form\": false,\n                        \"hidden_in_open010_detail\": false,\n                        \"hidden_in_open010_form\": false,\n                        \"show_collapsed\": false,\n                        \"default_collapsed\": false,\n                        \"question\": {\n                            \"type\": \"singleValueList\",\n                            \"active\": true,\n                            \"code\": \"montaje_caseta1\",\n                            \"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._\",\n                            \"help_text_translations\": {\n                                \"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._\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"id\": \"67a4d346368ebfa05405809c\",\n                            \"question\": \"Autorización de montaje\",\n                            \"question_translations\": {\n                                \"es\": \"Autorización de montaje\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"tags\": [],\n                            \"archived\": false,\n                            \"possible_answers\": [\n                                {\n                                    \"value\": \"Sí\",\n                                    \"value_translations\": {\n                                        \"es\": \"Sí\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false,\n                                    \"next_question_list\": {\n                                        \"requiredVariables\": [],\n                                        \"configurable_questions\": [\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"label\",\n                                                    \"active\": true,\n                                                    \"code\": \"Funcionamiento_feria\",\n                                                    \"help_text\": \"\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67a4922f368ebfa054058094\",\n                                                    \"question\": \"## 📋 Funcionamiento del formulario\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"## 📋 Funcionamiento del formulario\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"label\",\n                                                    \"active\": true,\n                                                    \"code\": \"funcion_feria\",\n                                                    \"help_text\": \"\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67a4ab0853533cfb5605fcb5\",\n                                                    \"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.  \\n\\nEn caso de incumplimiento, el inspector deberá:  \\n\\n*   Describir las razones en el campo de texto libre.  \\n*   Adjuntar evidencias gráficas o archivos que respalden la observación.  \\n\\nEste proceso garantiza una supervisión eficiente y una documentación clara de las incidencias.\",\n                                                    \"question_translations\": {\n                                                        \"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.  \\n\\nEn caso de incumplimiento, el inspector deberá:  \\n\\n*   Describir las razones en el campo de texto libre.  \\n*   Adjuntar evidencias gráficas o archivos que respalden la observación.  \\n\\nEste proceso garantiza una supervisión eficiente y una documentación clara de las incidencias.\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"label\",\n                                                    \"active\": true,\n                                                    \"code\": \"titulo_feria\",\n                                                    \"help_text\": \"\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67a4ab2f22f65863190e13d7\",\n                                                    \"question\": \"## 📏 Dimensiones y estructura de las casetas\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"## 📏 Dimensiones y estructura de las casetas\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"singleValueList\",\n                                                    \"active\": true,\n                                                    \"code\": \"prueba_feria01\",\n                                                    \"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._\",\n                                                    \"help_text_translations\": {\n                                                        \"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._\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67a48efd3074f177c00b3f34\",\n                                                    \"question\": \"**Documento de dimensiones**\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"**Documento de dimensiones**\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false,\n                                                    \"possible_answers\": [\n                                                        {\n                                                            \"value\": \"El documento en el que se reflejan las dimensiones no está disponible o presenta irregularidades.\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"El documento en el que se reflejan las dimensiones no está disponible o presenta irregularidades.\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false,\n                                                            \"next_question_list\": {\n                                                                \"requiredVariables\": [],\n                                                                \"configurable_questions\": [\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": true,\n                                                                        \"hidden_in_open010_form\": true,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"text\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"texto_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a240f25a7fd323a5026116\",\n                                                                            \"question\": \"Indique las razones del incumplimiento:\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Indique las razones del incumplimiento:\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": true,\n                                                                        \"hidden_in_open010_form\": true,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"image\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"imagen_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a241511adde9311d0f1835\",\n                                                                            \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    }\n                                                                ],\n                                                                \"id\": \"67a2415c8f62e72c70034f23\",\n                                                                \"name\": \"encadenadas_feria1\",\n                                                                \"use_cases\": [\n                                                                    {\n                                                                        \"type\": \"linked_list\",\n                                                                        \"id\": \"66ed366037c0c32c020b5372\"\n                                                                    }\n                                                                ],\n                                                                \"description\": \"Encadenadas\"\n                                                            }\n                                                        }\n                                                    ]\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"singleValueList\",\n                                                    \"active\": true,\n                                                    \"code\": \"feria1\",\n                                                    \"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._\",\n                                                    \"help_text_translations\": {\n                                                        \"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._\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67a23e881a0f77255607a493\",\n                                                    \"question\": \"**Certificado de seguridad y solidez**\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"**Certificado de seguridad y solidez**\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false,\n                                                    \"possible_answers\": [\n                                                        {\n                                                            \"value\": \"El certificado de seguridad y solidez emitido por un técnico cualificado no ha sido presentado o es inválido\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"El certificado de seguridad y solidez emitido por un técnico cualificado no ha sido presentado o es inválido\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false,\n                                                            \"next_question_list\": {\n                                                                \"requiredVariables\": [],\n                                                                \"configurable_questions\": [\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": true,\n                                                                        \"hidden_in_open010_form\": true,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"text\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"texto_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a240f25a7fd323a5026116\",\n                                                                            \"question\": \"Indique las razones del incumplimiento:\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Indique las razones del incumplimiento:\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": true,\n                                                                        \"hidden_in_open010_form\": true,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"image\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"imagen_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a241511adde9311d0f1835\",\n                                                                            \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    }\n                                                                ],\n                                                                \"id\": \"67a2415c8f62e72c70034f23\",\n                                                                \"name\": \"encadenadas_feria1\",\n                                                                \"use_cases\": [\n                                                                    {\n                                                                        \"type\": \"linked_list\",\n                                                                        \"id\": \"66ed366037c0c32c020b5372\"\n                                                                    }\n                                                                ],\n                                                                \"description\": \"Encadenadas\"\n                                                            }\n                                                        }\n                                                    ]\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"singleValueList\",\n                                                    \"active\": true,\n                                                    \"code\": \"prueba_feria2\",\n                                                    \"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._\",\n                                                    \"help_text_translations\": {\n                                                        \"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._\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67a48f53bddb8f0fa301e5f4\",\n                                                    \"question\": \"**Medidas inadecuadas de la caseta**\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"**Medidas inadecuadas de la caseta**\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false,\n                                                    \"possible_answers\": [\n                                                        {\n                                                            \"value\": \"Las medidas de la caseta no cumplen con la normativa establecida.\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"Las medidas de la caseta no cumplen con la normativa establecida.\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false,\n                                                            \"next_question_list\": {\n                                                                \"requiredVariables\": [],\n                                                                \"configurable_questions\": [\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": true,\n                                                                        \"hidden_in_open010_form\": true,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"text\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"texto_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a240f25a7fd323a5026116\",\n                                                                            \"question\": \"Indique las razones del incumplimiento:\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Indique las razones del incumplimiento:\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": true,\n                                                                        \"hidden_in_open010_form\": true,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"image\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"imagen_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a241511adde9311d0f1835\",\n                                                                            \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    }\n                                                                ],\n                                                                \"id\": \"67a2415c8f62e72c70034f23\",\n                                                                \"name\": \"encadenadas_feria1\",\n                                                                \"use_cases\": [\n                                                                    {\n                                                                        \"type\": \"linked_list\",\n                                                                        \"id\": \"66ed366037c0c32c020b5372\"\n                                                                    }\n                                                                ],\n                                                                \"description\": \"Encadenadas\"\n                                                            }\n                                                        }\n                                                    ]\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"singleValueList\",\n                                                    \"active\": true,\n                                                    \"code\": \"prueba_feria3\",\n                                                    \"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_\",\n                                                    \"help_text_translations\": {\n                                                        \"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_\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67a48f833074f177c00b3f36\",\n                                                    \"question\": \"**Material no autorizado en módulos de casetas**\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"**Material no autorizado en módulos de casetas**\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false,\n                                                    \"possible_answers\": [\n                                                        {\n                                                            \"value\": \"El módulo prefabricado o de chapa no cumple con los requisitos de material incombustible.\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"El módulo prefabricado o de chapa no cumple con los requisitos de material incombustible.\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false,\n                                                            \"next_question_list\": {\n                                                                \"requiredVariables\": [],\n                                                                \"configurable_questions\": [\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": true,\n                                                                        \"hidden_in_open010_form\": true,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"text\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"texto_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a240f25a7fd323a5026116\",\n                                                                            \"question\": \"Indique las razones del incumplimiento:\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Indique las razones del incumplimiento:\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": true,\n                                                                        \"hidden_in_open010_form\": true,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"image\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"imagen_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a241511adde9311d0f1835\",\n                                                                            \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    }\n                                                                ],\n                                                                \"id\": \"67a2415c8f62e72c70034f23\",\n                                                                \"name\": \"encadenadas_feria1\",\n                                                                \"use_cases\": [\n                                                                    {\n                                                                        \"type\": \"linked_list\",\n                                                                        \"id\": \"66ed366037c0c32c020b5372\"\n                                                                    }\n                                                                ],\n                                                                \"description\": \"Encadenadas\"\n                                                            }\n                                                        }\n                                                    ]\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": false,\n                                                \"hidden_in_open010_form\": false,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"singleValueList\",\n                                                    \"active\": true,\n                                                    \"code\": \"prueba_feria4\",\n                                                    \"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._\",\n                                                    \"help_text_translations\": {\n                                                        \"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._\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67a48fb322f65863190e13d5\",\n                                                    \"question\": \"**Dimensiones incorrectas en la cubierta**\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"**Dimensiones incorrectas en la cubierta**\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false,\n                                                    \"possible_answers\": [\n                                                        {\n                                                            \"value\": \"Las medidas de la cubierta no cumplen con la normativa establecida.\",\n                                                            \"value_translations\": {\n                                                                \"es\": \"Las medidas de la cubierta no cumplen con la normativa establecida.\",\n                                                                \"en\": \"\",\n                                                                \"ca\": \"\",\n                                                                \"eu\": \"\",\n                                                                \"fr\": \"\",\n                                                                \"es_MX\": \"\",\n                                                                \"en_AU\": \"\"\n                                                            },\n                                                            \"archived\": false,\n                                                            \"next_question_list\": {\n                                                                \"requiredVariables\": [],\n                                                                \"configurable_questions\": [\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": true,\n                                                                        \"hidden_in_open010_form\": true,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"text\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"texto_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a240f25a7fd323a5026116\",\n                                                                            \"question\": \"Indique las razones del incumplimiento:\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Indique las razones del incumplimiento:\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    },\n                                                                    {\n                                                                        \"editable\": true,\n                                                                        \"hidden_in_detail\": false,\n                                                                        \"hidden_in_form\": false,\n                                                                        \"hidden_in_open010_detail\": true,\n                                                                        \"hidden_in_open010_form\": true,\n                                                                        \"show_collapsed\": false,\n                                                                        \"default_collapsed\": false,\n                                                                        \"question\": {\n                                                                            \"type\": \"image\",\n                                                                            \"active\": true,\n                                                                            \"code\": \"imagen_feria\",\n                                                                            \"help_text\": \"\",\n                                                                            \"help_text_translations\": {\n                                                                                \"es\": \"\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"id\": \"67a241511adde9311d0f1835\",\n                                                                            \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                            \"question_translations\": {\n                                                                                \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                                                \"en\": \"\",\n                                                                                \"ca\": \"\",\n                                                                                \"eu\": \"\",\n                                                                                \"fr\": \"\",\n                                                                                \"es_MX\": \"\",\n                                                                                \"en_AU\": \"\"\n                                                                            },\n                                                                            \"tags\": [],\n                                                                            \"archived\": false\n                                                                        },\n                                                                        \"required\": false,\n                                                                        \"default_value\": \"\"\n                                                                    }\n                                                                ],\n                                                                \"id\": \"67a2415c8f62e72c70034f23\",\n                                                                \"name\": \"encadenadas_feria1\",\n                                                                \"use_cases\": [\n                                                                    {\n                                                                        \"type\": \"linked_list\",\n                                                                        \"id\": \"66ed366037c0c32c020b5372\"\n                                                                    }\n                                                                ],\n                                                                \"description\": \"Encadenadas\"\n                                                            }\n                                                        }\n                                                    ]\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            }\n                                        ],\n                                        \"id\": \"67a23e97568815817600a1b3\",\n                                        \"name\": \"prueba_feria1\",\n                                        \"use_cases\": [\n                                            {\n                                                \"type\": \"linked_list\",\n                                                \"id\": \"66ed366037c0c32c020b5372\"\n                                            }\n                                        ],\n                                        \"description\": \"Certificado de seguridad y solidez\"\n                                    }\n                                },\n                                {\n                                    \"value\": \"No\",\n                                    \"value_translations\": {\n                                        \"es\": \"No\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false,\n                                    \"next_question_list\": {\n                                        \"requiredVariables\": [],\n                                        \"configurable_questions\": [\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": true,\n                                                \"hidden_in_open010_form\": true,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"text\",\n                                                    \"active\": true,\n                                                    \"code\": \"texto_feria\",\n                                                    \"help_text\": \"\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67a240f25a7fd323a5026116\",\n                                                    \"question\": \"Indique las razones del incumplimiento:\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"Indique las razones del incumplimiento:\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            },\n                                            {\n                                                \"editable\": true,\n                                                \"hidden_in_detail\": false,\n                                                \"hidden_in_form\": false,\n                                                \"hidden_in_open010_detail\": true,\n                                                \"hidden_in_open010_form\": true,\n                                                \"show_collapsed\": false,\n                                                \"default_collapsed\": false,\n                                                \"question\": {\n                                                    \"type\": \"image\",\n                                                    \"active\": true,\n                                                    \"code\": \"imagen_feria\",\n                                                    \"help_text\": \"\",\n                                                    \"help_text_translations\": {\n                                                        \"es\": \"\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"id\": \"67a241511adde9311d0f1835\",\n                                                    \"question\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                    \"question_translations\": {\n                                                        \"es\": \"Adjunte las evidencias gráficas del incumplimiento:\",\n                                                        \"en\": \"\",\n                                                        \"ca\": \"\",\n                                                        \"eu\": \"\",\n                                                        \"fr\": \"\",\n                                                        \"es_MX\": \"\",\n                                                        \"en_AU\": \"\"\n                                                    },\n                                                    \"tags\": [],\n                                                    \"archived\": false\n                                                },\n                                                \"required\": false,\n                                                \"default_value\": \"\"\n                                            }\n                                        ],\n                                        \"id\": \"67a2415c8f62e72c70034f23\",\n                                        \"name\": \"encadenadas_feria1\",\n                                        \"use_cases\": [\n                                            {\n                                                \"type\": \"linked_list\",\n                                                \"id\": \"66ed366037c0c32c020b5372\"\n                                            }\n                                        ],\n                                        \"description\": \"Encadenadas\"\n                                    }\n                                }\n                            ]\n                        },\n                        \"required\": false,\n                        \"response_attribute\": \"MONTAJEAUT_CASETA\",\n                        \"default_value\": \"\"\n                    }\n                ],\n                \"endpoint\": \"https://feria.free.beeceptor.com/todos?distrito=%5de929ca0007544c098b4578%\",\n                \"id\": \"67a4d351a35d066cff07c6e8\",\n                \"name\": \"encadenada_caseta\",\n                \"use_cases\": [],\n                \"description\": \"Autorización de montaje\"\n            },\n            \"social\": true,\n            \"evaluation\": true,\n            \"color\": \"#FBC02D\",\n            \"hideEstimatedDate\": true,\n            \"mandatory_description\": true,\n            \"mandatory_informant_config\": [\n                {\n                    \"field\": \"first_name\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"last_name\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"phone\",\n                    \"message\": \"Me dice Belén que lo quiere\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"email\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"twitter_nickname\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"id_document\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"addresses\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"gender\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"secondary_phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"birthday\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"user_location_area\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"address\",\n                    \"message\": \"\",\n                    \"required\": false\n                }\n            ],\n            \"max_upload_files\": 1,\n            \"max_upload_medias\": 2,\n            \"public\": true,\n            \"public_requests\": false,\n            \"public_requests_internal\": false,\n            \"allow_changing_request_privacy\": false,\n            \"service_code\": \"5\",\n            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png\",\n            \"sponsoring_info\": {\n                \"display\": false\n            },\n            \"status_node\": [],\n            \"typology\": {\n                \"hasLocation\": true,\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"name\": \"Aviso\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"with_informant\": true,\n            \"with_internal_informant\": false,\n            \"with_authorized_internal_users\": false\n        },\n        \"service_request_id\": \"ALC44136\",\n        \"status_node\": {\n            \"status_node_type\": \"initial_node\",\n            \"name\": \"Nuevo\",\n            \"color\": \"#f1c40f\",\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"5850dd1fe22c6d9f51b0158d\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"6903593f73f453bfa103bbb9\",\n        \"user\": {\n            \"hasPassword\": false,\n            \"nickname\": \"user_cf6b655f8bdc6b8ce17c\",\n            \"avatar\": \"https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600\",\n            \"channels\": [],\n            \"id\": \"68b064f122eb8e9dcf08aad6\",\n            \"notification_channels\": [],\n            \"last_geofences\": [],\n            \"jurisdiction_element_channels\": []\n        },\n        \"media_url\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/69035942e90c5913010149.jpg\"\n    },\n    {\n        \"deleted\": false,\n        \"jurisdiction_name\": \"Alcobendas\",\n        \"service_id\": \"6786c96fddce2c23de0fd7bf\",\n        \"service_code\": \"122\",\n        \"service_name\": \"Farolas_2\",\n        \"requested_datetime\": \"2025-10-31T18:40:10+00:00\",\n        \"supporting_count\": 0,\n        \"following_count\": 0,\n        \"evaluations_count\": 0,\n        \"address\": \"P.º del Conde de los Gaitanes, 22, 28109 Alcobendas, Madrid, Spain\",\n        \"updated_datetime\": \"2025-10-31T18:40:10+00:00\",\n        \"evaluations_avg\": -1,\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"status_node_type\": \"initial_node\",\n        \"files\": [],\n        \"is_evaluable\": false,\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"Aviso\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": true,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"current_status_assignments\": [],\n        \"public_visibility\": false,\n        \"accepted\": false,\n        \"additional_data\": [],\n        \"comments_count\": 0,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-11-02T18:40:10+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-10-31T18:40:10+00:00\",\n        \"description\": \"cd\",\n        \"estimated_final_datetime\": \"2025-11-13T18:40:10+00:00\",\n        \"estimated_start_datetime\": \"2025-10-31T18:40:10+00:00\",\n        \"evaluation\": 0,\n        \"following\": {\n            \"isFollowing\": false\n        },\n        \"medias\": [],\n        \"address_string\": \"P.º del Conde de los Gaitanes, 22, 28109 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.550330732028,\n        \"long\": -3.6591339111328,\n        \"location_additional_data\": [\n            {\n                \"type\": \"text\",\n                \"value\": \"Urbanizaciones\",\n                \"question\": {\n                    \"type\": \"text\",\n                    \"active\": true,\n                    \"code\": \"distrito_T\",\n                    \"help_text\": \"\",\n                    \"help_text_translations\": {\n                        \"es\": \"\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"id\": \"5de929ca0007544c098b4578\",\n                    \"question\": \"oij\",\n                    \"question_translations\": {\n                        \"es\": \"Distrito\",\n                        \"en\": \"oij\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"tags\": [\n                        {\n                            \"name\": \"distrito\",\n                            \"color\": \"#000000\",\n                            \"id\": \"distrito\"\n                        },\n                        {\n                            \"name\": \"localización\",\n                            \"color\": \"#000000\",\n                            \"id\": \"localización\"\n                        }\n                    ],\n                    \"archived\": false\n                }\n            }\n        ],\n        \"priority\": {\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png\"\n        },\n        \"public\": false,\n        \"seen\": false,\n        \"service\": {\n            \"deleted\": false,\n            \"parent_service_name\": \"Alumbrado público\",\n            \"group\": \"5620e9176aa91815008b4567\",\n            \"visible_name\": \"Farolas_2 (Aviso)\",\n            \"mandatory_medias\": false,\n            \"mandatory_files\": false,\n            \"id\": \"6786c96fddce2c23de0fd7bf\",\n            \"social\": true,\n            \"evaluation\": true,\n            \"color\": \"#000000\",\n            \"hideEstimatedDate\": false,\n            \"mandatory_description\": false,\n            \"mandatory_informant_config\": [\n                {\n                    \"field\": \"first_name\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"last_name\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"secondary_phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"email\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"twitter_nickname\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"id_document\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"addresses\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"address\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"gender\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"birthday\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"user_location_area\",\n                    \"message\": \"\",\n                    \"required\": false\n                }\n            ],\n            \"max_upload_files\": 5,\n            \"max_upload_medias\": 5,\n            \"public\": true,\n            \"public_requests\": false,\n            \"public_requests_internal\": false,\n            \"allow_changing_request_privacy\": false,\n            \"service_code\": \"122\",\n            \"sponsoring_info\": {\n                \"display\": false\n            },\n            \"status_node\": [],\n            \"typology\": {\n                \"hasLocation\": true,\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"name\": \"Aviso\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"with_informant\": false,\n            \"with_internal_informant\": false,\n            \"with_authorized_internal_users\": false\n        },\n        \"service_request_id\": \"ALC44140\",\n        \"status_node\": {\n            \"status_node_type\": \"initial_node\",\n            \"name\": \"Nuevo\",\n            \"color\": \"#f1c40f\",\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"6786c96fddce2c23de0fd7b0\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"6905028a9651a932ed0b677e\",\n        \"user\": {\n            \"hasPassword\": false,\n            \"nickname\": \"user_cf6b655f8bdc6b8ce17c\",\n            \"avatar\": \"https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600\",\n            \"channels\": [],\n            \"id\": \"68b064f122eb8e9dcf08aad6\",\n            \"notification_channels\": [],\n            \"last_geofences\": [],\n            \"jurisdiction_element_channels\": []\n        }\n    },\n    {\n        \"deleted\": false,\n        \"jurisdiction_name\": \"Alcobendas\",\n        \"service_id\": \"570b55b26aa918db008b4567\",\n        \"service_code\": \"60\",\n        \"service_name\": \"Ascensor calle Granada\",\n        \"requested_datetime\": \"2025-11-04T16:02:51+00:00\",\n        \"supporting_count\": 0,\n        \"following_count\": 1,\n        \"evaluations_count\": 0,\n        \"address\": \"P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain\",\n        \"updated_datetime\": \"2025-11-04T16:02:53+00:00\",\n        \"evaluations_avg\": -1,\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"status_node_type\": \"initial_node\",\n        \"files\": [],\n        \"is_evaluable\": false,\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"Aviso\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": true,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"current_status_assignments\": [],\n        \"public_visibility\": false,\n        \"accepted\": false,\n        \"additional_data\": [],\n        \"comments_count\": 0,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-11-06T16:02:52+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-11-04T16:02:52+00:00\",\n        \"description\": \"prueba\",\n        \"estimated_final_datetime\": \"2025-11-17T16:02:52+00:00\",\n        \"estimated_start_datetime\": \"2025-11-04T16:02:52+00:00\",\n        \"evaluation\": 0,\n        \"following\": {\n            \"isFollowing\": true,\n            \"channels\": {\n                \"email\": false,\n                \"push\": false\n            }\n        },\n        \"medias\": [],\n        \"address_string\": \"P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain\",\n        \"lat\": 40.54628714504,\n        \"long\": -3.6569023132324,\n        \"location_additional_data\": [\n            {\n                \"type\": \"text\",\n                \"value\": \"Norte\",\n                \"question\": {\n                    \"type\": \"text\",\n                    \"active\": true,\n                    \"code\": \"distrito_T\",\n                    \"help_text\": \"\",\n                    \"help_text_translations\": {\n                        \"es\": \"\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"id\": \"5de929ca0007544c098b4578\",\n                    \"question\": \"oij\",\n                    \"question_translations\": {\n                        \"es\": \"Distrito\",\n                        \"en\": \"oij\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"tags\": [\n                        {\n                            \"name\": \"distrito\",\n                            \"color\": \"#000000\",\n                            \"id\": \"distrito\"\n                        },\n                        {\n                            \"name\": \"localización\",\n                            \"color\": \"#000000\",\n                            \"id\": \"localización\"\n                        }\n                    ],\n                    \"archived\": false\n                }\n            }\n        ],\n        \"priority\": {\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png\"\n        },\n        \"public\": true,\n        \"seen\": false,\n        \"service\": {\n            \"deleted\": false,\n            \"parent_service_name\": \"Ascensores en vía pública\",\n            \"group\": \"570b50756aa918d6008b4567\",\n            \"visible_name\": \"Ascensor calle Granada (Aviso)\",\n            \"mandatory_medias\": false,\n            \"mandatory_files\": false,\n            \"id\": \"570b55b26aa918db008b4567\",\n            \"additionalData\": {\n                \"requiredVariables\": [],\n                \"configurable_questions\": [\n                    {\n                        \"editable\": true,\n                        \"hidden_in_detail\": false,\n                        \"hidden_in_form\": false,\n                        \"hidden_in_open010_detail\": false,\n                        \"hidden_in_open010_form\": false,\n                        \"show_collapsed\": false,\n                        \"default_collapsed\": false,\n                        \"question\": {\n                            \"type\": \"singleValueList\",\n                            \"active\": true,\n                            \"code\": \"Alc_ascensorcallegranada_cualeselproblema_ls\",\n                            \"help_text\": \"\",\n                            \"help_text_translations\": {\n                                \"es\": \"\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"id\": \"604a1ade1d6cc0f7028b45a2\",\n                            \"question\": \"¿Cuál es el problema?\",\n                            \"question_translations\": {\n                                \"es\": \"¿Cuál es el problema?\",\n                                \"en\": \"\",\n                                \"ca\": \"\",\n                                \"eu\": \"\",\n                                \"fr\": \"\",\n                                \"es_MX\": \"\",\n                                \"en_AU\": \"\"\n                            },\n                            \"tags\": [\n                                {\n                                    \"name\": \"Acobendas\",\n                                    \"color\": \"#000000\",\n                                    \"id\": \"Acobendas\"\n                                },\n                                {\n                                    \"name\": \"ascensor\",\n                                    \"color\": \"#000000\",\n                                    \"id\": \"ascensor\"\n                                }\n                            ],\n                            \"archived\": false,\n                            \"possible_answers\": [\n                                {\n                                    \"value\": \"No funciona/parado\",\n                                    \"value_translations\": {\n                                        \"es\": \"No funciona/parado\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                },\n                                {\n                                    \"value\": \"Vandalizado\",\n                                    \"value_translations\": {\n                                        \"es\": \"Vandalizado\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                },\n                                {\n                                    \"value\": \"Rotura del pulsador\",\n                                    \"value_translations\": {\n                                        \"es\": \"Rotura del pulsador\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                },\n                                {\n                                    \"value\": \"Otro\",\n                                    \"value_translations\": {\n                                        \"es\": \"Otro\",\n                                        \"en\": \"\",\n                                        \"ca\": \"\",\n                                        \"eu\": \"\",\n                                        \"fr\": \"\",\n                                        \"es_MX\": \"\",\n                                        \"en_AU\": \"\"\n                                    },\n                                    \"archived\": false\n                                }\n                            ]\n                        },\n                        \"required\": false,\n                        \"default_value\": \"\"\n                    }\n                ],\n                \"id\": \"604a1ae47c89ecbc028b45b7\",\n                \"name\": \"Alc_ascensorenlaviapublica_ascensorcallegranada\",\n                \"use_cases\": []\n            },\n            \"social\": true,\n            \"evaluation\": true,\n            \"color\": \"#bfba3d\",\n            \"hideEstimatedDate\": false,\n            \"mandatory_description\": true,\n            \"mandatory_informant_config\": [\n                {\n                    \"field\": \"first_name\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"last_name\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"phone\",\n                    \"message\": \"\",\n                    \"required\": true\n                },\n                {\n                    \"field\": \"email\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"twitter_nickname\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"id_document\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"addresses\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"gender\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"secondary_phone\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"birthday\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"user_location_area\",\n                    \"message\": \"\",\n                    \"required\": false\n                },\n                {\n                    \"field\": \"address\",\n                    \"message\": \"\",\n                    \"required\": false\n                }\n            ],\n            \"max_upload_files\": 5,\n            \"max_upload_medias\": 5,\n            \"public\": true,\n            \"public_requests\": true,\n            \"public_requests_internal\": true,\n            \"allow_changing_request_privacy\": true,\n            \"service_code\": \"60\",\n            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db194ce9e815.png\",\n            \"sponsoring_info\": {\n                \"display\": false\n            },\n            \"status_node\": [],\n            \"typology\": {\n                \"hasLocation\": true,\n                \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                \"color\": \"#ebc113\",\n                \"description_legend\": \"Ej: farola fundida\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n                \"location_type\": \"geolocation\",\n                \"name\": \"Aviso\",\n                \"order\": 1,\n                \"public\": true,\n                \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n                \"visible_name\": \"Aviso\",\n                \"with_authorized_users\": true,\n                \"with_description\": true,\n                \"with_files\": true,\n                \"with_geolocation_data\": true,\n                \"with_medias\": true,\n                \"with_temporality_data\": true\n            },\n            \"with_informant\": true,\n            \"with_internal_informant\": true\n        },\n        \"service_request_id\": \"ALC44145\",\n        \"status_node\": {\n            \"status_node_type\": \"initial_node\",\n            \"name\": \"Nuevo\",\n            \"color\": \"#f1c40f\",\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"5850dd34e22c6d9f51b016ef\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"690a23ac4e4e725ed4022cf5\",\n        \"user\": {\n            \"hasPassword\": false,\n            \"nickname\": \"user_cf6b655f8bdc6b8ce17c\",\n            \"avatar\": \"https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600\",\n            \"channels\": [],\n            \"id\": \"68b064f122eb8e9dcf08aad6\",\n            \"notification_channels\": [],\n            \"last_geofences\": [],\n            \"jurisdiction_element_channels\": []\n        }\n    }\n]"
                },
                {
                  "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": "{{publicBaseUrl}}/requests_owns?app_key={{app_key}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 403,\n        \"description\": \"user was not found\"\n    }\n]"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/requests_follows?app_key=1",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests_follows"
                  ],
                  "query": [
                    {
                      "key": "app_key",
                      "value": "1",
                      "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."
                    }
                  ]
                },
                "description": "**Description**\n\nObtiene 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": "{\n    \"deleted\": false,\n    \"jurisdiction_name\": \"Alcobendas\",\n    \"service_id\": \"570b55b26aa918db008b4567\",\n    \"service_code\": \"60\",\n    \"service_name\": \"Ascensor calle Granada\",\n    \"requested_datetime\": \"2025-11-04T16:02:51+00:00\",\n    \"supporting_count\": 0,\n    \"following_count\": 1,\n    \"evaluations_count\": 0,\n    \"address\": \"P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain\",\n    \"updated_datetime\": \"2025-12-12T21:25:53+00:00\",\n    \"evaluations_avg\": -1,\n    \"reiterations_count\": 0,\n    \"complaints_count\": 0,\n    \"jurisdiction_id\": \"org.alcobendas\",\n    \"status_node_type\": \"initial_node\",\n    \"files\": [],\n    \"is_evaluable\": false,\n    \"typology\": {\n    \"hasLocation\": true,\n    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n    \"color\": \"#ebc113\",\n    \"description_legend\": \"Ej: farola fundida\",\n    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n    \"location_type\": \"geolocation\",\n    \"name\": \"Aviso\",\n    \"order\": 1,\n    \"public\": true,\n    \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n    \"visible_name\": \"Aviso\",\n    \"with_authorized_users\": true,\n    \"with_description\": true,\n    \"with_files\": true,\n    \"with_geolocation_data\": true,\n    \"with_medias\": true,\n    \"with_temporality_data\": true\n    },\n    \"current_status_assignments\": [],\n    \"public_visibility\": false,\n    \"accepted\": false,\n    \"additional_data\": [],\n    \"comments_count\": 0,\n    \"complaining\": false,\n    \"current_node_estimated_final_datetime\": \"2025-11-06T16:02:52+00:00\",\n    \"current_node_estimated_start_datetime\": \"2025-11-04T16:02:52+00:00\",\n    \"description\": \"prueba\",\n    \"estimated_final_datetime\": \"2025-11-17T16:02:52+00:00\",\n    \"estimated_start_datetime\": \"2025-11-04T16:02:52+00:00\",\n    \"evaluation\": 0,\n    \"following\": {\n    \"isFollowing\": true,\n    \"channels\": {\n        \"email\": false,\n        \"push\": false\n    }\n    },\n    \"medias\": [],\n    \"address_string\": \"P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain\",\n    \"lat\": 40.54628714504,\n    \"long\": -3.6569023132324,\n    \"priority\": {\n    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png\"\n    },\n    \"public\": true,\n    \"seen\": false,\n    \"service\": {\n    \"deleted\": false,\n    \"parent_service_name\": \"Ascensores en vía pública\",\n    \"group\": \"570b50756aa918d6008b4567\",\n    \"visible_name\": \"Ascensor calle Granada (Aviso)\",\n    \"id\": \"570b55b26aa918db008b4567\",\n    \"service_code\": \"60\",\n    \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db194ce9e815.png\"\n    },\n    \"service_request_id\": \"ALC44145\",\n    \"status_node\": {\n    \"status_node_type\": \"initial_node\",\n    \"name\": \"Nuevo\",\n    \"color\": \"#f1c40f\",\n    \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n    \"visible_name\": \"Nuevo\",\n    \"id\": \"5850dd34e22c6d9f51b016ef\",\n    \"order\": 1,\n    \"planned\": false\n    },\n    \"supporting\": false,\n    \"tags\": [],\n    \"token\": \"690a23ac4e4e725ed4022cf5\",\n    \"user\": {\n    \"hasPassword\": false,\n    \"nickname\": \"user_cf6b655f8bdc6b8ce17c\",\n    \"avatar\": \"https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600\",\n    \"id\": \"68b064f122eb8e9dcf08aad6\"\n    }\n}"
                },
                {
                  "id": "72cf3725-8da8-415a-9fe2-4f6559442aff",
                  "name": "Not Found Requests Follows",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests_follows",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 403,\n        \"description\": \"user was not found\"\n    }\n]"
                },
                {
                  "id": "454479a8-f39b-4ce5-bed5-71fe616b5025",
                  "name": "Not app_key Requests Follows",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests_follows",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"additionalData\": [\n        {\n            \"question\": \"{{objectId}}\",\n            \"value\": \"resp1\"\n        },\n        {\n            \"question\": \"{{objectId}}\",\n            \"value\": \"fgfdg\"\n        },\n        {\n            \"question\": \"{{objectId}}\",\n            \"value\": \"sdfsdf\"\n        },\n        {\n            \"question\": \"{{objectId}}\",\n            \"value\": \"1\"\n        },\n        {\n            \"question\": \"{{objectId}}\",\n            \"value\": [\n                \"vbvcbvb\"\n            ]\n        }\n    ],\n    \"address_string\": \"Calle Padilla, 17 , Salamanca, Castellana\",\n    \"description\": \"sdgsfsdfsdfsd\",\n    \"device_id\": \"{{objectId}}\",\n    \"device_type\": \"{{objectId}}\",\n    \"email\": \"{{testEmail}}\",\n    \"email_notification\": true,\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_element\": \"{{jurisdictionId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"last_name\": \"Perez\",\n    \"lat\": 40.54720023441049,\n    \"long\": -3.{{device_id}},\n    \"phone\": \"5551234\",\n    \"public\": true,\n    \"push_notification\": true,\n    \"service_id\": \"{{serviceId}}\",\n    \"sms_notification\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/requests?jurisdiction_id={{jurisdiction_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "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**\n\nEste 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.\n\n**Body**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| additionalData | Array | \\[required\\] Lista de objetos que contienen preguntas y respuestas asociadas. |\n| address_string | String | \\[required\\] Dirección física en formato de texto. |\n| description | String | \\[required\\] Descripción del servicio o entidad asociada. |\n| device_id | String | \\[required\\] Identificador único del dispositivo que realiza la solicitud. |\n| device_type | String | \\[required\\] Tipo de dispositivo desde el cual se realiza la solicitud. |\n| email | String | \\[required\\] Dirección de correo electrónico del usuario. |\n| email_notification | Bool | \\[required\\] Indica si el usuario ha habilitado las notificaciones por correo electrónico. |\n| first_name | String | \\[required\\] Nombre del usuario. |\n| jurisdiction_element | String | \\[required\\] Identificador del elemento dentro de la jurisdicción. |\n| jurisdiction_id | String | \\[required\\] Identificador de la jurisdicción a la que pertenece. |\n| last_name | String | \\[required\\] Apellido del usuario. |\n| lat | Float | \\[required\\] Coordenada de latitud geográfica. |\n| long | Float | \\[required\\] Coordenada de longitud geográfica. |\n| phone | String | \\[required\\] Número de teléfono del usuario. |\n| public | Bool | \\[required\\] Indica si la información es pública o privada. |\n| push_notification | Bool | \\[required\\] Indica si el usuario ha habilitado las notificaciones push. |\n| service_id | String | \\[required\\] Identificador único del servicio asociado. |\n| 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": "{\n    \"additionalData\": [\n        {\n            \"question\": \"64706cd7a18ec0136f01dea5\",\n            \"value\": \"resp1\"\n        },\n        {\n            \"question\": \"5d30696fc5f2f3ac018b4568\",\n            \"value\": \"fgfdg\"\n        },\n        {\n            \"question\": \"5d3069ba9e0d8faa018b4571\",\n            \"value\": \"sdfsdf\"\n        },\n        {\n            \"question\": \"5d3069dac5f2f3aa018b4567\",\n            \"value\": \"1\"\n        },\n        {\n            \"question\": \"6674818e3e995542e9017df3\",\n            \"value\": [\n                \"vbvcbvb\"\n            ]\n        }\n    ],\n    \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n    \"description\": \"sdgsfsdfsdfsd\",\n    \"device_id\": \"5850de88e22c6d9f51b17722\",\n    \"device_type\": \"5850de88e22c6d9f51b17722\",\n    \"email\": \"{{testEmail}}\",\n    \"email_notification\": true,\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_element\": \"5c9b55579650e67d42985e80\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"last_name\": \"Perez\",\n    \"lat\": 40.54720023441049,\n    \"long\": -3.{{device_id}},\n    \"phone\": \"5551234\",\n    \"public\": true,\n    \"push_notification\": true,\n    \"service_id\": \"5620ec856aa918b1008b4567\",\n    \"sms_notification\": true\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n        \"service_request_id\": \"ALC43688\",\n        \"status_node\": {\n            \"name\": \"Nuevo\",\n            \"color\": \"#f1c40f\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"5850dd1ee22c6d9f51b0157b\"\n        },\n        \"token\": \"67d423553596bff44f0a79c5\"\n    }"
                },
                {
                  "id": "ecaa2906-e49b-49c9-8be9-892c301df7b9",
                  "name": "Create Request with service name",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"additionalData\": [\n        {\n            \"question\": \"64706cd7a18ec0136f01dea5\",\n            \"value\": \"resp1\"\n        },\n        {\n            \"question\": \"5d30696fc5f2f3ac018b4568\",\n            \"value\": \"fgfdg\"\n        },\n        {\n            \"question\": \"5d3069ba9e0d8faa018b4571\",\n            \"value\": \"sdfsdf\"\n        },\n        {\n            \"question\": \"5d3069dac5f2f3aa018b4567\",\n            \"value\": \"1\"\n        },\n        {\n            \"question\": \"6674818e3e995542e9017df3\",\n            \"value\": [\n                \"vbvcbvb\"\n            ]\n        }\n    ],\n    \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n    \"description\": \"sdgsfsdfsdfsd\",\n    \"device_id\": \"5850de88e22c6d9f51b17722\",\n    \"device_type\": \"5850de88e22c6d9f51b17722\",\n    \"email\": \"{{testEmail}}\",\n    \"email_notification\": true,\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_element\": \"5c9b55579650e67d42985e80\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"last_name\": \"Perez\",\n    \"lat\": 40.54720023441049,\n    \"long\": -3.{{device_id}},\n    \"phone\": \"5551234\",\n    \"public\": true,\n    \"push_notification\": true,\n    \"service_id\": \"Armarios de alumbrado en vía pública\",\n    \"sms_notification\": true\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests"
                      ],
                      "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": "{\n        \"service_request_id\": \"ALC43688\",\n        \"status_node\": {\n            \"name\": \"Nuevo\",\n            \"color\": \"#f1c40f\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"5850dd1ee22c6d9f51b0157b\"\n        },\n        \"token\": \"67d423553596bff44f0a79c5\"\n    }"
                },
                {
                  "id": "1fd16b4a-947a-4c15-b4be-83e5207e5376",
                  "name": "Create Request Annonymous User",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"additionalData\": [\n        {\n            \"question\": \"64706cd7a18ec0136f01dea5\",\n            \"value\": \"resp1\"\n        },\n        {\n            \"question\": \"5d30696fc5f2f3ac018b4568\",\n            \"value\": \"fgfdg\"\n        },\n        {\n            \"question\": \"5d3069ba9e0d8faa018b4571\",\n            \"value\": \"sdfsdf\"\n        },\n        {\n            \"question\": \"5d3069dac5f2f3aa018b4567\",\n            \"value\": \"1\"\n        },\n        {\n            \"question\": \"6674818e3e995542e9017df3\",\n            \"value\": [\n                \"vbvcbvb\"\n            ]\n        }\n    ],\n    \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n    \"description\": \"sdgsfsdfsdfsd\",\n    \"device_id\": \"5850de88e22c6d9f51b17722\",\n    \"device_type\": \"5850de88e22c6d9f51b17722\",\n    \"email\": \"{{testEmail}}\",\n    \"email_notification\": true,\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_element\": \"5c9b55579650e67d42985e80\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"last_name\": \"Perez\",\n    \"lat\": 40.54720023441049,\n    \"long\": -3.{{device_id}},\n    \"phone\": \"5551234\",\n    \"public\": true,\n    \"push_notification\": true,\n    \"service_id\": \"5620ec856aa918b1008b4567\",\n    \"sms_notification\": true\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n        \"code\": 403,\n        \"description\": \"Jurisdiction does NOT allow Anonymous Users to create a Request\"\n    }"
                },
                {
                  "id": "66faf7d6-7fa2-4bf0-9b89-c26ddfe662cf",
                  "name": "Create Request Failed",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"additionalData\": [\n        {\n            \"question\": \"64706cd7a18ec0136f01dea5\",\n            \"value\": \"resp1\"\n        },\n        {\n            \"question\": \"5d30696fc5f2f3ac018b4568\",\n            \"value\": \"fgfdg\"\n        },\n        {\n            \"question\": \"5d3069ba9e0d8faa018b4571\",\n            \"value\": \"sdfsdf\"\n        },\n        {\n            \"question\": \"5d3069dac5f2f3aa018b4567\",\n            \"value\": \"1\"\n        },\n        {\n            \"question\": \"6674818e3e995542e9017df3\",\n            \"value\": [\n                \"vbvcbvb\"\n            ]\n        }\n    ],\n    \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n    \"description\": \"sdgsfsdfsdfsd\",\n    \"device_id\": \"5850de88e22c6d9f51b17722\",\n    \"device_type\": \"5850de88e22c6d9f51b17722\",\n    \"email\": \"{{testEmail}}\",\n    \"email_notification\": true,\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_element\": \"5c9b55579650e67d42985e80\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"last_name\": \"Perez\",\n    \"lat\": 40.54720023441049,\n    \"long\": -3.{{device_id}},\n    \"phone\": \"5551234\",\n    \"public\": true,\n    \"push_notification\": true,\n    \"service_id\": \"5620ec856aa918b1008b4567\",\n    \"sms_notification\": true\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n        \"code\": 400,\n        \"description\": \"\"\n    }"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/requests_medias?jurisdiction_id={{jurisdiction_id}}&token={{token}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests_medias"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [required]. (org.alcobendas) Identificador de jurisdicción que permite filtrar la búsqueda del aviso a su jurisdicción asociada"
                    },
                    {
                      "key": "token",
                      "value": "{{token}}",
                      "description": "String. [required]. (6564b1d0e00dc8a92a0d3597) Identificador del aviso o ticket al cual se le va a ajuntar el archivo multimedia."
                    }
                  ]
                },
                "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": "{{publicBaseUrl}}/requests_medias?token={{token}}&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests_medias"
                      ],
                      "query": [
                        {
                          "key": "token",
                          "value": "{{token}}",
                          "description": "[required]. String. Identificador del aviso o ticket al cual se le va a ajuntar el archivo multimedia."
                        },
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n    \"type\": \"1\",\n    \"media_url\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/67d0b73dcaeda232574653.png\",\n    \"created_datetime\": \"2025-03-11T22:20:45+00:00\",\n    \"media_code\": \"67d0b73fc78ebbfae40bb1b2\"\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/requests_medias?token={{token}}&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests_medias"
                      ],
                      "query": [
                        {
                          "key": "token",
                          "value": "{{token}}",
                          "description": "[required]. String. Identificador del aviso o ticket al cual se le va a ajuntar el archivo multimedia."
                        },
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n    \"code\": 403,\n    \"description\": \"Media format js not allowed\"\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/requests_medias?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests_medias"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n    \"code\": 400,\n    \"description\": \"token was not provided\"\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/requests_medias?token={{token}}&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests_medias"
                      ],
                      "query": [
                        {
                          "key": "token",
                          "value": "{{token}}",
                          "description": "[required]. String. Identificador del aviso o ticket al cual se le va a ajuntar el archivo multimedia."
                        },
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n    \"code\": 404,\n    \"description\": \"token was not found\"\n}"
                }
              ]
            },
            {
              "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": "{\n    \"jurisdiction_element_ids\": [\"{{jurisdictionId}}\"],\n    \"service_ids\": [\"Arquetas de alumbrado\", \"Cableado aéreo de alumbrado público\"],\n    \"status\": [\"Nuevo\"],\n    \"typologies\": [\"Reporte\", \"Aviso\"]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/requests-list",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\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. |\n| 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. |\n| 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. |\n| 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": "{\n    \"service_ids\": [\"Arquetas de alumbrado\", \"Cableado aéreo de alumbrado público\"]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests-list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"service_id\": \"5620ed7e6aa918b1008b456e\",\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"service_name\": \"Cableado aéreo de alumbrado público\",\n        \"requested_datetime\": \"2025-03-05T12:41:48+00:00\",\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"es.madrid\",\n        \"status_node_type\": \"initial_node\",\n        \"typology\": {\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": false,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"public_visibility\": true,\n        \"address\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n        \"comments_count\": 2,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-03-08T12:40:22+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-03-05T12:40:22+00:00\",\n        \"description\": \"Prueba\",\n        \"estimated_final_datetime\": \"2025-03-18T12:40:22+00:00\",\n        \"estimated_start_datetime\": \"2025-03-05T12:40:22+00:00\",\n        \"evaluation\": 0,\n        \"jurisdiction_element\": {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"5d9ee7bcde2efef4018b4569\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"location_additional_data\": {},\n            \"name\": \"es.madrid\",\n            \"type\": \"city\",\n            \"visible_name\": \"madrid\",\n            \"is_main\": false\n        },\n        \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n        \"lat\": 40.518565156005,\n        \"long\": -3.6294673401779,\n        \"service_request_id\": \"ALC43677\",\n        \"status_node\": {\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"5850dd1ee22c6d9f51b0157b\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"67c8468d2c6336655f0044f7\",\n        \"worknotes_count\": 1\n    }"
                },
                {
                  "id": "686205c9-ae59-4141-be2b-3648a0d4a5de",
                  "name": "Search Request By Status Name",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"status\": [\"Nuevo\"]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests-list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"service_id\": \"5620ed7e6aa918b1008b456e\",\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"service_name\": \"Cableado aéreo de alumbrado público\",\n        \"requested_datetime\": \"2025-03-05T12:41:48+00:00\",\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"es.madrid\",\n        \"status_node_type\": \"initial_node\",\n        \"typology\": {\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": false,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"public_visibility\": true,\n        \"address\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n        \"comments_count\": 2,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-03-08T12:40:22+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-03-05T12:40:22+00:00\",\n        \"description\": \"Prueba\",\n        \"estimated_final_datetime\": \"2025-03-18T12:40:22+00:00\",\n        \"estimated_start_datetime\": \"2025-03-05T12:40:22+00:00\",\n        \"evaluation\": 0,\n        \"jurisdiction_element\": {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"5d9ee7bcde2efef4018b4569\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"location_additional_data\": {},\n            \"name\": \"es.madrid\",\n            \"type\": \"city\",\n            \"visible_name\": \"madrid\",\n            \"is_main\": false\n        },\n        \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n        \"lat\": 40.518565156005,\n        \"long\": -3.6294673401779,\n        \"service_request_id\": \"ALC43677\",\n        \"status_node\": {\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"5850dd1ee22c6d9f51b0157b\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"67c8468d2c6336655f0044f7\",\n        \"worknotes_count\": 1\n    }"
                },
                {
                  "id": "64ec70b9-887f-4211-8392-3d1ab12ff3e1",
                  "name": "Search Request By Jurisdiction Element Name",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"jurisdiction_element_ids\": [\"{{jurisdictionId}}\"]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests-list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"service_id\": \"5620ed7e6aa918b1008b456e\",\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"service_name\": \"Cableado aéreo de alumbrado público\",\n        \"requested_datetime\": \"2025-03-05T12:41:48+00:00\",\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"es.madrid\",\n        \"status_node_type\": \"initial_node\",\n        \"typology\": {\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": false,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"public_visibility\": true,\n        \"address\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n        \"comments_count\": 2,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-03-08T12:40:22+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-03-05T12:40:22+00:00\",\n        \"description\": \"Prueba\",\n        \"estimated_final_datetime\": \"2025-03-18T12:40:22+00:00\",\n        \"estimated_start_datetime\": \"2025-03-05T12:40:22+00:00\",\n        \"evaluation\": 0,\n        \"jurisdiction_element\": {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"5d9ee7bcde2efef4018b4569\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"location_additional_data\": {},\n            \"name\": \"es.madrid\",\n            \"type\": \"city\",\n            \"visible_name\": \"madrid\",\n            \"is_main\": false\n        },\n        \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n        \"lat\": 40.518565156005,\n        \"long\": -3.6294673401779,\n        \"service_request_id\": \"ALC43677\",\n        \"status_node\": {\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"5850dd1ee22c6d9f51b0157b\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"67c8468d2c6336655f0044f7\",\n        \"worknotes_count\": 1\n    }"
                },
                {
                  "id": "b34c8574-669c-4bf9-9192-cc6846945eb6",
                  "name": "Search Request By Typology Name",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"typologies\": [\"Reporte\", \"Aviso\"]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests-list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"service_id\": \"5620ed7e6aa918b1008b456e\",\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\",\n        \"service_name\": \"Cableado aéreo de alumbrado público\",\n        \"requested_datetime\": \"2025-03-05T12:41:48+00:00\",\n        \"reiterations_count\": 0,\n        \"complaints_count\": 0,\n        \"jurisdiction_id\": \"es.madrid\",\n        \"status_node_type\": \"initial_node\",\n        \"typology\": {\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": false,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"public_visibility\": true,\n        \"address\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n        \"comments_count\": 2,\n        \"complaining\": false,\n        \"current_node_estimated_final_datetime\": \"2025-03-08T12:40:22+00:00\",\n        \"current_node_estimated_start_datetime\": \"2025-03-05T12:40:22+00:00\",\n        \"description\": \"Prueba\",\n        \"estimated_final_datetime\": \"2025-03-18T12:40:22+00:00\",\n        \"estimated_start_datetime\": \"2025-03-05T12:40:22+00:00\",\n        \"evaluation\": 0,\n        \"jurisdiction_element\": {\n            \"map_layers\": [\n                {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"5d9ee7bcde2efef4018b4569\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"internal_name\": \"zones_prod:Alc_Distritos\",\n                    \"name\": \"Distritos\",\n                    \"description\": \"Distritos\",\n                    \"preset\": false,\n                    \"public\": true,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"ADMINISTRATIVE\"\n                }\n            ],\n            \"extent\": [\n                -3.70038574,\n                40.50117283,\n                -3.55027416,\n                40.58886137\n            ],\n            \"guided_module\": false,\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\",\n            \"id\": \"5c9b55579650e67d42985e80\",\n            \"location_additional_data\": {},\n            \"name\": \"es.madrid\",\n            \"type\": \"city\",\n            \"visible_name\": \"madrid\",\n            \"is_main\": false\n        },\n        \"address_string\": \"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\",\n        \"lat\": 40.518565156005,\n        \"long\": -3.6294673401779,\n        \"service_request_id\": \"ALC43677\",\n        \"status_node\": {\n            \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"5850dd1ee22c6d9f51b0157b\",\n            \"order\": 1,\n            \"planned\": false\n        },\n        \"supporting\": false,\n        \"tags\": [],\n        \"token\": \"67c8468d2c6336655f0044f7\",\n        \"worknotes_count\": 1\n    }"
                },
                {
                  "id": "51cfa1e5-c2dd-4e14-9f0d-91ce6f57698e",
                  "name": "Error Lat or Long Was Not Found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"jurisdiction_element_ids\": [\"{{jurisdictionId}}\"],\n    \"service_ids\": [\"Arquetas de alumbrado\", \"Cableado aéreo de alumbrado público\"],\n    \"status\": [\"Nuevo\"],\n    \"typologies\": [\"Reporte\", \"Aviso\"]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests-list",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"message\": \"lat or long was not found\"\n}"
                }
              ]
            },
            {
              "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": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"service_request_id\": \"ALC12345\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/requests_supports",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_id | String | \\[required\\]. Identificador de la jurisdicción a la que pertenece. |\n| 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": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"service_request_id\": \"ALC12345\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/public-api/requests_supports",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests_supports"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"deleted\": false,\n  \"jurisdiction_name\": \"Madrid\",\n  \"service_id\": \"69332238e19f01098f0d0668\",\n  \"service_code\": \"1\",\n  \"service_name\": \"Limpieza y Residuos\",\n  \"requested_datetime\": \"2025-11-13T18:19:58+00:00\",\n  \"supporting_count\": 1,\n  \"following_count\": 0,\n  \"evaluations_count\": 0,\n  \"address\": \"Dirección de prueba72\",\n  \"updated_datetime\": \"2025-12-05T18:20:22+00:00\",\n  \"evaluations_avg\": -1,\n  \"reiterations_count\": 0,\n  \"complaints_count\": 0,\n  \"jurisdiction_id\": \"es.madrid\",\n  \"status_node_type\": \"initial_node\",\n  \"files\": [],\n  \"is_evaluable\": true,\n  \"typology\": {\n    \"hasLocation\": true,\n    \"id\": \"69332230e19f01098f0d0631\",\n    \"color\": \"#337ab7\",\n    \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png\",\n    \"location_type\": \"geolocation\",\n    \"name\": \"avisos\",\n    \"order\": 0,\n    \"public\": true,\n    \"visible_name\": \"Avisos\",\n    \"with_description\": true,\n    \"with_files\": true,\n    \"with_geolocation_data\": false,\n    \"with_medias\": true,\n    \"with_temporality_data\": false\n  },\n  \"current_status_assignments\": [],\n  \"public_visibility\": false,\n  \"accepted\": false,\n  \"additional_data\": [],\n  \"comments_count\": 0,\n  \"complaining\": false,\n  \"current_node_estimated_final_datetime\": \"2025-12-05T19:19:58+00:00\",\n  \"current_node_estimated_start_datetime\": \"2025-12-05T18:19:58+00:00\",\n  \"description\": \"0 - 0 - Madrid - Limpieza y Residuos\",\n  \"estimated_final_datetime\": \"2025-12-05T19:19:58+00:00\",\n  \"estimated_start_datetime\": \"2025-12-05T18:19:58+00:00\",\n  \"evaluation\": 0,\n  \"following\": {\n    \"isFollowing\": false\n  },\n  \"medias\": [\n    {\n      \"created_at\": \"2025-12-05T18:19:58+00:00\",\n      \"id\": \"6933224ee19f01098f0d0777\",\n      \"public\": true,\n      \"type\": \"image/jpeg\",\n      \"media_url\": \"https://mtc.vdeveloper.lan/uploads/local/open010/6933224e4c4e6621672460.jpg\",\n      \"created_datetime\": \"2025-12-05T18:19:58+00:00\",\n      \"deleted\": false,\n      \"media_code\": \"6933224ee19f01098f0d0777\",\n      \"check_distance\": \"no_data\",\n      \"check_time\": \"no_data\",\n      \"media_metadata\": {\n        \"location_additional_data\": [],\n        \"created\": \"2025-12-05T18:20:01+00:00\"\n      },\n      \"tags\": []\n    }\n  ],\n  \"address_string\": \"Dirección de prueba72\",\n  \"lat\": 40.38,\n  \"long\": -3.631,\n  \"location_additional_data\": [],\n  \"priority\": {\n    \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/priority_icons/5bab796235896.png\"\n  },\n  \"public\": true,\n  \"seen\": false,\n  \"service\": {\n    \"deleted\": false,\n    \"parent_service_name\": \"\",\n    \"group\": \"\",\n    \"visible_name\": \"Limpieza y Residuos (Avisos)\",\n    \"mandatory_medias\": false,\n    \"mandatory_files\": false,\n    \"id\": \"69332238e19f01098f0d0668\",\n    \"social\": true,\n    \"evaluation\": true,\n    \"color\": \"#0B99A6\",\n    \"hideEstimatedDate\": false,\n    \"mandatory_description\": true,\n    \"mandatory_informant_config\": [\n      {\n        \"field\": \"first_name\",\n        \"required\": false\n      },\n      {\n        \"field\": \"last_name\",\n        \"required\": false\n      },\n      {\n        \"field\": \"phone\",\n        \"required\": false\n      },\n      {\n        \"field\": \"secondary_phone\",\n        \"required\": false\n      },\n      {\n        \"field\": \"email\",\n        \"required\": false\n      },\n      {\n        \"field\": \"twitter_nickname\",\n        \"required\": false\n      },\n      {\n        \"field\": \"id_document\",\n        \"required\": false\n      },\n      {\n        \"field\": \"id_documents\",\n        \"required\": false\n      },\n      {\n        \"field\": \"addresses\",\n        \"required\": false\n      },\n      {\n        \"field\": \"address\",\n        \"required\": false\n      },\n      {\n        \"field\": \"gender\",\n        \"required\": false\n      },\n      {\n        \"field\": \"birthday\",\n        \"required\": false\n      },\n      {\n        \"field\": \"user_location_area\",\n        \"required\": false\n      }\n    ],\n    \"max_upload_files\": 3,\n    \"max_upload_medias\": 3,\n    \"public\": true,\n    \"public_requests\": true,\n    \"public_requests_internal\": true,\n    \"allow_changing_request_privacy\": true,\n    \"service_code\": \"1\",\n    \"service_icon\": \"https://mtc.vdeveloper.lan/uploads/local/service_icons/5bab6a4c457be.png\",\n    \"status_node\": [],\n    \"typology\": {\n      \"hasLocation\": true,\n      \"id\": \"69332230e19f01098f0d0631\",\n      \"color\": \"#337ab7\",\n      \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png\",\n      \"location_type\": \"geolocation\",\n      \"name\": \"avisos\",\n      \"order\": 0,\n      \"public\": true,\n      \"visible_name\": \"Avisos\",\n      \"with_description\": true,\n      \"with_files\": true,\n      \"with_geolocation_data\": false,\n      \"with_medias\": true,\n      \"with_temporality_data\": false\n    },\n    \"with_informant\": true\n  },\n  \"service_request_id\": \"MAD1001\",\n  \"status_node\": {\n    \"status_node_type\": \"initial_node\",\n    \"name\": \"nuevo\",\n    \"color\": \"#7da038\",\n    \"typology_node_id\": \"69332230e19f01098f0d0632\",\n    \"visible_name\": \"Nuevo\",\n    \"id\": \"69332238e19f01098f0d0661\",\n    \"order\": 1,\n    \"planned\": false\n  },\n  \"supporting\": false,\n  \"tags\": [],\n  \"token\": \"6933224ee19f01098f0d0778\",\n  \"user\": {\n    \"hasPassword\": true,\n    \"nickname\": \"hely.suarez\",\n    \"channels\": [\n      {\n        \"external\": true,\n        \"id\": \"6933222fe19f01098f0d0620\",\n        \"name\": \"PruebaNotes\"\n      }\n    ],\n    \"id\": \"6933222fe19f01098f0d062b\",\n    \"notification_channels\": [\n      {\n        \"external\": true,\n        \"id\": \"6933222fe19f01098f0d0620\",\n        \"name\": \"PruebaNotes\"\n      }\n    ],\n    \"last_geofences\": [],\n    \"jurisdiction_element_channels\": []\n  },\n  \"media_url\": \"https://mtc.vdeveloper.lan/uploads/local/open010/6933224e4c4e6621672460.jpg\"\n}"
                },
                {
                  "id": "70cb0bec-dffd-4564-81ac-c83f5dd3b530",
                  "name": "Support Request without service_request_id",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/public-api/requests_supports",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"code\": 400,\n    \"description\": \"service_request_id was not provided\"\n  }\n]"
                },
                {
                  "id": "005a3506-4642-4ac9-b9df-23987c4392a0",
                  "name": "Support Request already",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"service_request_id\": \"ALC12345\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests_supports",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"code\": 400,\n    \"description\": \"Already supported request\"\n  }\n]"
                }
              ]
            },
            {
              "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": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"service_request_id\": \"ALC12345\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/requests_complaints",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests_complaints"
                  ]
                },
                "description": "Este endpoint permite instaurar quejas por parte del usuario hacía un aviso (ticket) específico.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_id | String | \\[required\\]. Identificador de la jurisdicción a la que pertenece. |\n| 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": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"service_request_id\": \"ALC12345\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/public-api/requests_complaints",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests_complaints"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"deleted\": false,\n  \"jurisdiction_name\": \"Madrid\",\n  \"service_id\": \"69332a4331a53edef30755e8\",\n  \"service_code\": \"1\",\n  \"service_name\": \"Limpieza y Residuos\",\n  \"created_date\": \"27/11/2025\",\n  \"requested_datetime\": \"2025-11-27T18:54:19+00:00\",\n  \"created_time\": \"19:54\",\n  \"supporting_count\": 0,\n  \"following_count\": 0,\n  \"repeated\": false,\n  \"evaluations_count\": 0,\n  \"address\": \"Dirección de prueba48\",\n  \"updated_datetime\": \"2025-12-05T18:54:43+00:00\",\n  \"evaluations_avg\": -1,\n  \"reiterations_count\": 0,\n  \"complaints_count\": 0,\n  \"jurisdiction_id\": \"es.madrid\",\n  \"status_node_type\": \"initial_node\",\n  \"typology\": {\n    \"id\": \"69332a3a31a53edef30755b1\",\n    \"color\": \"#337ab7\",\n    \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png\",\n    \"name\": \"avisos\",\n    \"visible_name\": \"Avisos\"\n  },\n  \"accepted\": false,\n  \"comments_count\": 0,\n  \"complaining\": false,\n  \"current_node_estimated_final_datetime\": \"2025-12-05T19:54:19+00:00\",\n  \"current_node_estimated_start_datetime\": \"2025-12-05T18:54:19+00:00\",\n  \"description\": \"0 - 0 - Madrid - Limpieza y Residuos\",\n  \"estimated_final_datetime\": \"2025-12-05T19:54:19+00:00\",\n  \"estimated_start_datetime\": \"2025-12-05T18:54:19+00:00\",\n  \"evaluation\": 0,\n  \"following\": false,\n  \"address_string\": \"Dirección de prueba48\",\n  \"lat\": 40.371,\n  \"long\": -3.643,\n  \"priority\": {\n    \"icon\": \"https://mtc.vdeveloper.lan/uploads/local/priority_icons/5bab796235896.png\"\n  },\n  \"public\": true,\n  \"seen\": false,\n  \"service_request_id\": \"MAD1001\",\n  \"status_node\": {\n    \"name\": \"nuevo\",\n    \"color\": \"#7da038\",\n    \"typology_node_id\": \"69332a3a31a53edef30755b2\",\n    \"visible_name\": \"Nuevo\",\n    \"id\": \"69332a4331a53edef30755e1\",\n    \"manual_actions\": [\n      \"assign\",\n      \"reassign\",\n      \"auto_assign\",\n      \"comment\",\n      \"change_status\",\n      \"mark_as_duplicated\",\n      \"reiterate\",\n      \"complaint\",\n      \"generate_work_order\",\n      \"edit\",\n      \"pause_resume\",\n      \"evaluate\"\n    ],\n    \"medias_config\": {\n      \"arrival\": {\n        \"comment\": {\n          \"image\": false\n        },\n        \"note_internal\": {\n          \"image\": false\n        }\n      },\n      \"exit\": {\n        \"comment\": {\n          \"image\": false\n        },\n        \"note_internal\": {\n          \"image\": false\n        }\n      }\n    },\n    \"order\": 1,\n    \"planned\": false,\n    \"status_data_config\": {\n      \"answer\": false,\n      \"cancellation_reason\": false\n    },\n    \"status_options_config\": {},\n    \"worklog_configuration\": {}\n  },\n  \"supporting\": false,\n  \"token\": \"69332a5b31a53edef30756f8\",\n  \"user\": {\n    \"nickname\": \"hely.suarez\",\n    \"id\": \"69332a3a31a53edef30755ab\"\n  },\n  \"media_url\": \"https://mtc.vdeveloper.lan/uploads/local/open010/69332a5b1b13b565139824.jpg\"\n}"
                },
                {
                  "id": "8e6ebb35-c4a3-4570-ac82-2bf30e38ca3e",
                  "name": "Complaint Request without service_request_id",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"service_request_id\": \"ALC12345\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests_complaints",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"code\": 400,\n    \"description\": \"service_request_id was not provided\"\n  }\n]"
                },
                {
                  "id": "623ce224-655b-4816-b750-135190b83c12",
                  "name": "Complaint Request with existent complaint",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"service_request_id\": \"ALC12345\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests_complaints",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n  {\n    \"code\": 400,\n    \"description\": \"Already complainted request\"\n  }\n]"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/requests_follows?jurisdiction_id={{jurisdiction_id}}&service_request_id=ALC44145&email_notification=true&push_notification=true&sms_notification=true",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests_follows"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "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": "Boolean. [optional]. Activar notificaciones por email (default: false)",
                      "type": "text"
                    },
                    {
                      "key": "push_notification",
                      "value": "true",
                      "description": "Boolean. [optional]. Activar notificaciones push (default: false)",
                      "type": "text"
                    },
                    {
                      "key": "sms_notification",
                      "value": "true",
                      "description": "Boolean. [optional]. Activar notificaciones SMS (default: false)",
                      "type": "text"
                    }
                  ]
                },
                "description": "**Description**\n\nRegistra 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": "{{publicBaseUrl}}/requests_follows?jurisdiction_id={{jurisdiction_id}}&service_request_id=ALC44145",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests_follows"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n    \"deleted\": false,\n    \"jurisdiction_name\": \"Alcobendas\",\n    \"service_id\": \"570b55b26aa918db008b4567\",\n    \"service_code\": \"60\",\n    \"service_name\": \"Ascensor calle Granada\",\n    \"requested_datetime\": \"2025-11-04T16:02:51+00:00\",\n    \"supporting_count\": 0,\n    \"following_count\": 1,\n    \"evaluations_count\": 0,\n    \"address\": \"P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain\",\n    \"updated_datetime\": \"2025-12-12T21:46:23+00:00\",\n    \"evaluations_avg\": -1,\n    \"reiterations_count\": 0,\n    \"complaints_count\": 0,\n    \"jurisdiction_id\": \"org.alcobendas\",\n    \"status_node_type\": \"initial_node\",\n    \"files\": [],\n    \"is_evaluable\": false,\n    \"typology\": {\n        \"hasLocation\": true,\n        \"id\": \"5850dca2e22c6d9f51b00c0f\",\n        \"color\": \"#ebc113\",\n        \"description_legend\": \"Ej: farola fundida\",\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n        \"location_type\": \"geolocation\",\n        \"name\": \"Aviso\",\n        \"order\": 1,\n        \"public\": true,\n        \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n        \"visible_name\": \"Aviso\",\n        \"with_authorized_users\": true,\n        \"with_description\": true,\n        \"with_files\": true,\n        \"with_geolocation_data\": true,\n        \"with_medias\": true,\n        \"with_temporality_data\": true\n    },\n    \"current_status_assignments\": [],\n    \"public_visibility\": false,\n    \"accepted\": false,\n    \"additional_data\": [],\n    \"comments_count\": 0,\n    \"complaining\": false,\n    \"current_node_estimated_final_datetime\": \"2025-11-06T16:02:52+00:00\",\n    \"current_node_estimated_start_datetime\": \"2025-11-04T16:02:52+00:00\",\n    \"description\": \"prueba\",\n    \"estimated_final_datetime\": \"2025-11-17T16:02:52+00:00\",\n    \"estimated_start_datetime\": \"2025-11-04T16:02:52+00:00\",\n    \"evaluation\": 0,\n    \"following\": {\n        \"isFollowing\": true,\n        \"channels\": {\n            \"email\": false,\n            \"push\": false\n        }\n    },\n    \"medias\": [],\n    \"address_string\": \"P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain\",\n    \"lat\": 40.54628714504,\n    \"long\": -3.6569023132324,\n    \"location_additional_data\": [\n        {\n            \"type\": \"text\",\n            \"value\": \"Norte\",\n            \"question\": {\n                \"type\": \"text\",\n                \"active\": true,\n                \"code\": \"distrito_T\",\n                \"help_text\": \"\",\n                \"help_text_translations\": {\n                    \"es\": \"\",\n                    \"en\": \"\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"id\": \"5de929ca0007544c098b4578\",\n                \"question\": \"Distrito\",\n                \"question_translations\": {\n                    \"es\": \"Distrito\",\n                    \"en\": \"oij\",\n                    \"ca\": \"\",\n                    \"eu\": \"\",\n                    \"fr\": \"\",\n                    \"es_MX\": \"\",\n                    \"en_AU\": \"\"\n                },\n                \"tags\": [\n                    {\n                        \"name\": \"distrito\",\n                        \"color\": \"#000000\",\n                        \"id\": \"distrito\"\n                    },\n                    {\n                        \"name\": \"localización\",\n                        \"color\": \"#000000\",\n                        \"id\": \"localización\"\n                    }\n                ],\n                \"archived\": false\n            }\n        }\n    ],\n    \"priority\": {\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png\"\n    },\n    \"public\": true,\n    \"seen\": false,\n    \"service\": {\n        \"deleted\": false,\n        \"parent_service_name\": \"Ascensores en vía pública\",\n        \"group\": \"570b50756aa918d6008b4567\",\n        \"visible_name\": \"Ascensor calle Granada (Aviso)\",\n        \"mandatory_medias\": false,\n        \"mandatory_files\": false,\n        \"id\": \"570b55b26aa918db008b4567\",\n        \"additionalData\": {\n            \"requiredVariables\": [],\n            \"configurable_questions\": [\n                {\n                    \"editable\": true,\n                    \"hidden_in_detail\": false,\n                    \"hidden_in_form\": false,\n                    \"hidden_in_open010_detail\": false,\n                    \"hidden_in_open010_form\": false,\n                    \"show_collapsed\": false,\n                    \"default_collapsed\": false,\n                    \"question\": {\n                        \"type\": \"singleValueList\",\n                        \"active\": true,\n                        \"code\": \"Alc_ascensorcallegranada_cualeselproblema_ls\",\n                        \"help_text\": \"\",\n                        \"help_text_translations\": {\n                            \"es\": \"\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"id\": \"604a1ade1d6cc0f7028b45a2\",\n                        \"question\": \"¿Cuál es el problema?\",\n                        \"question_translations\": {\n                            \"es\": \"¿Cuál es el problema?\",\n                            \"en\": \"\",\n                            \"ca\": \"\",\n                            \"eu\": \"\",\n                            \"fr\": \"\",\n                            \"es_MX\": \"\",\n                            \"en_AU\": \"\"\n                        },\n                        \"tags\": [\n                            {\n                                \"name\": \"Acobendas\",\n                                \"color\": \"#000000\",\n                                \"id\": \"Acobendas\"\n                            },\n                            {\n                                \"name\": \"ascensor\",\n                                \"color\": \"#000000\",\n                                \"id\": \"ascensor\"\n                            }\n                        ],\n                        \"archived\": false,\n                        \"possible_answers\": [\n                            {\n                                \"value\": \"No funciona/parado\",\n                                \"value_translations\": {\n                                    \"es\": \"No funciona/parado\",\n                                    \"en\": \"\",\n                                    \"ca\": \"\",\n                                    \"eu\": \"\",\n                                    \"fr\": \"\",\n                                    \"es_MX\": \"\",\n                                    \"en_AU\": \"\"\n                                },\n                                \"archived\": false\n                            },\n                            {\n                                \"value\": \"Vandalizado\",\n                                \"value_translations\": {\n                                    \"es\": \"Vandalizado\",\n                                    \"en\": \"\",\n                                    \"ca\": \"\",\n                                    \"eu\": \"\",\n                                    \"fr\": \"\",\n                                    \"es_MX\": \"\",\n                                    \"en_AU\": \"\"\n                                },\n                                \"archived\": false\n                            },\n                            {\n                                \"value\": \"Rotura del pulsador\",\n                                \"value_translations\": {\n                                    \"es\": \"Rotura del pulsador\",\n                                    \"en\": \"\",\n                                    \"ca\": \"\",\n                                    \"eu\": \"\",\n                                    \"fr\": \"\",\n                                    \"es_MX\": \"\",\n                                    \"en_AU\": \"\"\n                                },\n                                \"archived\": false\n                            },\n                            {\n                                \"value\": \"Otro\",\n                                \"value_translations\": {\n                                    \"es\": \"Otro\",\n                                    \"en\": \"\",\n                                    \"ca\": \"\",\n                                    \"eu\": \"\",\n                                    \"fr\": \"\",\n                                    \"es_MX\": \"\",\n                                    \"en_AU\": \"\"\n                                },\n                                \"archived\": false\n                            }\n                        ]\n                    },\n                    \"required\": false,\n                    \"default_value\": \"\"\n                }\n            ],\n            \"id\": \"604a1ae47c89ecbc028b45b7\",\n            \"name\": \"Alc_ascensorenlaviapublica_ascensorcallegranada\",\n            \"use_cases\": []\n        },\n        \"social\": true,\n        \"evaluation\": true,\n        \"color\": \"#bfba3d\",\n        \"hideEstimatedDate\": false,\n        \"mandatory_description\": true,\n        \"mandatory_informant_config\": [\n            {\n                \"field\": \"first_name\",\n                \"message\": \"\",\n                \"required\": true\n            },\n            {\n                \"field\": \"last_name\",\n                \"message\": \"\",\n                \"required\": true\n            },\n            {\n                \"field\": \"phone\",\n                \"message\": \"\",\n                \"required\": true\n            },\n            {\n                \"field\": \"email\",\n                \"message\": \"\",\n                \"required\": false\n            },\n            {\n                \"field\": \"twitter_nickname\",\n                \"message\": \"\",\n                \"required\": false\n            },\n            {\n                \"field\": \"id_document\",\n                \"message\": \"\",\n                \"required\": false\n            },\n            {\n                \"field\": \"addresses\",\n                \"message\": \"\",\n                \"required\": false\n            },\n            {\n                \"field\": \"gender\",\n                \"message\": \"\",\n                \"required\": false\n            },\n            {\n                \"field\": \"secondary_phone\",\n                \"message\": \"\",\n                \"required\": false\n            },\n            {\n                \"field\": \"birthday\",\n                \"message\": \"\",\n                \"required\": false\n            },\n            {\n                \"field\": \"user_location_area\",\n                \"message\": \"\",\n                \"required\": false\n            },\n            {\n                \"field\": \"address\",\n                \"message\": \"\",\n                \"required\": false\n            }\n        ],\n        \"max_upload_files\": 5,\n        \"max_upload_medias\": 5,\n        \"public\": true,\n        \"public_requests\": true,\n        \"public_requests_internal\": true,\n        \"allow_changing_request_privacy\": true,\n        \"service_code\": \"60\",\n        \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db194ce9e815.png\",\n        \"sponsoring_info\": {\n            \"display\": false\n        },\n        \"status_node\": [],\n        \"typology\": {\n            \"hasLocation\": true,\n            \"id\": \"5850dca2e22c6d9f51b00c0f\",\n            \"color\": \"#ebc113\",\n            \"description_legend\": \"Ej: farola fundida\",\n            \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\",\n            \"location_type\": \"geolocation\",\n            \"name\": \"Aviso\",\n            \"order\": 1,\n            \"public\": true,\n            \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n            \"visible_name\": \"Aviso\",\n            \"with_authorized_users\": true,\n            \"with_description\": true,\n            \"with_files\": true,\n            \"with_geolocation_data\": true,\n            \"with_medias\": true,\n            \"with_temporality_data\": true\n        },\n        \"with_informant\": true,\n        \"with_internal_informant\": true\n    },\n    \"service_request_id\": \"ALC44145\",\n    \"status_node\": {\n        \"status_node_type\": \"initial_node\",\n        \"name\": \"Nuevo\",\n        \"color\": \"#f1c40f\",\n        \"typology_node_id\": \"5850dca2e22c6d9f51b00c59\",\n        \"visible_name\": \"Nuevo\",\n        \"id\": \"5850dd34e22c6d9f51b016ef\",\n        \"order\": 1,\n        \"planned\": false\n    },\n    \"supporting\": false,\n    \"tags\": [],\n    \"token\": \"690a23ac4e4e725ed4022cf5\",\n    \"user\": {\n        \"hasPassword\": false,\n        \"nickname\": \"user_cf6b655f8bdc6b8ce17c\",\n        \"avatar\": \"https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600\",\n        \"channels\": [],\n        \"id\": \"68b064f122eb8e9dcf08aad6\",\n        \"notification_channels\": [],\n        \"last_geofences\": [],\n        \"jurisdiction_element_channels\": []\n    }\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/requests_follows?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests_follows"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 400,\n        \"description\": \"service_request_id was not provided\"\n    }\n]"
                }
              ]
            }
          ],
          "id": "2ff28b50-776f-4ba5-b95d-ed9c12915c44",
          "description": " "
        },
        {
          "name": "Get Request Detail",
          "id": "1bec7645-3550-4eb6-bd1f-5b2d41a75e4a",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "X-CLIENT-ID",
                "value": "{{clientId}}",
                "description": "Identificador del cliente. Requerido."
              }
            ],
            "url": {
              "raw": "{{publicBaseUrl}}/request/detail/{{jurisdiction_id}}/{{service_request_id}}",
              "host": [
                "{{publicBaseUrl}}"
              ],
              "path": [
                "request",
                "detail",
                "{{jurisdiction_id}}",
                "{{service_request_id}}"
              ],
              "variable": [
                {
                  "key": "jurisdiction_id",
                  "value": "es.madrid",
                  "description": "String. [required]. ID de la jurisdicción en formato Open010"
                },
                {
                  "key": "service_request_id",
                  "value": "REQ-2024-001",
                  "description": "String. [required]. ID de la solicitud en formato Open010"
                }
              ]
            },
            "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']`."
          },
          "response": [
            {
              "id": "15275e0e-c5ae-4440-918a-7905d461b068",
              "name": "200 OK - Request encontrado",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/request/detail/{{jurisdiction_id}}/{{service_request_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "detail",
                    "{{jurisdiction_id}}",
                    "{{service_request_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "es.madrid",
                      "description": "String. [required]. ID de la jurisdicción en formato Open010"
                    },
                    {
                      "key": "service_request_id",
                      "value": "REQ-2024-001",
                      "description": "String. [required]. ID de la solicitud en formato Open010"
                    }
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"service_request_id\": \"REQ-2024-001\",\n  \"status\": \"submitted\",\n  \"service_code\": \"LIMPIEZA\",\n  \"service_name\": \"Limpieza de v\\u00eda p\\u00fablica\",\n  \"description\": \"Basura acumulada en la acera\",\n  \"address\": \"Calle Mayor 1, Madrid\",\n  \"lat\": 40.4168,\n  \"long\": -3.7038,\n  \"requested_datetime\": \"2024-01-15T10:30:00+01:00\",\n  \"updated_datetime\": \"2024-01-15T11:00:00+01:00\",\n  \"media_url\": \"https://example.com/media/image.jpg\"\n}"
            },
            {
              "id": "2f09f9fe-f038-4d69-ad6b-92dc37eb5729",
              "name": "403 Forbidden - Sin permisos",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/request/detail/{{jurisdiction_id}}/{{service_request_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "detail",
                    "{{jurisdiction_id}}",
                    "{{service_request_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "es.madrid",
                      "description": "String. [required]. ID de la jurisdicción en formato Open010"
                    },
                    {
                      "key": "service_request_id",
                      "value": "REQ-2024-001",
                      "description": "String. [required]. ID de la solicitud en formato Open010"
                    }
                  ]
                }
              },
              "status": "Forbidden",
              "code": 403,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "[\n  {\n    \"code\": 403,\n    \"description\": \"You can not get a private request anonymously\"\n  }\n]"
            },
            {
              "id": "f077539d-0fb1-467a-b6b7-ed6ef47e37d5",
              "name": "404 Not Found - Request no encontrado",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/request/detail/{{jurisdiction_id}}/{{service_request_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "detail",
                    "{{jurisdiction_id}}",
                    "{{service_request_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "es.madrid",
                      "description": "String. [required]. ID de la jurisdicción en formato Open010"
                    },
                    {
                      "key": "service_request_id",
                      "value": "REQ-2024-001",
                      "description": "String. [required]. ID de la solicitud en formato Open010"
                    }
                  ]
                }
              },
              "status": "Not Found",
              "code": 404,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "[\n  {\n    \"code\": 404,\n    \"description\": \"Request was not found\"\n  }\n]"
            }
          ]
        },
        {
          "name": "Get Request (Legacy)",
          "id": "fc1076be-2317-4405-9463-9861e7760bec",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "X-CLIENT-ID",
                "value": "{{clientId}}",
                "description": "Identificador del cliente. Requerido."
              }
            ],
            "url": {
              "raw": "{{publicBaseUrl}}/requests/{{jurisdiction_id}}/{{service_request_id}}",
              "host": [
                "{{publicBaseUrl}}"
              ],
              "path": [
                "requests",
                "{{jurisdiction_id}}",
                "{{service_request_id}}"
              ],
              "variable": [
                {
                  "key": "jurisdiction_id",
                  "value": "es.madrid",
                  "description": "String. [required]. ID de la jurisdicción en formato Open010"
                },
                {
                  "key": "service_request_id",
                  "value": "REQ-2024-001",
                  "description": "String. [required]. ID de la solicitud en formato Open010"
                }
              ]
            },
            "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."
          },
          "response": [
            {
              "id": "390f374c-970b-4aae-b7c0-57a670faaf18",
              "name": "200 OK - Request encontrado",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/requests/{{jurisdiction_id}}/{{service_request_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests",
                    "{{jurisdiction_id}}",
                    "{{service_request_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "es.madrid",
                      "description": "String. [required]. ID de la jurisdicción en formato Open010"
                    },
                    {
                      "key": "service_request_id",
                      "value": "REQ-2024-001",
                      "description": "String. [required]. ID de la solicitud en formato Open010"
                    }
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"service_request_id\": \"REQ-2024-001\",\n  \"status\": \"submitted\",\n  \"service_code\": \"LIMPIEZA\",\n  \"service_name\": \"Limpieza de v\\u00eda p\\u00fablica\",\n  \"description\": \"Basura acumulada en la acera\",\n  \"address\": \"Calle Mayor 1, Madrid\",\n  \"lat\": 40.4168,\n  \"long\": -3.7038,\n  \"requested_datetime\": \"2024-01-15T10:30:00+01:00\",\n  \"updated_datetime\": \"2024-01-15T11:00:00+01:00\",\n  \"media_url\": \"https://example.com/media/image.jpg\"\n}"
            },
            {
              "id": "be9c6f41-2f1f-47dd-9531-b2aa712ee2f5",
              "name": "403 Forbidden - Sin permisos",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/requests/{{jurisdiction_id}}/{{service_request_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests",
                    "{{jurisdiction_id}}",
                    "{{service_request_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "es.madrid",
                      "description": "String. [required]. ID de la jurisdicción en formato Open010"
                    },
                    {
                      "key": "service_request_id",
                      "value": "REQ-2024-001",
                      "description": "String. [required]. ID de la solicitud en formato Open010"
                    }
                  ]
                }
              },
              "status": "Forbidden",
              "code": 403,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "[\n  {\n    \"code\": 403,\n    \"description\": \"You can not get a private request anonymously\"\n  }\n]"
            },
            {
              "id": "a511e23d-120c-4bf2-ab40-da822bcf7af7",
              "name": "404 Not Found - Request no encontrado",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/requests/{{jurisdiction_id}}/{{service_request_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests",
                    "{{jurisdiction_id}}",
                    "{{service_request_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "es.madrid",
                      "description": "String. [required]. ID de la jurisdicción en formato Open010"
                    },
                    {
                      "key": "service_request_id",
                      "value": "REQ-2024-001",
                      "description": "String. [required]. ID de la solicitud en formato Open010"
                    }
                  ]
                }
              },
              "status": "Not Found",
              "code": 404,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "[\n  {\n    \"code\": 404,\n    \"description\": \"Request was not found\"\n  }\n]"
            }
          ]
        },
        {
          "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": "{{publicBaseUrl}}/requests_evaluations/{{token}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests_evaluations",
                    "{{token}}"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso token."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| request_token | String | ID de la request sobre la cual se desea consultar. |\n\nEste 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": "{{publicBaseUrl}}/requests_evaluations/{{token}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests_evaluations",
                        "{{token}}"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"evaluation\": 3,\n        \"id\": \"6930a3be811b8ea85f061fc7\",\n        \"user\": {\n            \"nickname\": \"user_16806e2ff266a479e61f\",\n            \"id\": \"672a1a9a12c5ab351b07c644\"\n        }\n    }\n]"
                }
              ]
            },
            {
              "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": "{\n    \"token\": \"{{objectId}}\",\n    \"evaluation\": 3\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/requests_evaluations",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests_evaluations"
                  ]
                },
                "description": "**Body**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| evaluation | Int | \\[required\\] Valor de la evaluación asignada a la solicitud. |\n| token | String | \\[required\\] Token único que identifica la solicitud (request) a evaluar. |\n\n**Description**\n\nEste 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": "{\n    \"token\": \"685f09d1f5d925be3d0d5af7\",\n    \"evaluation\": 3\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests_evaluations",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"evaluation\": \"3\",\n    \"id\": \"694465cec869708db10c5cf3\",\n    \"user\": {\n        \"hasPassword\": true,\n        \"nickname\": \"user_ea05d696b1e00926d803\",\n        \"avatar\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/avatars/686dded53b0a9.jpg\",\n        \"channels\": [\n            {\n                \"external\": true,\n                \"id\": \"673c50e7f9de27ecb80e5cc2\",\n                \"name\": \"Test\"\n            }\n        ],\n        \"id\": \"685efd3de403e56420059cb8\",\n        \"notification_channels\": [\n            {\n                \"external\": true,\n                \"id\": \"673c50e7f9de27ecb80e5cc2\",\n                \"name\": \"Test\"\n            }\n        ],\n        \"last_geofences\": [],\n        \"jurisdiction_element_channels\": []\n    }\n}"
                },
                {
                  "id": "4d11f530-0990-4ea9-bb6f-6d3314927f58",
                  "name": "Post Request Evaluations Request Evaluated",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"token\": \"685f09d1f5d925be3d0d5af7\",\n    \"evaluation\": 3\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests_evaluations",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 403,\n        \"description\": \"Request has already been evaluated\"\n    }\n]"
                },
                {
                  "id": "3516c74c-adb3-4e5e-8cc2-94ba77a5f20c",
                  "name": "Post Request Evaluations Not Provided",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"token\": \"685f09d1f5d925be3d0d5af7\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests_evaluations",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 403,\n        \"description\": \"Request has already been evaluated\"\n    }\n]"
                },
                {
                  "id": "3e8fd0f0-6d7b-4eb7-a0c0-0d0c8ce48ba1",
                  "name": "Post Request Evaluations Token Not Provided",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"evaluation\": 3\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/requests_evaluations",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"token was not provided\"\n    }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/request/{{token}}/files",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "{{token}}",
                    "files"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso token."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| request_token | String | ID de la request sobre la cual se desea consultar los archivos asociados. (Ej. 690368126e14fe090900d728) |\n\nEste 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": "{{publicBaseUrl}}/request/{{token}}/files",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "files"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"created_at\": \"2023-11-24T13:35:16+00:00\",\n    \"id\": \"6560a694fb3a56c096076992\",\n    \"public\": false,\n    \"type\": \"1\",\n    \"url\": \"https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf\",\n    \"description\": \"documento de prueba.pdf\"\n}"
                },
                {
                  "id": "32298c05-8c1b-42eb-a19a-e990621a9c8f",
                  "name": "Error Request Access Module Not Active",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/request/{{token}}/files",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "files"
                      ]
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 403,\n  \"message\": \"REQUESTS_ACCESS_MODULE not active\"\n}\n"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/request/{{token}}/files",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "{{token}}",
                    "files"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso token."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| request_token | String | Es el ID que se utiliza para identificar una solicitud específica en el sistema. |\n\nEste 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": "{{publicBaseUrl}}/request/{{token}}/files",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "files"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"created_at\": \"2024-11-13T15:30:54+00:00\",\n    \"id\": \"6734c62ebe78a901cb04b655\",\n    \"public\": false,\n    \"type\": \"1\",\n    \"url\": \"https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf\",\n    \"description\": \"CURSO Y MANUAL RGPD.pdf\"\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/request/{{token}}/files",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "files"
                      ]
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 403,\n    \"description\": \"File format not allowed\"\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/request/{{token}}/files",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "files"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 400,\n    \"description\": \"An error ocurred while uploading the files\"\n}"
                }
              ]
            },
            {
              "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": "{\n    \"public\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/request/{{token}}/files/{{file_id}}/edit",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "{{token}}",
                    "files",
                    "{{file_id}}",
                    "edit"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso request token."
                    },
                    {
                      "key": "file_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso file id."
                    }
                  ]
                },
                "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."
              },
              "response": [
                {
                  "id": "fb6ea050-3f60-4a0f-a2fd-cdfcaa584038",
                  "name": "Response OK Edit Request File",
                  "originalRequest": {
                    "method": "PATCH",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"public\": true\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/request/{{token}}/files/{{file_id}}/edit",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "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": "{\n    \"created_at\": \"2024-11-13T16:00:22+00:00\",\n    \"id\": \"6734cd167933b741750f8794\",\n    \"public\": true,\n    \"type\": \"1\",\n    \"url\": \"https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf\",\n    \"description\": \"CURSO Y MANUAL RGPD.pdf\"\n}"
                },
                {
                  "id": "9cf29384-e67b-4c20-b4fd-3039507ce5fd",
                  "name": "Edit Request File Not RequestFile Found",
                  "originalRequest": {
                    "method": "PATCH",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"public\": true\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/request/{{token}}/files/{{file_id}}/edit",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "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": "{\n    \"code\":404,\n    \"description\":\"File not found\"\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/request/{{token}}/files/{{file_id}}/edit",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "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": "{\n    \"code\":403,\n    \"description\":\"File format not allowed\"\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/request/{{token}}/files/{{file_id}}/edit",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "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": "{\n    \"code\":400,\n    \"description\":\"Error to edit RequestFile\"\n}"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/request/{{token}}/files/{{file_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "{{token}}",
                    "files",
                    "{{file_id}}"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso token."
                    },
                    {
                      "key": "file_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso file id."
                    }
                  ]
                },
                "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."
              },
              "response": [
                {
                  "id": "25b76e9b-c44d-4a26-a872-d80837159316",
                  "name": "Response OK Delete Request File",
                  "originalRequest": {
                    "method": "DELETE",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/request/{{token}}/files/{{file_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "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": "{{publicBaseUrl}}/request/{{token}}/files/{{file_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "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": "{\n    \"code\":404,\n    \"description\":\"File not found\"\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/request/{{token}}/files/{{file_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "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": "{\n    \"code\":404,\n    \"description\":\"File not found\"\n}"
                },
                {
                  "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": "{{publicBaseUrl}}/request/{{token}}/files/{{file_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "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": "{\n    \"code\":400,\n    \"description\":\"File could not be deleted\"\n}"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/request/{{token}}/reiterations",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "{{token}}",
                    "reiterations"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso request token."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| request_token | String | ID de la request sobre la cual se desea consultar. |\n\nEste 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": "{{publicBaseUrl}}/request/{{token}}/reiterations",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "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": "[\n    {\n        \"datetime\": \"2025-11-30T17:52:26+00:00\",\n        \"id\": \"692c845a9d906168ea03cd4b\",\n        \"source\": {\n            \"alias\": \"Workapp (Android)\",\n            \"id\": \"5850de88e22c6d9f51b17718\"\n        }\n    }\n]"
                }
              ]
            },
            {
              "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": "{{clientId}}"
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA"
                  },
                  {
                    "key": "Origin",
                    "value": "{{mapaUrl}}"
                  },
                  {
                    "key": "Connection",
                    "value": "keep-alive"
                  },
                  {
                    "key": "Referer",
                    "value": "{{mapaUrl}}/"
                  },
                  {
                    "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": "{\n    \"description\": \"Muy buen aviso\",\n    \"email_notification\": \"true\",\n    \"follow_request\": \"true\",\n    \"push_notification\": \"true\",\n    \"sms_notification\": \"true\",\n    \"source\": \"{{objectId}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/request/{{token}}/reiteration",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "request",
                    "{{token}}",
                    "reiteration"
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso request id."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| description | string | [optional]  <br>Descripción o comentario adicional para la reiteración. |\n| email_notification | boolean | [optional]  <br>Indica si el usuario desea recibir notificaciones por email. |\n| follow_request | boolean | [optional]  <br>Indica si el usuario desea seguir el aviso. |\n| push_notification | boolean | [optional]  <br>Indica si el usuario desea recibir notificaciones push. |\n| sms_notification | boolean | [optional]  <br>Indica si el usuario desea recibir notificaciones por SMS. |\n| source | string | [optional]  <br>ID de la fuente desde donde se realiza la reiteración. |\n\nEste 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.\n\n| Campo | **Tipo** | **Descripción** |\n| --- | --- | --- |\n| description | String | \\[required\\] Mensaje descriptivo sobre el aviso. |\n| email_notification | Bool | \\[required\\] Indica si se enviará una notificación por correo electrónico. |\n| follow_request | Bool | \\[required\\] Indica si se debe realizar una solicitud de seguimiento. |\n| push_notification | Bool | \\[required\\] Indica si se enviará una notificación push al usuario. |\n| sms_notification | Bool | \\[required\\] Indica si se enviará una notificación por SMS. |\n| 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": "{{clientId}}"
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA"
                      },
                      {
                        "key": "Origin",
                        "value": "{{mapaUrl}}"
                      },
                      {
                        "key": "Connection",
                        "value": "keep-alive"
                      },
                      {
                        "key": "Referer",
                        "value": "{{mapaUrl}}/"
                      },
                      {
                        "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": "{\n    \"description\": \"Muy buen aviso\",\n    \"email_notification\": \"true\",\n    \"follow_request\": \"true\",\n    \"push_notification\": \"true\",\n    \"sms_notification\": \"true\",\n    \"source\": \"5850de88e22c6d9f51b17722\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/request/{{token}}/reiteration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "reiteration"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"datetime\": \"2025-03-13T21:55:25+00:00\",\n    \"description\": \"Muy buen aviso\",\n    \"email\": \"witijah950@erapk.com\",\n    \"first_name\": \"Pepito\",\n    \"follow_request\": \"true\",\n    \"id\": \"67d3544d4e10cee6cc011a3f\",\n    \"last_name\": \"Perez\",\n    \"phone\": \"5551234\",\n    \"request\": {\n        \"following_count\": 1,\n        \"reiterations_count\": 1,\n        \"complaints_count\": 0,\n        \"token\": \"675854bccb214872520b3bfc\"\n    },\n    \"source\": {\n        \"alias\": \"Canal Web\",\n        \"id\": \"5850de88e22c6d9f51b17722\"\n    },\n    \"user\": {\n        \"id\": \"67d2f56f887735a7be00f7bb\",\n        \"nickname\": \"witijah950\"\n    }\n}"
                },
                {
                  "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": "{{clientId}}"
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA"
                      },
                      {
                        "key": "Origin",
                        "value": "{{mapaUrl}}"
                      },
                      {
                        "key": "Connection",
                        "value": "keep-alive"
                      },
                      {
                        "key": "Referer",
                        "value": "{{mapaUrl}}/"
                      },
                      {
                        "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": "{\n    \"description\": \"Muy buen aviso\",\n    \"email_notification\": \"true\",\n    \"follow_request\": \"true\",\n    \"push_notification\": \"true\",\n    \"sms_notification\": \"true\",\n    \"source\": \"5850de88e22c6d9f51b17722\",\n    \"extra_field\": \"example\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/request/{{token}}/reiteration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "reiteration"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n        \"code\": 400,\n        \"description\": \"ERROR: Este formulario no debería contener campos adicionales.\\n\"\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": "{{clientId}}"
                      },
                      {
                        "key": "Authorization",
                        "value": "Bearer Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA"
                      },
                      {
                        "key": "Origin",
                        "value": "{{mapaUrl}}"
                      },
                      {
                        "key": "Connection",
                        "value": "keep-alive"
                      },
                      {
                        "key": "Referer",
                        "value": "{{mapaUrl}}/"
                      },
                      {
                        "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": "{\n    \"description\": \"Muy buen aviso\",\n    \"email_notification\": \"true\",\n    \"follow_request\": \"true\",\n    \"push_notification\": \"true\",\n    \"sms_notification\": \"true\",\n    \"source\": \"5850de88e22c6d9f51b17722\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/request/{{token}}/reiteration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "request",
                        "{{token}}",
                        "reiteration"
                      ]
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n        \"code\": 403,\n        \"description\": \"REQUESTS_ACCESS_MODULE not active\"\n    }"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/requests_comments/{{token}}?jurisdiction_id={{jurisdiction_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "requests_comments",
                    "{{token}}"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [optional]. Es el identificador de la jurisdicción que permitira filtrar las categorias por área geográfica."
                    }
                  ],
                  "variable": [
                    {
                      "key": "token",
                      "value": "",
                      "description": "String. [required]. ID del recurso token."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| request_token | String | ID de la request sobre la cual se desea consultar. |\n\nEste 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": "{{publicBaseUrl}}/requests_comments/{{token}}?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "requests_comments",
                        "{{token}}"
                      ],
                      "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": "[\n    {\n        \"created_datetime\": \"2025-12-02T15:01:56+00:00\",\n        \"comment_code\": \"692eff645f8583139f0a1ea1\",\n        \"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!\",\n        \"medias_urls\": []\n    }\n]"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/search_engine/config",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "{{publicBaseUrl}}/search_engine/config",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"available_types\": [\n        \"backofficeUser\",\n        \"release\",\n        \"request\",\n        \"service\",\n        \"user\",\n        \"predeterminedResponse\"\n    ]\n}"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/search_engine/search?jurisdictionIds[]={{jurisdiction_id}}&limit={{limit}}&own=false&page={{page}}&q={{searchQuery}}&types[]=request,service&typologyIds[]={{typologyIds}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "search_engine",
                    "search"
                  ],
                  "query": [
                    {
                      "key": "jurisdictionIds[]",
                      "value": "{{jurisdiction_id}}",
                      "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": "{{limit}}",
                      "description": "Integer. [optional]. Resultados por página."
                    },
                    {
                      "key": "own",
                      "value": "false",
                      "description": "Boolean. [optional]. Si va en true, filtra por usuario autenticado."
                    },
                    {
                      "key": "page",
                      "value": "{{page}}",
                      "description": "Integer. [optional]. Página."
                    },
                    {
                      "key": "q",
                      "value": "{{searchQuery}}",
                      "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": "{{typologyIds}}",
                      "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": "{{publicBaseUrl}}/search_engine/search?jurisdictionIds[]={{jurisdiction_id}}&limit={{limit}}&own=false&page={{page}}&q={{searchQuery}}&types[]=request,service&typologyIds[]={{typologyIds}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "search_engine",
                        "search"
                      ],
                      "query": [
                        {
                          "key": "jurisdictionIds[]",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}"
                        },
                        {
                          "key": "own",
                          "value": "false"
                        },
                        {
                          "key": "page",
                          "value": "{{page}}"
                        },
                        {
                          "key": "q",
                          "value": "{{searchQuery}}"
                        },
                        {
                          "key": "types[]",
                          "value": "request,service"
                        },
                        {
                          "key": "typologyIds[]",
                          "value": "{{typologyIds}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"services\": [\n        {\n            \"service_id\": \"67157a0fedc96f822e06ce0d\",\n            \"description\": \"Prueba\",\n            \"jurisdiction\": {\n                \"id\": \"561e04ed6aa918910c8b4592\",\n                \"name\": \"Alcobendas\",\n                \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n            },\n            \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/67157ae8b5622248310935.png\",\n            \"service_name\": \"Categoría A2\",\n            \"typology\": {\n                \"id\": \"67157912d6fb285be7042e43\",\n                \"visible_name\": \"Tipología de pruebas\"\n            }\n        }\n    ],\n    \"requests\": [\n        {\n            \"description\": \"PRUEBA PAQUI\",\n            \"service\": {\n                \"service_id\": \"56fbc8296aa918ee008b4567\",\n                \"description\": \"Esta categoría es solamente para hacer encargos del Departamento de Vías Públicas\",\n                \"jurisdiction\": {\n                    \"id\": \"561e04ed6aa918910c8b4592\",\n                    \"name\": \"Alcobendas\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n                },\n                \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/5db2be2787fe3.png\",\n                \"service_name\": \"Encargos a Seromal del Dpto. de Vías Públicas\",\n                \"typology\": {\n                    \"id\": \"5850dca2e22c6d9f51b00c0f\",\n                    \"visible_name\": \"Aviso\",\n                    \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/typology_icons/6729ec91b9764447503445.png\"\n                }\n            },\n            \"service_request_id\": \"ALC1510\",\n            \"token\": \"57d8f44c6aa918861b8b4c44\"\n        }\n    ],\n    \"users\": [\n        {\n            \"full_name\": \"pruebatestloginradmas \",\n            \"avatar\": \"https://lh3.googleusercontent.com/a/ACg8ocL1pSnwuE-30ycqboOla78olRl3nZJ2GThgmNRoVkZZjZtR3w=s96-c?sz=600\",\n            \"email\": \"pruebatestloginradmas@gmail.com\",\n            \"first_name\": \"pruebatestloginradmas\",\n            \"id\": \"6745ed9ffaf87f5227001f83\",\n            \"last_name\": \"\",\n            \"username\": \"user_381cc6dedb41c804bdf1\"\n        }\n    ],\n    \"predeterminedResponses\": [\n        {\n            \"enquiry\": {\n                \"company\": {\n                    \"name\": \"ALC_UPruebas01\"\n                }\n            },\n            \"id\": \"66e60e7103db7073be0996e9\",\n            \"body\": \"Prueba qA 01\",\n            \"title\": \"Prueba de respuesta predefinida\"\n        }\n    ],\n    \"backofficeUsers\": [\n        {\n            \"id\": \"66f31aab3c74bf2587090267\",\n            \"full_name\": \"Pruebas Permisos\",\n            \"first_name\": \"Pruebas\",\n            \"last_name\": \"Permisos\",\n            \"avatar\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\"\n        }\n    ],\n    \"releases\": [\n        {\n            \"company\": {\n                \"avatar_url\": \"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/company/68639e2b6a1c88.56054492.png\",\n                \"name\": \"ALC_ADDA_OPS\"\n            },\n            \"description\": \"Prueba de comunicación\",\n            \"id\": \"692ca2d59d25f20f8602793f\",\n            \"name\": \"Comunicado de prueba III\"\n        }\n    ]\n}"
                }
              ]
            }
          ],
          "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": "{\n    \"client_id\": \"{{clientId}}\",\n    \"facebook_token\": \"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\",\n    \"first_name\": \"Pepito\",\n    \"google_token\": \"ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"last_name\": \"Perez\",\n    \"legal_terms_accepted\": true,\n    \"origin_device\": \"{{objectId}}\",\n    \"password\": \"Radmas*2025\",\n    \"register\": true,\n    \"user_id\": \"{{userId}}\",\n    \"username\": \"{{testEmail}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login/{{jurisdiction_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login",
                    "{{jurisdiction_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso jurisdiction id."
                    }
                  ]
                },
                "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.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| client_id | string | [required]  <br>Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client. |\n| 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. |\n| password | string | [required]  <br>Se debe ingresar la contraseña concerniente al User deseado o en caso de registro, asignar una contraseña. |\n| register | boolean | [required]  <br>Permite identificar si el User está realizando login o un registro nuevo. |\n| username | string | [required]  <br>Permite ingresar el email del User que desea realizar un login a la plataforma. |\n| 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. |\n| 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. |\n| first_name | string | [optional]  <br>En caso de registro de User permite especificar el nombre que tendrá el mismo. |\n| 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. |\n| jurisdiction_id | string | [optional]  <br>Permite especificar la jurisdicción a la que pertenecerá el User. |\n| last_name | string | [optional]  <br>En caso de registro de User permite especificar el apellido que tendrá el mismo. |\n| origin_device | string | [optional]  <br>Sirve para identificar el dispositivo desde el cual se está realizando la solicitud de autenticación. |\n| user_id | string | [optional]  <br>Permite ingresar el identificador del User para logins externos. |"
              },
              "response": [
                {
                  "id": "3331c3fd-1197-43c1-b827-379cfa05dec3",
                  "name": "Login Through External Session",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"username\": \"pepito\",\n    \"password\": \"mock_12345\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login/{{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "login",
                        "{{jurisdiction_id}}"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"access_token\": \"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\"\n}"
                },
                {
                  "id": "1388ddcd-a7b9-4ac9-968e-37730826c5c2",
                  "name": "Login Through External User Register",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"last_name\": \"Perez\",\n    \"legal_terms_accepted\": true,\n    \"password\": \"mock_12345!\",\n    \"register\": true,\n    \"username\": \"pepito\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login/{{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "login",
                        "{{jurisdiction_id}}"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"access_token\": \"MzZlZWU2ZDU0MjJkZDIzYTA3YjBhMTA4OTM4MzQ2ZDVkMTExMDJjOTA2ODNmMDljODBmZGQ0NGQ0OGNmNzM2Mg\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"MmUwYjBiZTk2NGExZDllNTkzY2RlNTMwNzg1OTZjMzY1ODA2MDI3MjM2MmM2MDE5YjU2NTk3NDBiZTAxOGY2ZA\"\n}"
                },
                {
                  "id": "4691f935-958a-4d65-a961-1967071f68ca",
                  "name": "Login Through External Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"password\": \"PruebaCambio-20244!\",\n    \"username\": \"{{testEmail}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login/{{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "login",
                        "{{jurisdiction_id}}"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n        \"code\": 400,\n        \"description\": \"Username or password are invalid\"\n    }"
                },
                {
                  "id": "8e9883aa-b6e4-4a24-9494-d7ce68dc6b11",
                  "name": "Login Through Blocked Login",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"username\": \"pepito\",\n    \"password\": \"mock_123451\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login/{{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "login",
                        "{{jurisdiction_id}}"
                      ]
                    }
                  },
                  "status": "Too Many Requests",
                  "code": 429,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n        \"code\": 429,\n        \"description\": \"error.login.blocked\"\n    }"
                }
              ]
            },
            {
              "name": "Login",
              "id": "91aa93da-10c9-4f3f-8b5b-29e187a5623b",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"facebook_token\": \"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\",\n    \"google_token\": \"ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"legal_terms_accepted\": true,\n    \"origin_device\": \"{{objectId}}\",\n    \"password\": \"Radmas*2025\",\n    \"register\": true,\n    \"user_id\": \"{{userId}}\",\n    \"username\": \"{{testEmail}}\"\n}\n",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\n| device | Object | \\[optional\\]. Permite realizar login a un User mediante un dispositivo móvil |\n| 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. |\n| first_name | String | \\[optional\\]. En caso de registro de User permite especificar el nombre que tendrá el mismo |\n| 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 |\n| jurisdiction_id | String | \\[optional\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\n| last_name | String | \\[optional\\]. En caso de registro de User permite especificar el apellido que tendrá el mismo |\n| 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 |\n| origin_device | String | \\[optional\\]. Sirve para identificar el dispositivo desde el cual se está realizando la solicitud de autenticación |\n| password | String | \\[required\\]. Se debe ingresar la contraseña concerniente al User deseado o en caso de registro, asignar una contraseña |\n| register | Boolean | \\[required\\]. Permite identificar si el User está realizando login o un registro nuevo |\n| user_id | String | \\[optional\\]. Permite ingresar el identificador del User para logins externos |\n| username | String | \\[required\\]. Permite ingresar el email del User que desea realizar un login a la plataforma |\n\nEste 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": "{\n    \"client_id\": \"{{clientId}}\",\n    \"username\": \"pepito\",\n    \"password\": \"mock_12345\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "login"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"access_token\": \"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\"\n}"
                },
                {
                  "id": "c6d18f4f-f35b-4794-8b04-44495fb81e30",
                  "name": "Login User Register",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"lasr_name\": \"Perez\",\n    \"legal_terms_Accepted\": true,\n    \"password\": \"mock_12345!\",\n    \"register\": true,\n    \"username\": \"pepito\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "login"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"access_token\": \"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\"\n}"
                },
                {
                  "id": "7b2f6961-19ba-4544-839c-580da5dd1053",
                  "name": "Login Register without LegalTerms accepted",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"lasr_name\": \"Perez\",\n    \"legal_terms_Accepted\": false,\n    \"password\": \"mock_12345!\",\n    \"register\": true,\n    \"username\": \"pepito\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 400,\n        \"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\"\n    }"
                },
                {
                  "id": "2e09a22a-ed47-45db-8e76-838a2b2a401b",
                  "name": "Login Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"username\": \"pepito\",\n    \"password\": \"mock_123451\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 400,\n        \"description\": \"Username or password are invalid\"\n    }"
                },
                {
                  "id": "a7cd5c7e-36c8-4871-ac89-c094faaf3dd4",
                  "name": "Login Blocked Login",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"username\": \"pepito\",\n    \"password\": \"mock_123451\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 429,\n        \"description\": \"error.login.blocked\"\n    }"
                },
                {
                  "id": "4229b8c9-58be-415c-b842-dfb55986d0ec",
                  "name": "Login Two Factor Auth Fail",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"lasr_name\": \"Perez\",\n    \"legal_terms_Accepted\": true,\n    \"password\": \"mock_12345!\",\n    \"register\": false,\n    \"username\": \"pepito\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "login"
                      ]
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"error\": \"Two factor authentication disabled\"\n}"
                }
              ]
            },
            {
              "name": "Login Process",
              "id": "c948c580-7531-4c6e-ad81-1022c7358543",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"facebook_token\": \"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\",\n    \"google_token\": \"ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"legal_terms_accepted\": true,\n    \"origin_device\": \"{{objectId}}\",\n    \"password\": \"Radmas*2025\",\n    \"register\": true,\n    \"user_id\": \"{{userId}}\",\n    \"username\": \"{{testEmail}}\"\n}\n",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login_process",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login_process"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\n| device | Object | \\[optional\\]. Permite realizar login a un User mediante un dispositivo móvil |\n| 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. |\n| first_name | String | \\[optional\\]. En caso de registro de User permite especificar el nombre que tendrá el mismo |\n| 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 |\n| jurisdiction_id | String | \\[optional\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\n| last_name | String | \\[optional\\]. En caso de registro de User permite especificar el apellido que tendrá el mismo |\n| 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 |\n| origin_device | String | \\[optional\\]. Sirve para identificar el dispositivo desde el cual se está realizando la solicitud de autenticación |\n| password | String | \\[required\\]. Se debe ingresar la contraseña concerniente al User deseado o en caso de registro, asignar una contraseña |\n| register | Boolean | \\[required\\]. Permite identificar si el User está realizando login o un registro nuevo |\n| user_id | String | \\[optional\\]. Permite ingresar el identificador del User para logins externos |\n| username | String | \\[required\\]. Permite ingresar el email del User que desea realizar un login a la plataforma |\n\nEste 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": "{\n    \"client_id\": \"{{clientId}}\",\n    \"username\": \"pepito\",\n    \"password\": \"mock_12345\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_process",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"access_token\": \"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\"\n}"
                },
                {
                  "id": "5362945e-5577-43e7-bbf6-17c06d263d61",
                  "name": "Login Process User Register",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"lasr_name\": \"Perez\",\n    \"legal_terms_Accepted\": true,\n    \"password\": \"mock_12345!\",\n    \"register\": true,\n    \"username\": \"pepito\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_process",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"access_token\": \"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\"\n}"
                },
                {
                  "id": "c9b9b4b3-c5b0-4036-bef2-40cfa11d7ae7",
                  "name": "Login Process Register without LegalTerms accepted",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"lasr_name\": \"Perez\",\n    \"legal_terms_Accepted\": false,\n    \"password\": \"mock_12345!\",\n    \"register\": true,\n    \"username\": \"pepito\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_process",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 400,\n        \"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\"\n    }"
                },
                {
                  "id": "3136c04f-f3e8-4c52-b120-b4478aeaf62d",
                  "name": "Login Process Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"username\": \"pepito\",\n    \"password\": \"mock_123451\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_process",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 400,\n        \"description\": \"Username or password are invalid\"\n    }"
                },
                {
                  "id": "9c015a83-4cac-4deb-a2c2-3e8e23b85bc9",
                  "name": "Login Process Blocked Login",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"username\": \"pepito\",\n    \"password\": \"mock_123451\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_process",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 429,\n        \"description\": \"error.login.blocked\"\n    }"
                },
                {
                  "id": "44c97ed2-f797-42b5-9d4d-06e2042751fe",
                  "name": "Login Process Two Factor Auth Fail",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"first_name\": \"Pepito\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"lasr_name\": \"Perez\",\n    \"legal_terms_Accepted\": true,\n    \"password\": \"mock_12345!\",\n    \"register\": false,\n    \"username\": \"pepito\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_process",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"error\": \"Two factor authentication disabled\"\n}"
                }
              ]
            },
            {
              "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": "{\n    \"code\": \"7333\",\n    \"client_id\": \"{{clientId}}\",\n    \"hash\": \"{{remember_me_hash}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/security/2fa-confirmation",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los BackofficeUser son manager_client |\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 |\n| 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": "{\n    \"code\": \"7333\",\n    \"client_id\": \"{{clientId}}\",\n    \"hash\": \"{{remember_me_hash}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/2fa-confirmation",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "2fa-confirmation"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"access_token\" : \"YTljZjkzZDU5ZjA2NmE3MjgxZWIwYzRlYzNiYTRhMjY3ODY1NmRjYmI0MmY3OTdhNjMzNjU2M2ZlN2Q0ODg1ZA\",\n  \"expires_in\" : 2592000,\n  \"token_type\" : \"bearer\",\n  \"scope\" : null,\n  \"refresh_token\" : \"NmI0YzgwYjcwNzczMmNmNWFmODExMDg1MjI5ZjUyZjJjMjZhMGY5NDliZGY5YTcxOGI3ZmIxODE5ZDRkODUwNw\"\n}"
                },
                {
                  "id": "c818e8a0-db10-4ad9-8741-5c7e58625370",
                  "name": "Two factor auth confirmation invalid hash",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"code\": \"7333\",\n    \"client_id\": \"{{clientId}}\",\n    \"hash\": \"{{remember_me_hash}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/2fa-confirmation",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n  \"code\": 401,\n  \"message\": \"Hash sent does not exists or has expired!\"\n}\n"
                },
                {
                  "id": "66126be8-a4b4-4ca0-85d8-36faad04e100",
                  "name": "Two factor auth confirmation invalid client id",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"code\": \"7333\",\n    \"client_id\": \"{{clientId}}\",\n    \"hash\": \"{{remember_me_hash}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/2fa-confirmation",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"description\": \"Client_id is invalid\",\n    \"error_code\": 1058\n}"
                },
                {
                  "id": "a9a0eaa7-aabe-4484-955e-1b8c7cbedf86",
                  "name": "Two factor auth confirmation invalid code",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"code\": \"7313\",\n    \"client_id\": \"{{clientId}}\",\n    \"hash\": \"{{remember_me_hash}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/2fa-confirmation",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"description\": \"Code sent does not match. Recheck your email\",\n    \"error_code\": 1201\n}"
                },
                {
                  "id": "acae3141-1ba3-4ff2-99c3-f92c05072b84",
                  "name": "Two factor auth confirmation",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"code\": \"7333\",\n    \"client_id\": \"{{clientId}}\",\n    \"hash\": \"{{remember_me_hash}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/2fa-confirmation",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"description\": \"Code sent does not match. You ran out of retries. You must restart the whole login process\",\n    \"error_code\": 1200\n}"
                }
              ]
            },
            {
              "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": "{\n    \"app_key\": 2,\n    \"device_id\": \"{{objectId}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/logout",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "logout"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| 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 |\n| 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. |\n\nEste 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": "{\n    \"app_key\": 2,\n    \"device_id\": \"5b5c5ef0e6b72aa8018b4569\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/logout",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "logout"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\":200,\n    \"description\":\"successfully logged out\"\n}"
                },
                {
                  "id": "63020f8d-33b2-4635-a515-1eac23359cdf",
                  "name": "Logout without login",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": 2,\n    \"device_id\": \"5b5c5ef0e6b72aa8018b4569\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/logout",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "logout"
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"message\": \"No API token provided\"\n}"
                },
                {
                  "id": "7251bfe8-dd4e-4737-aabe-6b008f59c66a",
                  "name": "Logout failed",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": 2,\n    \"device_id\": \"5b5c5ef0e6b72aa8018b4569\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/logout",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"message\": \"logout failed\"\n}"
                }
              ]
            },
            {
              "name": "Login Google",
              "id": "1736d53f-7628-4346-a776-1562133df621",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"google_token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"remote_access_token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\",\n    \"user_id\": \"{{userId}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login_google",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login_google"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| 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 |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\n| 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 |\n| jurisdiction_id | String | \\[optional\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\n| remote_access_token | String | \\[optional\\]. Token que se enviará a Google para validarlo (mismo valor de google_token). |\n| user_id | String | \\[optional\\]. Permite ingresar el identificador del User para logins externos |\n\nEste 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": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"google_token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"remote_access_token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\",\n    \"user_id\": \"530dcc3251bbe7f27a702dc6\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_google",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n  \"access_token\" : \"MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw\",\n  \"expires_in\" : 2592000,\n  \"token_type\" : \"bearer\",\n  \"scope\" : null,\n  \"refresh_token\" : \"ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ\"\n}"
                },
                {
                  "id": "2c2c32bc-2f22-4210-a060-bf27c3713530",
                  "name": "Login Google Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"user_id\": \"530dcc3251bbe7f27a702dc6\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_google",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\":400,\n    \"description\":\"remote_access_token:\\n    ERROR: remote access token was not provided\\n\"\n}"
                }
              ]
            },
            {
              "name": "Login Google Process",
              "id": "d877cbd5-c17e-4645-a641-ceffa39562f1",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"google_token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"remote_access_token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\",\n    \"user_id\": \"{{userId}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login_google_process",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login_google_process"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| 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 |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\n| 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 |\n| jurisdiction_id | String | \\[optional\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\n| remote_access_token | String | \\[optional\\]. Token que se enviará a Google para validarlo (mismo valor de google_token). |\n| user_id | String | \\[optional\\]. Permite ingresar el identificador del User para logins externos |\n\nEste 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": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"google_token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"remote_access_token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\",\n    \"user_id\": \"530dcc3251bbe7f27a702dc6\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_google_process",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n  \"access_token\" : \"MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw\",\n  \"expires_in\" : 2592000,\n  \"token_type\" : \"bearer\",\n  \"scope\" : null,\n  \"refresh_token\" : \"ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ\"\n}"
                },
                {
                  "id": "88c2579f-9504-4672-9457-67b49e1d80f7",
                  "name": "Login Google Process Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"user_id\": \"530dcc3251bbe7f27a702dc6\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_google_process",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\":400,\n    \"description\":\"remote_access_token:\\n    ERROR: remote access token was not provided\\n\"\n}"
                }
              ]
            },
            {
              "name": "Login Apple",
              "id": "e0800a6c-dd07-4af5-a418-1978a114d17d",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"avatar\": \"http://moock_images.com/123456.jpg\",\n    \"client_id\": \"{{clientId}}\",\n    \"origin_device\": \"{{objectId}}\",\n    \"remote_access_token\": \"{{apple_identity_token}}\",\n    \"username\": \"{{testEmail}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login_apple",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login_apple"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| 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 |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\n| origin_device | String | \\[optional\\]. Sirve para identificar el dispositivo desde el cual se está realizando la solicitud de autenticación |\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 |\n| username | String | \\[optional\\]. Permite ingresar el username o email del User que desea realizar un login a la plataforma |\n\nEste 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": "{\n    \"avatar\": \"http://moock_images.com/123456.jpg\",\n    \"client_id\": \"{{clientId}}\",\n    \"origin_device\": \"5850de88e22c6d9f51b17715\",\n    \"remote_access_token\": \"{{apple_identity_token}}\",\n    \"username\": \"{{testEmail}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_apple",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"access_token\": \"MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ\"\n}"
                },
                {
                  "id": "55d5bd1d-7995-4d76-8278-e0219f3a6470",
                  "name": "Login Apple Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"avatar\": \"http://moock_images.com/123456.jpg\",\n    \"client_id\": \"{{clientId}}\",\n    \"origin_device\": \"5850de88e22c6d9f51b17715\",\n    \"username\": \"{{testEmail}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_apple",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"remote_access_token:\\n    ERROR: remote access token was not provided\\n\"\n}"
                },
                {
                  "id": "6a823b2f-6a5e-4529-a47b-b8670428fa78",
                  "name": "Login Apple Not Logged",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"avatar\": \"http://moock_images.com/123456.jpg\",\n    \"client_id\": \"{{clientId}}\",\n    \"origin_device\": \"5850de88e22c6d9f51b17715\",\n    \"remote_access_token\": \"{{apple_identity_token}}\",\n    \"username\": \"{{testEmail}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_apple",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"not logged\"\n}"
                }
              ]
            },
            {
              "name": "Login Facebook",
              "id": "6d1f2cf4-e1fe-4465-b87d-55bda5ca7266",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"remote_access_token\": \"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\",\n    \"user_id\": \"{{userId}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login_facebook",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login_facebook"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| 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 |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\n| jurisdiction_id | String | \\[optional\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\n| 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. |\n| user_id | String | \\[optional\\]. Permite ingresar el identificador del User para logins externos |\n\nEste 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": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"remote_access_token\": \"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\",\n    \"user_id\": \"66fc095b2fbcedfe5e0c8ff6\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_facebook",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"access_token\": \"MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ\"\n}"
                },
                {
                  "id": "649ed04f-91d5-4760-9aad-285532fa8002",
                  "name": "Login Facebook without token",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"user_id\": \"66fc095b2fbcedfe5e0c8ff6\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_facebook",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 403,\n    \"description\": \"facebook credentials not provided\"\n}"
                },
                {
                  "id": "e79dc255-c0c7-41cc-874b-66c74ee5799b",
                  "name": "Login Facebook Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"remote_access_token\": \"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\",\n    \"user_id\": \"66fc095b2fbcedfe5e0c8ff6\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_facebook",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"facebook does not provide email\"\n}"
                },
                {
                  "id": "308f5c42-ec12-4dae-b0cd-5f0bc517ea02",
                  "name": "Login Facebook Request Error",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": 2,\n    \"client_id\": \"{{clientId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"remote_access_token\": \"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\",\n    \"user_id\": \"66fc095b2fbcedfe5e0c8ff6\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login_facebook",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"Request error\"\n}"
                }
              ]
            },
            {
              "name": "Login JWT",
              "id": "43c398db-652f-4bd8-abdc-65eb9f97b24b",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"token\": \"{{jwt_token}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login-jwt",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login-jwt"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\n| 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 |\n\nEste 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": "{\n    \"client_id\": \"{{clientId}}\",\n    \"token\": \"{{jwt_token}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-jwt",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "login-jwt"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"access_token\": \"MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ\"\n}"
                },
                {
                  "id": "09b9c12d-97d8-47db-ad2d-cda1f187d273",
                  "name": "Login JWT Client Id null",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"token\": \"{{jwt_token}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-jwt",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"client_id required\"\n}"
                },
                {
                  "id": "a877a6ce-00fb-4065-a33d-19b2204426d6",
                  "name": "Login JWT Token null",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-jwt",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"Request error\"\n}"
                }
              ]
            },
            {
              "name": "Reset Password",
              "id": "59c3149b-997d-4e2f-b52b-1442a85a2890",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"app_key\": \"{{jurisdictionId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"username\": \"{{testEmail}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/reset_password",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "reset_password"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| 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 |\n| jurisdiction_id | String | \\[optional\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\n| username | String | \\[required\\]. Permite ingresar el username o email del User que desea realizar un login a la plataforma |\n\nEste 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": "{\n    \"app_key\": 2,\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"username\": \"{{testEmail}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/reset_password",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 200,\n    \"description\": \"E-mail sent to user\"\n}"
                },
                {
                  "id": "b96c7fd5-6384-4570-a5fc-f86533811709",
                  "name": "Reset Password user not found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": 2,\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"username\": \"{{testEmail}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/reset_password",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 404,\n    \"description\": \"User mock@correo.com was not found\"\n}"
                },
                {
                  "id": "76ff179d-99a0-4b45-8ee0-95f913291776",
                  "name": "Reset Password email not send",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": 2,\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"username\": \"mock_user\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/reset_password",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 422,\n    \"description\": \"Cant send an email to User mock_user since he/she has no email!\"\n}"
                },
                {
                  "id": "793ee055-f3b9-470d-b855-6cdaa4e4a4bb",
                  "name": "Reset Password Invalid Form",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": 2,\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"username\": \"{{testEmail}}\",\n    \"mock_field\": \"asd\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/reset_password",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"ERROR: This form should not contain extra fields.\\n\"\n}"
                }
              ]
            },
            {
              "name": "Recover Password",
              "id": "2d8167e9-8650-4877-b40f-468e6d54a4c0",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"app_key\": \"{{jurisdictionId}}\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"username\": \"{{testEmail}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/recover_password",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "recover_password"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| 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 |\n| jurisdiction_id | String | \\[optional\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\n| username | String | \\[required\\]. Permite ingresar el username o email del User que desea realizar un login a la plataforma |\n\nEste 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": "{\n    \"app_key\": \"68c194511794bfe7fa02734a\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"username\": \"{{testEmail}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/recover_password",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 200,\n    \"description\": \"E-mail sent to user\"\n}"
                },
                {
                  "id": "d4dd9afb-c730-407d-b557-c75ea6c654f0",
                  "name": "Recover Password user not found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": \"68c194511794bfe7fa02734a\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"username\": \"{{testEmail}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/recover_password",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"User mock@correo.com was not found\"\n    }\n]"
                },
                {
                  "id": "87915d4b-0ab8-477a-86fa-d83fd1e84501",
                  "name": "Recover Password email not send",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": \"68c194511794bfe7fa02734a\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"username\": \"mock_user\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/recover_password",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"User mock_user was not found\"\n    }\n]"
                },
                {
                  "id": "d101be4b-a5f5-4ffa-8b28-0a3f1e5e0fb9",
                  "name": "Recover Password Invalid Form",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"app_key\": \"68c194511794bfe7fa02734a\",\n    \"jurisdiction_id\": \"{{jurisdictionId}}\",\n    \"username\": \"{{testEmail}}\",\n    \"mock_field\": \"asd\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/recover_password",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"ERROR: Este formulario no debería contener campos adicionales.\\n\"\n    }\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": "{{publicBaseUrl}}/accept_terms",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "{{publicBaseUrl}}/accept_terms",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "accept_terms"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"description\": \"Legal Terms Accepted\",\n    \"code\": 200\n}"
                },
                {
                  "id": "0e6f5214-f1bd-4791-9f61-ac5ee0d18e0d",
                  "name": "LegalTerms Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/accept_terms",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"There was an error accepting the legal terms\"\n}"
                }
              ]
            },
            {
              "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": "{\n    \"device_id\": \"{{device_id}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/generate-biotoken",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "generate-biotoken"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| device_id | String | \\[required\\]. Valor del identificador del dispositivo vinculado a un User |\n\nEste 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": "{\n    \"device_id\": \"{{device_id}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/generate-biotoken",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "generate-biotoken"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"biotoken\": \"a4bda5e96116622271709484e36db31eefc35a7c7092f73b22d60dcf60862b47dc79b6a7564e59ac37c75326543797b8b6a8b9c36216b68c22b2467a8072aada\",\n    \"greeting\": \"Pepito \"\n}"
                },
                {
                  "id": "be241c4e-e65f-4498-b91b-a3712163785c",
                  "name": "Generate Biotoken Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"device_id\": \"{{device_id}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/generate-biotoken",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"Request error\"\n}"
                }
              ]
            },
            {
              "name": "Login Biotoken",
              "id": "9e1c9bf0-bea2-44c3-bd25-f6289f99b21c",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"biotoken\": \"{{biotoken}}\",\n    \"client_id\": \"{{clientId}}\",\n    \"device_id\": \"{{device_id}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login-biotoken",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login-biotoken"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| 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 |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\n| device_id | String | \\[required\\]. Valor del identificador del dispositivo vinculado a un User |\n\nEste 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": "{\n    \"biotoken\": \"{{biotoken}}\",\n    \"client_id\": \"{{clientId}}\",\n    \"device_id\": \"{{device_id}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-biotoken",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "login-biotoken"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"oauth\": {\n        \"access_token\": \"MjE4M2I5YTdiNzhhZmU0ZjZmNDY1MGYxNWNkZTIzNGYzNjM3YzYzMjhmMGFkMGFkMzI2Y2NiNTA1NTAzMjdhMA\",\n        \"expires_in\": 2592000,\n        \"token_type\": \"bearer\",\n        \"scope\": null,\n        \"refresh_token\": \"OGFmYTExM2JhMTM3YTBiNjBiNTAwYjQzMDEzOWU3ZjY0M2RmN2NkOGFkMzY0N2NiYjdmZjk2Yjk4Y2Y0Mzg3Mw\"\n    },\n    \"bioauth\": {\n        \"biotoken\": \"ffb3cfef97dfdb38f7aa0ad09f1f0c35da50c1bfd90a444a2f80b5853d8e612cc8f8ab2a2b88bf4ce95cb71ffd26d80c070b81cb501a9c70e05effff82e3d790\",\n        \"greeting\": \"Pepito \"\n    }\n}"
                },
                {
                  "id": "f304268e-6290-40ec-b6d1-486b135efd84",
                  "name": "Login Biotoken Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"device_id\": \"{{device_id}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-biotoken",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"\"\n}"
                },
                {
                  "id": "3f3a346c-f9d5-476e-829d-b46a8dc9af5e",
                  "name": "Login Biotoken Invalid DeviceID",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"biotoken\": \"{{biotoken}}\",\n    \"client_id\": \"{{clientId}}\",\n    \"device_id\": \"{{device_id}}1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-biotoken",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"\"\n}"
                }
              ]
            },
            {
              "name": "Login Anonymous",
              "id": "c044f731-b614-4c24-8f88-b8abae1518c0",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"device_id\": \"{{device_id}}1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login-anonymous",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login-anonymous"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\n| device_id | String | \\[required\\]. Valor del identificador del dispositivo vinculado a un User |\n\nPermite 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": "{\n    \"client_id\": \"{{clientId}}\",\n    \"device_id\": \"{{device_id}}1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-anonymous",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "login-anonymous"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"access_token\": \"OGNlOWIyMzI5OWNmMzlmMzA2YjVkODgxNzdjNGIyNWIzN2FiNDYwMjVhYjgxZDBlMmI2NWNmYzYwOWE2MTQ3OQ\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"MjcxMzdlOWJhZDBhZjQwODY1YTE3MGE5NTU4OGVmODE2M2I5ZGUzOWY0MDk3MGRlMzA5ZWY2ZWIyMzdhYTMxNg\"\n}"
                },
                {
                  "id": "1785f671-1c38-40f1-bcd6-033bf05729c3",
                  "name": "Login Anonymous Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"device_id\": \"{{device_id}}1\",\n    \"mock_field\": 1\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-anonymous",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"ERROR: Este formulario no debería contener campos adicionales.\\n\"\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": "{\n    \"client_id\": \"{{clientId}}\",\n    \"code\": \"CODE_RECEIVED&\",\n    \"code_verifier\": \"CODE_VERIFIER\",\n    \"redirect_uri\": \"https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token\",\n    \"clientKey\": \"sedfwe\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/login-open-id?client_key=mockid",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "login-open-id"
                  ],
                  "query": [
                    {
                      "key": "client_key",
                      "value": "mockid",
                      "description": "String. [required]. Clave del cliente para autenticación OAuth."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| client_id | String | \\[required\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\n| clientKey | string | [optional]  <br>Clave del cliente para autenticación. |\n| clientKey | string | [optional]  <br>Clave del cliente para autenticación. |\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 |\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 |\n| 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 |\n\nEste 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": "{\n    \"client_id\": \"{{clientId}}\",\n    \"code\": \"CODE_RECEIVED&\",\n    \"code_verifier\": \"CODE_VERIFIER\",\n    \"redirect_uri\": \"https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-open-id",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "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": "{\n    \"access_token\": \"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\"\n}"
                },
                {
                  "id": "562a5f2d-ff58-48eb-8a01-dc78f915d8b5",
                  "name": "Login Open ID Action Bad Request",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"code\": \"CODE_RECEIVED&\",\n    \"code_verifier\": \"CODE_VERIFIER\",\n    \"redirect_uri\": \"https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-open-id",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"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\"\n}"
                },
                {
                  "id": "847c2ea0-87fa-449e-ba88-90b5a66aa6ad",
                  "name": "Login Open ID Action Invalid Form",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"client_id\": \"{{clientId}}\",\n    \"code\": \"CODE_RECEIVED&\",\n    \"code_verifier\": \"CODE_VERIFIER\",\n    \"redirect_uri\": \"https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token\",\n    \"mock_field\": 1\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/login-open-id",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"code\": 400,\n    \"description\": \"ERROR: Este formulario no debería contener campos adicionales.\\n\"\n}"
                }
              ]
            },
            {
              "name": "OAuth2 Refresh Token",
              "id": "f8a2c3b1-9d4e-5f6a-7b8c-0d1e2f3a4b5c",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "noauth"
                },
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/x-www-form-urlencoded",
                    "description": "Formato requerido para OAuth2 token endpoint"
                  }
                ],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "key": "client_id",
                      "value": "{{clientId}}",
                      "description": "(string) [required]. Identificador del cliente Open010. Debe ser válido y de tipo API_PUBLIC_OPEN010",
                      "type": "text"
                    },
                    {
                      "key": "grant_type",
                      "value": "refresh_token",
                      "description": "(string) [required]. Tipo de grant OAuth2. Debe ser 'refresh_token'",
                      "type": "text"
                    },
                    {
                      "key": "client_id",
                      "value": "{{clientId}}",
                      "description": "(string) [required]. Identificador del cliente Open010. Debe ser válido y de tipo API_PUBLIC_OPEN010",
                      "type": "text"
                    },
                    {
                      "key": "refresh_token",
                      "value": "{{refreshToken}}",
                      "description": "(string) [required]. Token de refresco válido y no expirado obtenido en login previo",
                      "type": "text"
                    }
                  ]
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/oauth/v2/token",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "oauth",
                    "v2",
                    "token"
                  ]
                },
                "description": "## Descripción\n\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.\n\n## Body Params\n\n| Campo | Tipo | Descripción |\n|-------|------|-------------|\n| client_id | String | [required]. ID del cliente Open010. Debe ser válido y de tipo API_PUBLIC_OPEN010 |\n| grant_type | String | [required]. Debe ser exactamente `refresh_token` |\n| refresh_token | String | [required]. Token de refresco obtenido en login previo. No debe estar expirado |"
              },
              "response": [
                {
                  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567891",
                  "name": "200 OK - Token renovado exitosamente",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      }
                    ],
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "key": "client_id",
                          "value": "{{clientId}}",
                          "type": "text"
                        },
                        {
                          "key": "grant_type",
                          "value": "refresh_token",
                          "type": "text"
                        },
                        {
                          "key": "refresh_token",
                          "value": "{{refreshToken}}",
                          "type": "text"
                        }
                      ]
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/oauth/v2/token",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "oauth",
                        "v2",
                        "token"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"access_token\": \"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\",\n    \"expires_in\": 2592000,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\"\n}"
                },
                {
                  "id": "b2c3d4e5-f6a7-8901-bcde-f23456789013",
                  "name": "400 Bad Request - invalid_grant (token expirado)",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      }
                    ],
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "key": "grant_type",
                          "value": "refresh_token",
                          "type": "text"
                        },
                        {
                          "key": "client_id",
                          "value": "{{clientId}}",
                          "type": "text"
                        },
                        {
                          "key": "refresh_token",
                          "value": "token_expirado_o_invalido",
                          "type": "text"
                        }
                      ]
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/oauth/v2/token",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "oauth",
                        "v2",
                        "token"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"error\": \"invalid_grant\",\n    \"error_description\": \"The refresh token is invalid.\"\n}"
                },
                {
                  "id": "c3d4e5f6-a7b8-9012-cdef-345678901235",
                  "name": "400 Bad Request - invalid_client",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      }
                    ],
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "key": "grant_type",
                          "value": "refresh_token",
                          "type": "text"
                        },
                        {
                          "key": "client_id",
                          "value": "cliente_inexistente",
                          "type": "text"
                        },
                        {
                          "key": "refresh_token",
                          "value": "{{refreshToken}}",
                          "type": "text"
                        }
                      ]
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/oauth/v2/token",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "oauth",
                        "v2",
                        "token"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"error\": \"invalid_client\",\n    \"error_description\": \"The client credentials are invalid.\"\n}"
                },
                {
                  "id": "d4e5f6a7-b8c9-0123-def0-456789012345",
                  "name": "400 Bad Request - invalid_request (falta parámetro)",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded"
                      }
                    ],
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "key": "grant_type",
                          "value": "refresh_token",
                          "type": "text"
                        }
                      ]
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/oauth/v2/token",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "oauth",
                        "v2",
                        "token"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"error\": \"invalid_request\",\n    \"error_description\": \"The request is missing a required parameter.\"\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": "{{publicBaseUrl}}/services?jurisdiction_ids={{jurisdiction_id}}&lat={{latitude}}&lng={{longitude}}&typology_ids={{typology_ids}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "services"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_ids",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [optional]. (org.alcobendas). Son los identificadores de la jurisdicción que permitiran filtrar las categorias por área geográfica."
                    },
                    {
                      "key": "lat",
                      "value": "{{latitude}}",
                      "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": "{{longitude}}",
                      "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": "{{typology_ids}}",
                      "description": "String. [optional]. (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": "{{publicBaseUrl}}/services?jurisdiction_ids={{jurisdiction_id}}&lat={{latitude}}&lng={{longitude}}&typology_ids={{typology_ids}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "services"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}"
                        },
                        {
                          "key": "typology_ids",
                          "value": "{{typology_ids}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"parent_service_name\": \"\",\n    \"group\": \"\",\n    \"jurisdiction_id\": \"es.madrid\",\n    \"visible_name\": \"Alumbrado público (Aviso)\",\n    \"id\": \"5620e9176aa91815008b4567\",\n    \"social\": true,\n    \"evaluation\": true,\n    \"color\": \"#FBC02D\",\n    \"description\": \"\",\n    \"keywords\": \"\",\n    \"mandatory_description\": true,\n    \"mandatory_files\": false,\n    \"mandatory_medias\": false,\n    \"max_upload_files\": 5,\n    \"max_upload_medias\": 5,\n    \"public\": true,\n    \"public_requests\": false,\n    \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/66b265542dadc277946226.png\",\n    \"service_name\": \"Alumbrado público\",\n    \"typology\": {\n        \"id\": \"5850dca2e22c6d9f51b00c0f\",\n        \"color\": \"#ebc113\",\n        \"description_legend\": \"Ej: farola fundida\",\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/typology_icons/6729ec91b9764447503445.png\",\n        \"location_type\": \"geolocation\",\n        \"order\": 1,\n        \"public\": true,\n        \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n        \"visible_name\": \"Aviso\",\n        \"with_authorized_users\": true,\n        \"with_description\": true,\n        \"with_files\": true,\n        \"with_geolocation_data\": false,\n        \"with_medias\": true,\n        \"with_temporality_data\": false\n    },\n    \"with_informant\": false\n}"
                },
                {
                  "id": "302c70ad-1c70-495a-8398-31e58fbafec4",
                  "name": "Error Jurisdiction Not Valid Lists Services",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/services?jurisdiction_ids={{jurisdiction_id}}&typology_ids={{typology_ids}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "services"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "key": "typology_ids",
                          "value": "{{typology_ids}}"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 400,\n    \"description\": \"Parameter \\\"jurisdiction_ids\\\" of value \\\"es.madri\\\" violated a constraint \\\"Jurisdiction ids not valid\\\"\"\n}"
                },
                {
                  "id": "12727924-bc4f-49b7-b839-72459776ae98",
                  "name": "Error Typology Not Valid Lists Services",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/services?jurisdiction_ids={{jurisdiction_id}}&typology_ids=5850dca2e22c",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "services"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "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": "{\n    \"code\": 400,\n    \"description\": \"Parameter \\\"typology_ids\\\" of value \\\"5850dca2e22c\\\" violated a constraint \\\"Ids are not valid\\\"\"\n}"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/services/{{service_id}}?jurisdiction_id={{jurisdiction_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "services",
                    "{{service_id}}"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [required]. Son los identificadores de la jurisdicción que permitiran filtrar las categorias por área geográfica"
                    }
                  ],
                  "variable": [
                    {
                      "key": "service_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso service id."
                    }
                  ]
                },
                "description": "**Request param**\n\n| **Campo** | Tipo | **Descripción** |\n| --- | --- | --- |\n| service_id | String | \\[required\\](5620e9176aa91815008b4567). ID de mongo del que se quiere obtener el detalle. |\n\nEste 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": "{{publicBaseUrl}}/services/{{service_id}}?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "services",
                        "{{service_id}}"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n    \"deleted\": false,\n    \"parent_service_name\": \"Animales y plagas\",\n    \"group\": \"59bfbe07566d72ab018b458d\",\n    \"jurisdiction_id\": \"es.madrid\",\n    \"visible_name\": \"Categoría QA (Aviso)\",\n    \"id\": \"64fa7c4cf978d8061c03e151\",\n    \"additionalData\": {\n        \"requiredVariables\": [],\n        \"configurable_questions\": [\n            {\n                \"editable\": true,\n                \"hidden_in_detail\": false,\n                \"hidden_in_form\": false,\n                \"hidden_in_open010_detail\": false,\n                \"hidden_in_open010_form\": false,\n                \"question\": {\n                    \"type\": \"datetime\",\n                    \"active\": true,\n                    \"code\": \"QA_f\",\n                    \"help_text\": \"Texto de ayuda pregunta tipo fecha\",\n                    \"help_text_translations\": {\n                        \"es\": \"Texto de ayuda pregunta tipo fecha\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"id\": \"64f7e45bfe43122312033d52\",\n                    \"question\": \"Pregunta tipo fecha\",\n                    \"question_translations\": {\n                        \"es\": \"Pregunta tipo fecha\",\n                        \"en\": \"\",\n                        \"ca\": \"\",\n                        \"eu\": \"\",\n                        \"fr\": \"\",\n                        \"es_MX\": \"\",\n                        \"en_AU\": \"\"\n                    },\n                    \"tags\": [\n                        {\n                            \"name\": \"QA Manual Testing\",\n                            \"color\": \"#000000\",\n                            \"id\": \"QA Manual Testing\"\n                        }\n                    ]\n                },\n                \"required\": false,\n                \"default_value\": \"\"\n            }\n        ],\n        \"id\": \"64f7e6575c89c81f1a04b223\",\n        \"name\": \"QA_Preguntas\",\n        \"use_cases\": []\n    },\n    \"social\": false,\n    \"evaluation\": false,\n    \"color\": \"#000000\",\n    \"description\": \"Categoría de prueba para QA\",\n    \"hideEstimatedDate\": false,\n    \"keywords\": \"\",\n    \"mandatory_description\": false,\n    \"mandatory_files\": false,\n    \"mandatory_informant_config\": [\n        {\n            \"field\": \"first_name\",\n            \"message\": \"\",\n            \"required\": false\n        }\n    ],\n    \"mandatory_medias\": false,\n    \"max_upload_files\": 5,\n    \"max_upload_medias\": 5,\n    \"public\": true,\n    \"public_requests\": true,\n    \"service_code\": \"250\",\n    \"service_icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/64fa7ca10dd0b818754593.png\",\n    \"service_name\": \"Categoría QA\",\n    \"sponsoring_info\": {\n        \"display\": false\n    },\n    \"status_node\": [\n        {\n            \"status_node_type\": \"initial_node\",\n            \"name\": \"Nuevo\",\n            \"color\": \"#f1c40f\",\n            \"typology_node_id\": \"59bfaf21d2bf39b8018b457d\",\n            \"visible_name\": \"Nuevo\",\n            \"id\": \"64fa7c4cf978d8061c03e142\",\n            \"order\": 0,\n            \"planned\": false\n        }\n    ],\n    \"typology\": {\n        \"hasLocation\": true,\n        \"id\": \"59bfadfe566d72b8018b45c6\",\n        \"color\": \"#ebc113\",\n        \"description_legend\": \"Ej: farola fundida\",\n        \"icon\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\",\n        \"location_type\": \"geolocation\",\n        \"name\": \"Aviso\",\n        \"order\": 1,\n        \"public\": true,\n        \"typology_description\": \"Tengo un problema con un elemento en la calle\",\n        \"visible_name\": \"Aviso\",\n        \"with_authorized_users\": false,\n        \"with_description\": true,\n        \"with_files\": true,\n        \"with_geolocation_data\": true,\n        \"with_medias\": true,\n        \"with_temporality_data\": true\n    },\n    \"with_informant\": true,\n    \"with_internal_informant\": true\n}"
                },
                {
                  "id": "4cf788b9-217f-466f-8985-348ae1853bc7",
                  "name": "Service Detail not found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/services/{{service_id}}?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "services",
                        "{{service_id}}"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "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": "{\n    \"code\": 404,\n    \"description\": \"service_id was not found \"\n}"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/twitter-timeline/{{account}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "twitter-timeline",
                    "{{account}}"
                  ],
                  "variable": [
                    {
                      "key": "account",
                      "value": "",
                      "description": "String. [required]. ID del recurso acount."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| account | String | \\[required\\] nombre de la cuenta a solicitar |\n\nEste 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": "{{publicBaseUrl}}/twitter-timeline/ComunidadMadrid",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"created_at\": \"2025-12-17T07:40:53+00:00\",\n        \"id_str\": \"2001195884697043340\",\n        \"screen_name\": \"ComunidadMadrid\",\n        \"text\": \"RT @Madridonasangre: 👉 Maratón de donación en el Hospital de Getafe.\\n\\n⏰ 8.30h a 21.00h\\n\\n❤ Al #donarsangre se extraen 450 ml de sangre que s…\"\n    },\n    {\n        \"created_at\": \"2025-12-17T07:40:27+00:00\",\n        \"id_str\": \"2001195774550396941\",\n        \"screen_name\": \"ComunidadMadrid\",\n        \"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…\"\n    },\n    {\n        \"created_at\": \"2025-12-17T06:13:08+00:00\",\n        \"id_str\": \"2001173800394662193\",\n        \"screen_name\": \"ComunidadMadrid\",\n        \"text\": \"📆 Agenda del Gobierno de la Comunidad de Madrid para este 17 de diciembre. #FelizMiércoles \\n\\n📲 https://t.co/7BnQY3O16a https://t.co/afaXgJYpoC\"\n    },\n    {\n        \"created_at\": \"2025-12-16T20:29:37+00:00\",\n        \"id_str\": \"2001026951817887795\",\n        \"screen_name\": \"ComunidadMadrid\",\n        \"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…\"\n    },\n    {\n        \"created_at\": \"2025-12-16T19:43:07+00:00\",\n        \"id_str\": \"2001015250108473496\",\n        \"media_url\": \"https://pbs.twimg.com/media/G8UIrxjW4AUi1hj.jpg\",\n        \"screen_name\": \"ComunidadMadrid\",\n        \"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.\\n\\n🎄 Un total de 200 voces han interpretado un variado repertorio de villancicos navideños.\\n\\n#NavidadEnMadrid\\n\\n+Info: https://t.co/Frr8XM2wvs https://t.co/K0aLHQHpkV\"\n    },\n    {\n        \"created_at\": \"2025-12-16T19:42:22+00:00\",\n        \"id_str\": \"2001015062996422947\",\n        \"screen_name\": \"ComunidadMadrid\",\n        \"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.\\n\\n😢 Nos gus…\"\n    },\n    {\n        \"created_at\": \"2025-12-16T19:42:19+00:00\",\n        \"id_str\": \"2001015050799370245\",\n        \"screen_name\": \"ComunidadMadrid\",\n        \"text\": \"RT @metro_madrid: 👏 ¡Un día menos para la reapertura de L6!\\n\\n🚇 Así hemos reforzado los andenes para las futuras puertas de andén. \\n\\n🔊 RECUE…\"\n    },\n    {\n        \"created_at\": \"2025-12-16T19:01:11+00:00\",\n        \"id_str\": \"2001004697675870234\",\n        \"media_url\": \"https://pbs.twimg.com/media/G8T_F5fWkAAQJhP.jpg\",\n        \"screen_name\": \"ComunidadMadrid\",\n        \"text\": \"🏡 La Comunidad de Madrid participa en la entrega de 39 viviendas asequibles promovidas por el Ayuntamiento de #Alcobendas.\\n\\n👉 El consejero @MA_GarciaMartin ha visitado junto a los nuevos inquilinos esta promoción, ubicada en la calle Velarde.\\n\\n+Info: https://t.co/Ob6etgyL3o https://t.co/X0O0CewMd2\"\n    },\n    {\n        \"created_at\": \"2025-12-16T19:00:14+00:00\",\n        \"id_str\": \"2001004457077977393\",\n        \"screen_name\": \"ComunidadMadrid\",\n        \"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…\"\n    },\n    {\n        \"created_at\": \"2025-12-16T19:00:10+00:00\",\n        \"id_str\": \"2001004442678915413\",\n        \"screen_name\": \"ComunidadMadrid\",\n        \"text\": \"RT @VisitMadrid_es: ✨ Disfruta de la #NavidadenSol con el Bosque de los Deseos y una experiencia dedicada al agua.\\n\\n📆 Hasta el 6 de enero,…\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Get Twitter Users",
              "id": "4eb36562-20b5-4b72-b25f-200bac15d010",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/twitter-users/{{accounts}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "twitter-users",
                    "{{accounts}}"
                  ],
                  "variable": [
                    {
                      "key": "accounts",
                      "value": "",
                      "description": "String. [required]. ID del recurso acount."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| account | String | \\[required\\] nombre de la cuenta a solicitar |\n\nEste 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": "{{publicBaseUrl}}/twitter-users/ComunidadMadrid",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"name\": \"Comunidad de Madrid\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_images/1582850980571406366/D9nEHuqs.jpg\",\n        \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1582850980571406366/D9nEHuqs_normal.jpg\",\n        \"screen_name\": \"ComunidadMadrid\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Get Youtube Videos",
              "id": "2a0c1dbb-211e-46bf-a1c4-2f447e29f89e",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/youtube/videos/{{account}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "youtube",
                    "videos",
                    "{{account}}"
                  ],
                  "variable": [
                    {
                      "key": "account",
                      "value": "",
                      "description": "String. [required]. ID del recurso acount."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| account | String | \\[required\\] nombre de la cuenta a solicitar |\n\nEste 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": "{{publicBaseUrl}}/youtube/videosel7desol/",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"account_name\": \"el7desol\",\n        \"channel\": \"UCTS_hF6ho1Vsjz7266Qik2w\",\n        \"date\": \"2025-12-16T07:24:12Z\",\n        \"duration\": \"1:20:16\",\n        \"id\": \"y30M5f4Pyio\",\n        \"likesCount\": 0,\n        \"previewImage\": \"https://i.ytimg.com/vi/y30M5f4Pyio/mqdefault.jpg\",\n        \"title\": \"Díaz Ayuso: Madrid es una región en la que cada persona cuenta y defendemos su desarrollo\",\n        \"videoUrl\": \"https://www.youtube.com/watch?v=y30M5f4Pyio\",\n        \"viewsCount\": 502\n    },\n    {\n        \"account_name\": \"el7desol\",\n        \"channel\": \"UCTS_hF6ho1Vsjz7266Qik2w\",\n        \"date\": \"2025-12-12T22:04:51Z\",\n        \"duration\": \"21:47\",\n        \"id\": \"6gjlgBHigZ4\",\n        \"likesCount\": 0,\n        \"previewImage\": \"https://i.ytimg.com/vi/6gjlgBHigZ4/mqdefault.jpg\",\n        \"title\": \"Díaz Ayuso: La Comunidad de Madrid es el lugar perfecto para invertir en rodajes\",\n        \"videoUrl\": \"https://www.youtube.com/watch?v=6gjlgBHigZ4\",\n        \"viewsCount\": 408\n    },\n    {\n        \"account_name\": \"el7desol\",\n        \"channel\": \"UCTS_hF6ho1Vsjz7266Qik2w\",\n        \"date\": \"2025-12-12T00:46:38Z\",\n        \"duration\": \"13:42\",\n        \"id\": \"bjeOmhGt7B4\",\n        \"likesCount\": 0,\n        \"previewImage\": \"https://i.ytimg.com/vi/bjeOmhGt7B4/mqdefault.jpg\",\n        \"title\": \"Díaz Ayuso: Celebramos 10 años de éxitos y de un modelo de convivencia basado en la libertad\",\n        \"videoUrl\": \"https://www.youtube.com/watch?v=bjeOmhGt7B4\",\n        \"viewsCount\": 610\n    },\n    {\n        \"account_name\": \"el7desol\",\n        \"channel\": \"UCTS_hF6ho1Vsjz7266Qik2w\",\n        \"date\": \"2025-12-11T00:37:49Z\",\n        \"duration\": \"41:02\",\n        \"id\": \"rp-sOnKQ4_Y\",\n        \"likesCount\": 0,\n        \"previewImage\": \"https://i.ytimg.com/vi/rp-sOnKQ4_Y/mqdefault.jpg\",\n        \"title\": \"Consejo de Gobierno. Miércoles 10 de diciembre\",\n        \"videoUrl\": \"https://www.youtube.com/watch?v=rp-sOnKQ4_Y\",\n        \"viewsCount\": 452\n    },\n    {\n        \"account_name\": \"el7desol\",\n        \"channel\": \"UCTS_hF6ho1Vsjz7266Qik2w\",\n        \"date\": \"2025-12-10T06:50:45Z\",\n        \"duration\": \"45:24\",\n        \"id\": \"RZd3SNwlKUY\",\n        \"likesCount\": 0,\n        \"previewImage\": \"https://i.ytimg.com/vi/RZd3SNwlKUY/mqdefault.jpg\",\n        \"title\": \"Inauguración del Centro de Educación Superior Alma Mater\",\n        \"videoUrl\": \"https://www.youtube.com/watch?v=RZd3SNwlKUY\",\n        \"viewsCount\": 840\n    }\n]"
                }
              ]
            },
            {
              "name": "Get Youtube Channels",
              "id": "c577a6f8-aae5-4d9e-918b-8b8a81844dbd",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/youtube/channels/{{accounts}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "youtube",
                    "channels",
                    "{{accounts}}"
                  ],
                  "variable": [
                    {
                      "key": "accounts",
                      "value": "",
                      "description": "String. [required]. ID del recurso acount."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| account | String | \\[required\\] nombre de la cuenta a solicitar |\n\nEste 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": "{{publicBaseUrl}}/youtube/channels/el7desol",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"account_name\": \"el7desol\",\n        \"icon\": \"https://yt3.ggpht.com/ytc/AIdro_mQseSgBEjDjDFM2yNpaw51hr1G-VboXzEkbesKdcoc-cA=s88-c-k-c0x00ffffff-no-rj\",\n        \"id\": \"UCTS_hF6ho1Vsjz7266Qik2w\",\n        \"title\": \"Comunidad de Madrid\"\n    }\n]"
                }
              ]
            }
          ],
          "id": "e8719019-78e7-45e8-bb1b-3956b70ab872"
        }
      ],
      "id": "28f5129b-9d80-4f2a-86dc-185bae18d0ae"
    },
    {
      "name": "Translations",
      "item": [
        {
          "name": "Translate",
          "item": [
            {
              "name": "Translate",
              "id": "5c2c25a2-448b-4ea9-93d3-e42d2102a470",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "description": "(string) [required]. Identificador del cliente.",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/translate?sentence=Hola%20mundo",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "translate"
                  ],
                  "query": [
                    {
                      "key": "sentence",
                      "value": "Hola mundo",
                      "description": "String. [required]. Texto a traducir.",
                      "type": "text"
                    }
                  ]
                },
                "description": "Traduce una frase al idioma del usuario autenticado.\n\n## Query Params\n\n| Key | Value (ejemplo) | Description |\n| --- | --- | --- |\n| sentence | Hola mundo | (string) [required]. Texto a traducir. |"
              },
              "response": [
                {
                  "id": "88453ee5-f0b6-4374-b580-5c58df784561",
                  "name": "200 OK - Translation",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "(string) [required]. Identificador del cliente.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/translate?sentence=Hola%20mundo",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "translate"
                      ],
                      "query": [
                        {
                          "key": "sentence",
                          "value": "Hola mundo",
                          "description": "String. [required]. Texto a traducir.",
                          "type": "text"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"translation\": \"Hola mundo\"\n}"
                },
                {
                  "id": "7e72d181-9e61-4883-9151-adfceeefc4e2",
                  "name": "400 Bad Request - Translation error",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "(string) [required]. Identificador del cliente.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/translate?sentence=",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "translate"
                      ],
                      "query": [
                        {
                          "key": "sentence",
                          "value": "",
                          "description": "String. [required]. Texto a traducir.",
                          "type": "text"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"code\": 400,\n    \"description\": \"Translation error: ...\"\n  }\n]"
                },
                {
                  "id": "838ee7d0-c9eb-4a66-8e6b-3e96089d3e4a",
                  "name": "401 Unauthorized",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "(string) [required]. Identificador del cliente.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/translate?sentence=Hola%20mundo",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "translate"
                      ],
                      "query": [
                        {
                          "key": "sentence",
                          "value": "Hola mundo",
                          "description": "String. [required]. Texto a traducir.",
                          "type": "text"
                        }
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"message\": \"No API token provided\"\n}"
                }
              ]
            }
          ],
          "id": "047e878e-acd3-424c-b33d-970c5d404e80"
        }
      ],
      "id": "f913c034-84eb-47f4-9021-e7b3aa09204a",
      "description": "Endpoints de traducción"
    },
    {
      "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": "{{publicBaseUrl}}/typologies?jurisdiction_element_id={{jurisdiction_element_id}}&jurisdiction_ids={{jurisdiction_id}}&lat={{latitude}}&limit={{limit}}&lng={{longitude}}&page={{page}}&typology_ids={{typologyId}}, {{typologyId}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "typologies"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_element_id",
                      "value": "{{jurisdiction_element_id}}",
                      "description": "String. [optional]. permite obtener los servicios vinculados a ese elemento, y en consecuencia las tipologías asociadas a esos servicios"
                    },
                    {
                      "key": "jurisdiction_ids",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [optional]. permite devolver las tipologías asociadas a servicios que pertenezcan a alguna de las jurisdicciones indicadas. lista separada por comas"
                    },
                    {
                      "key": "lat",
                      "value": "{{latitude}}",
                      "description": "Float. [optional]. Coordenada de latitud geográfica."
                    },
                    {
                      "key": "limit",
                      "value": "{{limit}}",
                      "description": "Integer. [optional]. Permite definir el limite de cada página de resultados. Por defecto es 90"
                    },
                    {
                      "key": "lng",
                      "value": "{{longitude}}",
                      "description": "Float. [optional]. Coordenada de longitud geográfica."
                    },
                    {
                      "key": "page",
                      "value": "{{page}}",
                      "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"
                    },
                    {
                      "key": "typology_ids",
                      "value": "{{typologyId}}, {{typologyId}}",
                      "description": "String. [optional]. permite devolver las tipologías asociadas a servicios cuya tipología coincida con alguno de los IDs indicados."
                    }
                  ]
                },
                "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": "{{publicBaseUrl}}/typologies?jurisdiction_ids={{jurisdiction_id}}&jurisdiction_element_id={{jurisdiction_element_id}}&typology_ids={{typology_ids}}&lng={{longitude}}&lat={{latitude}}&page={{page}}&limit={{limit}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "typologies"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}",
                          "description": "[optional] Permite obtener los subproyectos a partir de los Ids separados por comas de un proyecto.\n\n\n\n\n"
                        },
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}",
                          "description": "[optional] Permite obtener un único subproyecto utilizando su identificador único de mongo.\n\n\n\n\n\n"
                        },
                        {
                          "key": "typology_ids",
                          "value": "{{typology_ids}}",
                          "description": "[optional] Permite obtener las tipologías a partir de los Ids de mongo separados por comas de un proyecto.\n\n\n\n\n\n\n"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}",
                          "description": "[optional] Coordenada de longitud geográfica.\n\n\n\n\n\n"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}",
                          "description": "[optional] Coordenada de latitud geográfica.\n\n\n\n\n\n\n"
                        },
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "description": "[optional]. Permite definir el limite de cada página de resultados. Por defecto es 90\n"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n        \"related_typologies\": [\n            {\n                \"id\": \"5a8e9d664e4ea8bf018b4567\",\n                \"visible_name\": \"Aviso\"\n            },\n            {\n                \"id\": \"66ee2414967b5ac8010cfaa3\",\n                \"visible_name\": \"Infraestructuras\"\n            }\n        ],\n        \"recategorizable_typologies\": [\n            {\n                \"id\": \"66ee2414967b5ac8010cfaa3\",\n                \"visible_name\": \"Infraestructuras\"\n            },\n            {\n                \"id\": \"5a8e9d664e4ea8bf018b4567\",\n                \"visible_name\": \"Aviso\"\n            }\n        ],\n        \"id\": \"5a8e9d664e4ea8bf018b4567\",\n        \"color\": \"#ecb113\",\n        \"description_legend\": \"Por ejemplo: una farola fundida, un bache en la acera, una rama caída…\",\n        \"icon\": \"https://core-pgics.sevilla.org/uploads/sevilla_pro/typology_icons/5b30a87b38e70.png\",\n        \"location_type\": \"geolocation\",\n        \"name\": \"aviso\",\n        \"order\": 1,\n        \"public\": true,\n        \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n        \"visible_name\": \"Aviso\",\n        \"with_authorized_users\": false,\n        \"with_description\": true,\n        \"with_files\": true,\n        \"with_geolocation_data\": true,\n        \"with_medias\": true,\n        \"with_temporality_data\": true\n    }"
                },
                {
                  "id": "8a847888-bd60-454c-adb2-bef962c6eca4",
                  "name": "Typologies Invalid Form",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/typologies?jurisdiction_ids={{jurisdiction_id}}&jurisdiction_element_id={{jurisdiction_element_id}}&typology_ids={{typology_ids}}&lng={{longitude}}&lat={{latitude}}&page={{page}}&limit={{limit}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "typologies"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}"
                        },
                        {
                          "key": "typology_ids",
                          "value": "{{typology_ids}}"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}"
                        },
                        {
                          "key": "page",
                          "value": "{{page}}"
                        },
                        {
                          "key": "limit",
                          "value": "{{limit}}"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 400,\n  \"message\": \"Invalid form\"\n}\n"
                },
                {
                  "id": "9dd8ca78-1e1d-403f-b0ab-a29743979026",
                  "name": "Typologies Zones Not Fount",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/typologies?jurisdiction_ids={{jurisdiction_id}}&jurisdiction_element_id={{jurisdiction_element_id}}&typology_ids={{typology_ids}}&lng={{longitude}}&lat={{latitude}}&page={{page}}&limit={{limit}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "typologies"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}",
                          "description": "[optional] Permite obtener los subproyectos a partir de los Ids separados por comas de un proyecto.\n\n\n\n\n"
                        },
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}",
                          "description": "[optional] Permite obtener un único subproyecto utilizando su identificador único de mongo.\n\n\n\n\n\n"
                        },
                        {
                          "key": "typology_ids",
                          "value": "{{typology_ids}}",
                          "description": "[optional] Permite obtener las tipologías a partir de los Ids de mongo separados por comas de un proyecto.\n\n\n\n\n\n\n"
                        },
                        {
                          "key": "lng",
                          "value": "{{longitude}}",
                          "description": "[optional] Coordenada de longitud geográfica.\n\n\n\n\n\n"
                        },
                        {
                          "key": "lat",
                          "value": "{{latitude}}",
                          "description": "[optional] Coordenada de latitud geográfica.\n\n\n\n\n\n\n"
                        },
                        {
                          "key": "page",
                          "value": "{{page}}",
                          "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": "{{limit}}",
                          "description": "[optional]. Permite definir el limite de cada página de resultados. Por defecto es 90\n"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 400,\n        \"description\": \"No zones found for provided coordinates\"\n    }\n]"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/me/typologies?jurisdiction_element_id={{jurisdiction_element_id}}&jurisdiction_ids={{jurisdiction_id}}&lat={{latitude}}&limit={{limit}}&lng={{longitude}}&page={{page}}&typology_ids={{typologyId}}, {{typologyId}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "typologies"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_element_id",
                      "value": "{{jurisdiction_element_id}}",
                      "description": "String. [optional]. permite obtener los servicios vinculados a ese elemento, y en consecuencia las tipologías asociadas a esos servicios"
                    },
                    {
                      "key": "jurisdiction_ids",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [optional]. permite devolver las tipologías asociadas a servicios que pertenezcan a alguna de las jurisdicciones indicadas. lista separada por comas"
                    },
                    {
                      "key": "lat",
                      "value": "{{latitude}}",
                      "description": "Float. [optional]. Coordenada de latitud geográfica."
                    },
                    {
                      "key": "limit",
                      "value": "{{limit}}",
                      "description": "Integer. [optional]. Permite definir el limite de cada página de resultados. Por defecto es 90"
                    },
                    {
                      "key": "lng",
                      "value": "{{longitude}}",
                      "description": "Float. [optional]. Coordenada de longitud geográfica."
                    },
                    {
                      "key": "page",
                      "value": "{{page}}",
                      "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"
                    },
                    {
                      "key": "typology_ids",
                      "value": "{{typologyId}}, {{typologyId}}",
                      "description": "String. [optional]. permite devolver las tipologías asociadas a servicios cuya tipología coincida con alguno de los IDs indicados."
                    }
                  ]
                },
                "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.\n\nEs un alias de**:** [GET /typologies](#tag/Typology-greater-Typology/operation/getTypologies)  \nAmbos 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": "{{publicBaseUrl}}/me/typologies",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"related_typologies\": [\n            {\n                \"id\": \"5a8e9d664e4ea8bf018b4567\",\n                \"visible_name\": \"Aviso\"\n            },\n            {\n                \"id\": \"66ee2414967b5ac8010cfaa3\",\n                \"visible_name\": \"Infraestructuras\"\n            }\n        ],\n        \"recategorizable_typologies\": [\n            {\n                \"id\": \"66ee2414967b5ac8010cfaa3\",\n                \"visible_name\": \"Infraestructuras\"\n            },\n            {\n                \"id\": \"5a8e9d664e4ea8bf018b4567\",\n                \"visible_name\": \"Aviso\"\n            }\n        ],\n        \"id\": \"5a8e9d664e4ea8bf018b4567\",\n        \"color\": \"#ecb113\",\n        \"description_legend\": \"Por ejemplo: una farola fundida, un bache en la acera, una rama ca\\u00edda\\u2026\",\n        \"icon\": \"https://core-pgics.sevilla.org/uploads/sevilla_pro/typology_icons/5b30a87b38e70.png\",\n        \"location_type\": \"geolocation\",\n        \"name\": \"aviso\",\n        \"order\": 1,\n        \"public\": true,\n        \"typology_description\": \"Tengo un problema con un elemento de la ciudad\",\n        \"visible_name\": \"Aviso\",\n        \"with_authorized_users\": false,\n        \"with_description\": true,\n        \"with_files\": true,\n        \"with_geolocation_data\": true,\n        \"with_medias\": true,\n        \"with_temporality_data\": true\n    }"
                },
                {
                  "id": "81f8ecac-975e-4225-934f-5716d30d55cf",
                  "name": "Me Typologies Invalid Form",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/typologies",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n  \"code\": 400,\n  \"message\": \"Invalid form\"\n}\n"
                }
              ]
            }
          ],
          "id": "b08b13b2-97e2-4da3-8c24-fee256cf6e59",
          "description": " "
        }
      ],
      "id": "d507f3e7-2cb1-4279-9efc-2548157e9416",
      "description": " "
    },
    {
      "name": "User",
      "item": [
        {
          "name": "User",
          "item": [
            {
              "name": "Get Profile Me",
              "id": "acc1b6f9-fa29-4119-a1ae-8d6ddc597c52",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/me",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me"
                  ]
                },
                "description": "Este endpoint permite **obtener el perfil del usuario autenticado**. Es un alias de `/profile` y retorna la misma información del usuario actual.\n\n**Autenticación requerida:** Bearer token (ROLE_USER)"
              },
              "response": [
                {
                  "id": "b6ac4d07-7eac-4e07-8cf3-d2875e7d8ca5",
                  "name": "Get Profile Me OK",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"id\": \"507f1f77bcf86cd799439011\",\n  \"username\": \"john.doe\",\n  \"nickname\": \"john.doe\",\n  \"email\": \"john.doe@example.com\",\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"gender\": \"male\",\n  \"birthday\": \"1990-05-15T00:00:00+00:00\",\n  \"phone\": \"+34612345678\",\n  \"locale\": \"es\",\n  \"avatar\": \"https://example.com/avatars/user123.jpg\",\n  \"idDocument\": \"12345678A\",\n  \"idDocuments\": [\n    {\n      \"type\": \"NIF\",\n      \"number\": \"12345678A\"\n    }\n  ],\n  \"main_address\": {\n    \"street\": \"Calle Mayor\",\n    \"number\": \"10\",\n    \"city\": \"Madrid\",\n    \"postal_code\": \"28001\",\n    \"country\": \"ES\"\n  },\n  \"address\": \"Calle Mayor 10, Madrid 28001\",\n  \"addresses\": [],\n  \"registeredAddress\": null,\n  \"channels\": [],\n  \"notificationChannels\": [],\n  \"devices\": [],\n  \"appEvaluations\": [],\n  \"configuration\": {\n    \"notifications_enabled\": true\n  },\n  \"twitter_nickname\": null,\n  \"telegram_id\": null,\n  \"anonymous\": false,\n  \"stronglyIdentified\": false,\n  \"hasPassword\": true\n}"
                },
                {
                  "id": "87515c59-65ec-4e0e-af97-45ef799ccec3",
                  "name": "Get Profile Me Unauthorized",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me"
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 401,\n  \"message\": \"Access Denied\"\n}"
                }
              ]
            },
            {
              "name": "listMySubscribedTopics",
              "id": "55c18382-cc47-46be-93e4-c6fcbcdc4cef",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "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": "{{publicBaseUrl}}/me/topics",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "topics"
                  ]
                },
                "description": "Este endpoint permite **listar los topics suscritos** del usuario autenticado.\n\nRuta: `GET /public-api/me/topics`.\n\nAutenticación requerida: `Authorization: Bearer {{token_public}}` y `X-CLIENT-ID: {{clientId}}`.\n\nNo requiere parámetros de path, query ni body."
              },
              "response": [
                {
                  "id": "29c848c7-5e37-4e27-9c95-eccd97c53a4b",
                  "name": "listMySubscribedTopics - OK",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "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": "fc3875e5-cd4f-4c6b-b146-f32aeb06982f"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/topics",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "topics"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  \"topic_global\",\n  \"topic_jurisdiction_123\",\n  \"topic_channel_456\"\n]"
                },
                {
                  "id": "c2e3de56-22d3-46ea-8d26-eb9f98c14360",
                  "name": "listMySubscribedTopics - Unauthorized",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "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": "fc3875e5-cd4f-4c6b-b146-f32aeb06982f"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/topics",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "topics"
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 401,\n  \"message\": \"Access Denied\"\n}"
                },
                {
                  "id": "823851cc-09d0-476f-b667-bb862932925f",
                  "name": "listMySubscribedTopics - Forbidden",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "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": "fc3875e5-cd4f-4c6b-b146-f32aeb06982f"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/topics",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "topics"
                      ]
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 403,\n  \"message\": \"Access Denied\"\n}"
                }
              ]
            },
            {
              "name": "Get Profile",
              "id": "d5a32987-a1e4-4a25-9252-098e5d32b90a",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/profile",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "profile"
                  ]
                },
                "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"
              },
              "response": [
                {
                  "id": "c7c381bd-cee7-4517-a99f-d97215850460",
                  "name": "Get Profile OK",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/profile",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "profile"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"id\": \"507f1f77bcf86cd799439011\",\n  \"username\": \"usuario_ejemplo\",\n  \"email\": \"usuario@ejemplo.com\",\n  \"first_name\": \"Juan\",\n  \"last_name\": \"P\\u00e9rez\",\n  \"nickname\": \"Juan P.\",\n  \"phone\": \"+34612345678\",\n  \"avatar\": \"https://s3.amazonaws.com/avatars/user123.jpg\",\n  \"locale\": \"es\",\n  \"gender\": \"male\",\n  \"birthday\": \"1990-01-15\",\n  \"main_address\": {\n    \"street\": \"Calle Principal 123\",\n    \"city\": \"Madrid\",\n    \"postal_code\": \"28001\",\n    \"country\": \"Espa\\u00f1a\"\n  },\n  \"addresses\": [\n    {\n      \"street\": \"Calle Principal 123\",\n      \"city\": \"Madrid\",\n      \"postal_code\": \"28001\"\n    }\n  ],\n  \"channels\": [],\n  \"notification_channels\": [],\n  \"devices\": [],\n  \"app_evaluations\": [],\n  \"id_documents\": [],\n  \"hasPassword\": true,\n  \"gdpr_consent\": true,\n  \"security_configuration\": null\n}"
                },
                {
                  "id": "d903bd8e-55ad-4830-aa1e-94b0f1562f6d",
                  "name": "Get Profile Unauthorized",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/profile",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "profile"
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"message\": \"Access Denied\"\n}"
                }
              ]
            },
            {
              "name": "Add Favorite POI",
              "id": "2a9990e4-2c10-4b5d-be80-2b90e2e85e75",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "description": "String. [required]. Client ID de tipo open010_client.",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/me/favorite-poi?layerId=layer-123&poiId=poi-456",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "favorite-poi"
                  ],
                  "query": [
                    {
                      "key": "layerId",
                      "value": "layer-123",
                      "description": "String. [required]. ID de la capa (MapLayer) de tipo POI.",
                      "type": "text"
                    },
                    {
                      "key": "poiId",
                      "value": "poi-456",
                      "description": "String. [required]. ID del POI dentro de la capa.",
                      "type": "text"
                    }
                  ]
                },
                "description": "Añade un punto de interés (POI) a la lista de favoritos del usuario autenticado.\n\n# Query Params\n\n| Key | Value (ejemplo) | Description |\n| --- | --- | --- |\n| layerId | layer-123 | String. [required]. ID de la capa (MapLayer) de tipo POI. |\n| poiId | poi-456 | String. [required]. ID del POI dentro de la capa. |"
              },
              "response": [
                {
                  "id": "5b724baa-c912-4852-be16-ab2278b43dd2",
                  "name": "Add Favorite POI 200 OK",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "String. [required]. Client ID de tipo open010_client.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/favorite-poi?layerId=layer-123&poiId=poi-456",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "favorite-poi"
                      ],
                      "query": [
                        {
                          "key": "layerId",
                          "value": "layer-123"
                        },
                        {
                          "key": "poiId",
                          "value": "poi-456"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{}"
                },
                {
                  "id": "774e904a-b197-4c83-8ec5-4d0ae77a44f1",
                  "name": "Add Favorite POI 401 Unauthorized",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "String. [required]. Client ID de tipo open010_client.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/favorite-poi?layerId=layer-123&poiId=poi-456",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "favorite-poi"
                      ],
                      "query": [
                        {
                          "key": "layerId",
                          "value": "layer-123"
                        },
                        {
                          "key": "poiId",
                          "value": "poi-456"
                        }
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"message\": \"Authentication Required\"\n}"
                },
                {
                  "id": "a6c2f5e1-79f7-4f25-a889-3e4a8f4d9af1",
                  "name": "Add Favorite POI 404 MapLayer Not Found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "String. [required]. Client ID de tipo open010_client.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/favorite-poi?layerId=invalid-layer&poiId=poi-456",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "favorite-poi"
                      ],
                      "query": [
                        {
                          "key": "layerId",
                          "value": "invalid-layer"
                        },
                        {
                          "key": "poiId",
                          "value": "poi-456"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"code\": 404,\n    \"description\": \"No POI MapLayer found\"\n  }\n]"
                },
                {
                  "id": "f4deed01-8a4a-4d6d-bdf3-23f8908f99e1",
                  "name": "Add Favorite POI 404 POI Not Found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "String. [required]. Client ID de tipo open010_client.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/favorite-poi?layerId=layer-123&poiId=invalid-poi",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "favorite-poi"
                      ],
                      "query": [
                        {
                          "key": "layerId",
                          "value": "layer-123"
                        },
                        {
                          "key": "poiId",
                          "value": "invalid-poi"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"code\": 404,\n    \"description\": \"POI not found.\"\n  }\n]"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/user/jurisdiction-element-channels/{{jurisdiction_element_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "user",
                    "jurisdiction-element-channels",
                    "{{jurisdiction_element_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_element_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso jurisdiction element id."
                    }
                  ]
                },
                "description": "**Request Params**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_element_id | String | \\[required\\] Este campo corresponde al ID de MongoDB del jurisdictionElement del cual se desean obtener los canales. |\n\nEste 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": "{{publicBaseUrl}}/user/jurisdiction-element-channels/{{id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "user",
                        "jurisdiction-element-channels",
                        "{{id}}"
                      ]
                    }
                  },
                  "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": "{\n        \"channel\": {\n            \"category\": \"interest\",\n            \"external\": true,\n            \"id\": \"670cc9fbbdb73a4bfca75607\",\n            \"jurisdictions\": [\n                {}\n            ],\n            \"name\": \"Canal1 Publico\",\n            \"order\": 0,\n            \"self_assignable\": false,\n            \"visible\": false\n        },\n        \"is_notification\": true\n    }"
                },
                {
                  "id": "3c2b7c28-31c5-4409-b80c-605136f4c3eb",
                  "name": "Get Jurisdiction Element Channels User Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/jurisdiction-element-channels/{{id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "user",
                        "jurisdiction-element-channels",
                        "{{id}}"
                      ]
                    }
                  },
                  "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": "{\n    \"error_code\": 404,\n    \"error_msg\": \"Object not found\"\n}"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/me/jurisdiction-element-channels/{{jurisdiction_element_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "jurisdiction-element-channels",
                    "{{jurisdiction_element_id}}"
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_element_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso jurisdiction element id."
                    }
                  ]
                },
                "description": "**Request Params**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_element_id | String | \\[required\\] Este campo corresponde al ID de MongoDB del jurisdictionElement del cual se desean obtener los canales. |\n\nEste 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.\n\nEs un alias de**:** [GET /user/jurisdiction-element-channels/{{jurisdiction_element_id}}](#tag/User-greater-User/operation/getUserJurisdictionElementChannels)  \nAmbos 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": "{{publicBaseUrl}}/me/jurisdiction-element-channels/{{jurisdiction_element_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"channel\": {\n            \"category\": \"interest\",\n            \"external\": true,\n            \"id\": \"670cc9fbbdb73a4bfca75607\",\n            \"jurisdictions\": [\n                {}\n            ],\n            \"name\": \"Canal1 Publico\",\n            \"order\": 0,\n            \"self_assignable\": false,\n            \"visible\": false\n        },\n        \"is_notification\": true\n    }"
                },
                {
                  "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": "{{publicBaseUrl}}/me/jurisdiction-element-channels/{{jurisdiction_element_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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.\n\nEs un alias de**:** [GET /user/jurisdiction-element-channels/{{jurisdiction_element_id}}](#tag/User-greater-User/operation/getUserJurisdictionElementChannels)  \nAmbos 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": "{\n    \"error_code\": 404,\n    \"error_msg\": \"Object not found\"\n}"
                }
              ]
            },
            {
              "name": "List User Channels",
              "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/user/channels",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "user",
                    "channels"
                  ]
                },
                "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."
              },
              "response": [
                {
                  "id": "f255a942-7cb5-4abd-9831-a7360bdf93eb",
                  "name": "List User Channels OK",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/channels",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "user",
                        "channels"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"channel\": {\n      \"id\": \"507f1f77bcf86cd799439011\",\n      \"name\": \"Medio Ambiente\",\n      \"description\": \"Canal de notificaciones ambientales\",\n      \"visible\": true,\n      \"self_assignable\": true\n    },\n    \"is_notification\": true,\n    \"selected\": true\n  },\n  {\n    \"channel\": {\n      \"id\": \"507f1f77bcf86cd799439012\",\n      \"name\": \"Seguridad Ciudadana\",\n      \"description\": \"Canal de alertas de seguridad\",\n      \"visible\": true,\n      \"self_assignable\": true\n    },\n    \"is_notification\": false,\n    \"selected\": true\n  },\n  {\n    \"channel\": {\n      \"id\": \"507f1f77bcf86cd799439013\",\n      \"name\": \"Movilidad\",\n      \"description\": \"Canal de tráfico y transporte\",\n      \"visible\": true,\n      \"self_assignable\": true\n    },\n    \"is_notification\": true,\n    \"selected\": false\n  }\n]"
                },
                {
                  "id": "c3d4e5f6-a7b8-9012-cdef-345678901234",
                  "name": "List User Channels Unauthorized",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/channels",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "user",
                        "channels"
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"message\": \"Authentication Required\"\n}"
                },
                {
                  "id": "d4e5f6a7-b8c9-0123-defa-456789012345",
                  "name": "List User Channels Forbidden",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/channels",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "user",
                        "channels"
                      ]
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"error_code\": 403,\n  \"error_msg\": \"Access Denied\"\n}"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/me/device/{{device_id}}/ping?app_key={{app_key}}&haste=true&tz=America%2FBogota",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "device",
                    "{{device_id}}",
                    "ping"
                  ],
                  "query": [
                    {
                      "key": "app_key",
                      "value": "1001",
                      "description": "Integer. [optional]. Clave de la aplicación asociada al dispositivo."
                    },
                    {
                      "key": "haste",
                      "value": "true",
                      "description": "Boolean. [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."
                    }
                  ],
                  "variable": [
                    {
                      "key": "device_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso device id."
                    }
                  ]
                },
                "description": "**Request Params**\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| device_id | String | \\[required\\] ID del dispositivo a pingear. |\n\nEste 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": "{{publicBaseUrl}}/me/device/{{device_id}}/ping?app_key={{app_key}}&haste=true&tz=America%2FBogota",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"id\": \"68a75a9abf426bbabd0644af\",\n    \"hasPassword\": true,\n    \"username\": \"d.solicitante.pgiba\",\n    \"nickname\": \"Solicitante de PGIBA\",\n    \"user_companies\": [\n        {\n            \"alias\": \"Agrupación Base Aérea\",\n            \"id\": \"68893d192e776a8e96017542\",\n            \"name\": \"PGIBA-BACV-ABA\"\n        }\n    ],\n    \"preferences\": {\n        \"map_layer_list\": [\n            {\n                \"active\": false,\n                \"map_layer\": {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67069e56c7ae6500d401b6bf\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"display_properties\": \"%description%\",\n                    \"editable_data\": false,\n                    \"editable_geometry\": false,\n                    \"internal_name\": \"buildings:bacsi_bacv_GU_B_geocode\",\n                    \"internally_visible\": true,\n                    \"name\": \"Complejo y edificios\",\n                    \"description\": \"Complejo y edificios\",\n                    \"path_updated\": false,\n                    \"preset\": false,\n                    \"public\": false,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"WORK\"\n                }\n            }\n        ]\n    },\n    \"is_admin\": false,\n    \"origin_create\": [],\n    \"additional_data\": [],\n    \"first_name\": \"Solicitante\",\n    \"last_name\": \"Prueba PGIBA\",\n    \"locale\": \"es\",\n    \"avatar\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68a748d869aaa892718960.png\",\n    \"user_groups\": [\n        {\n            \"jurisdiction_id\": \"es.bacsi\",\n            \"alias\": \"Solicitantes Mesa\",\n            \"group_type\": \"applicant\",\n            \"id\": \"68a75208bf426bbabd06449b\",\n            \"name\": \"Grp_PGIBA-BACV-ABA_solicitantes_mesa\"\n        }\n    ],\n    \"permissions\": {\n        \"es.bacsi\": [\n            \"REQUESTS_COMMENTS_ACCESS_MODULE\",\n            \"REQUESTS_COMMENTS_CREATE\",\n            \"REQUESTS_COMMENTS_MEDIAS\",\n            \"COMMENTS_FREE_TEXT\",\n            \"USER_EVALUATION_ACCESS_MODULE\",\n            \"USER_EVALUATION_CREATE\",\n            \"NOTIFICATIONS_ACCESS_MODULE\",\n            \"REQUESTS_ACCESS_MODULE\",\n            \"REQUESTS_CREATE\",\n            \"REQUESTS_GENERATE_TICKET\",\n            \"REQUESTS_EMAIL_TICKET\",\n            \"REQUESTS_ADD_INTERNAL_INFORMANT\"\n        ]\n    }\n}"
                },
                {
                  "id": "84755cf6-d5fa-4415-9a39-a31bfbeb7b25",
                  "name": "Ping Device Not Exist",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/device/{{device_id}}/ping?app_key={{app_key}}&haste=true&tz=America%2FBogota",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"Error pinging a Device from user whatsapp:+573228958456. Device with device_id: 7a437be70f854a7d does NOT exist\"\n    }\n]"
                }
              ]
            },
            {
              "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": "{\n    \"rating\": 4,\n    \"comment\": \"La app funciona muy bien\",\n    \"app_key\": \"14\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/me/app_evaluation",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "app_evaluation"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| app_key | String | \\[required\\]. ID de la app que se quiere evaluar. |\n| comment | String | \\[required\\]. Comentario del usuario sobre la app. |\n| rating | Integer | \\[required\\]. Calificación de la app, suele estar en una escala. |\n\nEste 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": "{\n    \"rating\": 4,\n    \"comment\": \"La app funciona muy bien\",\n    \"app_key\": \"14\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/app_evaluation",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"rating\": 4,\n    \"comment\": \"La app funciona muy bien\",\n    \"app_key\": \"14\"\n}"
                },
                {
                  "id": "dee352b7-c34b-492a-95b6-04ef71e85ef7",
                  "name": "Error User Was Not Found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"rating\": 4,\n    \"comment\": \"La app funciona muy bien\",\n    \"app_key\": \"14\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/app_evaluation",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n  \"code\": 403,\n  \"message\": \"User was not found\"\n}\n"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/profile/avatar",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "{{publicBaseUrl}}/profile/avatar",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n  \"code\": 400,\n  \"message\": \"Image file required\"\n}\n"
                },
                {
                  "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": "{{publicBaseUrl}}/profile/avatar",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "profile",
                        "avatar"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "cookie": [],
                  "body": "{\n    \"hasPassword\": false,\n    \"main_address\": {},\n    \"addresses\": [],\n    \"app_evaluations\": [],\n    \"avatar\": \"https://s3.eu-west-1.amazonaws.com/static.lab.open010.org/avatars/68c09867d54ed.png\",\n    \"channels\": [\n        {}\n    ],\n    \"configuration\": {\n        \"app_notification\": {\n            \"alerts\": true,\n            \"comments\": true,\n            \"follows\": true,\n            \"requests\": true\n        },\n        \"email_notification\": {\n            \"alerts\": true,\n            \"comments\": true,\n            \"follows\": true,\n            \"requests\": true\n        }\n    },\n    \"devices\": [],\n    \"email\": \"daniel.sanchez@gopenux.com\",\n    \"first_name\": \"Daniel Felipe\",\n    \"id\": \"68af282bcfba85a93c09a573\",\n    \"id_documents\": [],\n    \"last_name\": \"Sanchez Ortega\",\n    \"nickname\": \"daniel.sanchez\",\n    \"notification_channels\": [],\n    \"strongly_identified\": false,\n    \"username\": \"daniel.sanchez\",\n    \"anonymous\": false,\n    \"jurisdiction_element_channels\": []\n}"
                }
              ]
            },
            {
              "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": "{\n    \"last_geofences\" : [\n        \"my_layer.12\",\n        \"my_layer.35\"\n    ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/me/last-geofences/{{device_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "last-geofences",
                    "{{device_id}}"
                  ],
                  "variable": [
                    {
                      "key": "device_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso device id."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| last_geofences | array | [required]  <br>Array de identificadores de geofences visitadas por el usuario. |\n\nPermite 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**\n\n| **Campo** | **Descripción** |\n| --- | --- |\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": "{\n    \"last_geofences\" : [\n        \"my_layer.12\",\n        \"my_layer.35\"\n    ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/last-geofences/{{geofence_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "last-geofences",
                        "{{geofence_id}}"
                      ]
                    }
                  },
                  "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": "{\n    \"full_name\": \"pepito perez\",\n    \"additional_data\": [],\n    \"email\": \"pepito@mock.com\",\n    \"first_name\": \"pepito\",\n    \"id\": \"6563767ac68c18fb4107a202\",\n    \"last_name\": \"perez\",\n    \"nickname\": \"9rq865xbkb\",\n    \"phone\": \"30112345678\"\n}"
                },
                {
                  "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": "{\n    \"last_geofences\" : [\n        \"my_layer.12\",\n        \"my_layer.35\"\n    ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/last-geofences/{{geofence_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "last-geofences",
                        "{{geofence_id}}"
                      ]
                    }
                  },
                  "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": "{\n    \"error_code\": 404,\n    \"error_msg\": \"Object not found\"\n}"
                }
              ]
            },
            {
              "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": "{\n    \"device_id\": \"{{deviceUuid}}\",\n    \"type\": \"ios\",\n    \"registration_id\": \"ej5zEduBrEM-vdXGrdkJ-i:APA91bGAOC1l0xWDCNBhpydLztZYTLUvz9zduLkOTYsbZ74CUknsPB_1kmsUToSm3JXlgyiV7Ga8P3aZeYCUA9jUdkrfWPBx02Y7T-xX0ItBpRfRx8oF7Rw\",\n    \"app_key\": \"{{app_key}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/me/device",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "device"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| app_key | String | \\[required\\]. Aplicación asociada al dispositivo. |\n| device_id | String | \\[required\\]. ID del dispositivo. |\n| registration_id | String | \\[required\\]. ID del registro asociada al dispositivo. |\n| type | Int | \\[required\\]. Tipo de dispositivo. |\n\nEste 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": "{\n    \"device_id\": \"{{deviceUuid}}\",\n    \"type\": \"ios\",\n    \"registration_id\": \"ej5zEduBrEM-vdXGrdkJ-i:APA91bGAOC1l0xWDCNBhpydLztZYTLUvz9zduLkOTYsbZ74CUknsPB_1kmsUToSm3JXlgyiV7Ga8P3aZeYCUA9jUdkrfWPBx02Y7T-xX0ItBpRfRx8oF7Rw\",\n    \"app_key\": \"{{app_key}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/device",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"id\": \"68a75a9abf426bbabd0644af\",\n    \"hasPassword\": true,\n    \"username\": \"d.solicitante.pgiba\",\n    \"nickname\": \"Solicitante de PGIBA\",\n    \"user_companies\": [\n        {\n            \"alias\": \"Agrupación Base Aérea\",\n            \"id\": \"68893d192e776a8e96017542\",\n            \"name\": \"PGIBA-BACV-ABA\"\n        }\n    ],\n    \"preferences\": {\n        \"map_layer_list\": [\n            {\n                \"active\": false,\n                \"map_layer\": {\n                    \"backend\": \"OWS\",\n                    \"endpoint\": \"https://gis-pre.mejoratuciudad.org/geoserver\",\n                    \"id\": \"67069e56c7ae6500d401b6bf\",\n                    \"is_default\": false,\n                    \"color\": \"#000000\",\n                    \"display_properties\": \"%description%\",\n                    \"editable_data\": false,\n                    \"editable_geometry\": false,\n                    \"internal_name\": \"buildings:bacsi_bacv_GU_B_geocode\",\n                    \"internally_visible\": true,\n                    \"name\": \"Complejo y edificios\",\n                    \"description\": \"Complejo y edificios\",\n                    \"path_updated\": false,\n                    \"preset\": false,\n                    \"public\": false,\n                    \"tags\": [],\n                    \"token\": \"489780ae-39e0-40bf-93e3-57565431454a\",\n                    \"type\": \"WORK\"\n                }\n            }\n        ]\n    },\n    \"is_admin\": false,\n    \"origin_create\": [],\n    \"additional_data\": [],\n    \"first_name\": \"Solicitante\",\n    \"last_name\": \"Prueba PGIBA\",\n    \"locale\": \"es\",\n    \"avatar\": \"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68a748d869aaa892718960.png\",\n    \"user_groups\": [\n        {\n            \"jurisdiction_id\": \"es.bacsi\",\n            \"alias\": \"Solicitantes Mesa\",\n            \"group_type\": \"applicant\",\n            \"id\": \"68a75208bf426bbabd06449b\",\n            \"name\": \"Grp_PGIBA-BACV-ABA_solicitantes_mesa\"\n        }\n    ],\n    \"permissions\": {\n        \"es.bacsi\": [\n            \"REQUESTS_COMMENTS_ACCESS_MODULE\",\n            \"REQUESTS_COMMENTS_CREATE\",\n            \"REQUESTS_COMMENTS_MEDIAS\",\n            \"COMMENTS_FREE_TEXT\",\n            \"USER_EVALUATION_ACCESS_MODULE\",\n            \"USER_EVALUATION_CREATE\",\n            \"NOTIFICATIONS_ACCESS_MODULE\",\n            \"REQUESTS_ACCESS_MODULE\",\n            \"REQUESTS_CREATE\",\n            \"REQUESTS_GENERATE_TICKET\",\n            \"REQUESTS_EMAIL_TICKET\",\n            \"REQUESTS_ADD_INTERNAL_INFORMANT\"\n        ]\n    }\n}"
                },
                {
                  "id": "18daa633-ccac-4588-b320-0ed992c3027f",
                  "name": "Add Device Invalid Json",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"device_id\": \"{{deviceUuid}}\",\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/device",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"error\": {\n        \"code\": 400,\n        \"message\": \"Invalid json message received\"\n    }\n}"
                },
                {
                  "id": "9c295f38-b8c2-4eb8-8dc0-2e6575a081d5",
                  "name": "Add Device Failed",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"device_id\": \"{{deviceUuid}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/device",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"error_code\": 1001,\n    \"error_msg\": \"Attempting to add a new Device failed\",\n    \"extra_data\": {\n        \"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;    \",\n        \"errors\": [\n            {\n                \"field\": \"\",\n                \"message\": \"A Device must have at least an Id, Registration, Type and App_key\",\n                \"parameters\": \"\"\n            },\n            {\n                \"field\": \"registration_id\",\n                \"message\": \"Este valor no debería estar vacío.\",\n                \"parameters\": \"null\"\n            },\n            {\n                \"field\": \"app_key\",\n                \"message\": \"application was not provided\",\n                \"parameters\": \"null\"\n            }\n        ]\n    }\n}"
                }
              ]
            },
            {
              "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": "{\n    \"channels\" : {\n        \"{{objectId}}\" : [\"Canal1 Publico\",\"Canal2 Publico\"]\n    }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/user/edit-jurisdiction-element-channels",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "user",
                    "edit-jurisdiction-element-channels"
                  ]
                },
                "description": "Permite a un usuario externo modificar los canales que tiene activos para un jurisdictionElement concreto.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\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": "{\n    \"channels\" : {\n        \"5c9b5c80e13a48ed37bc0989\" : [\"Canal1 Publico\",\"Canal2 Publico\"]\n    }\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/edit-jurisdiction-element-channels",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"jurisdiction_element_channels\": {\n        \"5c9b5c80e13a48ed37bc0989\": {\n            \"670cc9fbbdb73a4bfca75607\": true,\n            \"670ccbc4bdb73a4bfca75608\": true\n        }\n    }\n}"
                },
                {
                  "id": "7442b1e6-eba5-451b-95c0-b6cf6eddcf3f",
                  "name": "Error User Does Not Belong to JurisdictionElement",
                  "originalRequest": {
                    "method": "PATCH",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"channels\" : {\n        \"5c9b5c80e13a48ed37bc0989\" : [\"Canal1 Publico\",\"Canal2 Publico\"]\n    }\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/edit-jurisdiction-element-channels",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 400,\n        \"description\": \"Channel 670cc9fbbdb73a4bfca75607 is not in given jurisdictionElement 5c9b5c80e13a48ed37bc0989\"\n    }"
                },
                {
                  "id": "0af253f3-3803-4492-8efd-f83224cad5dd",
                  "name": "Error User Not in Jurisdiction",
                  "originalRequest": {
                    "method": "PATCH",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"channels\" : {\n        \"5c9b5c80e13a48ed37bc0989\" : [\"Canal1 Publico\",\"Canal2 Publico\"]\n    }\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/edit-jurisdiction-element-channels",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n        \"code\": 400,\n        \"description\": \"User does not belong to jurisdictionElement's Jurisdiction\"\n    }"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/me/jurisdiction-element-channels/edit",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "jurisdiction-element-channels",
                    "edit"
                  ]
                },
                "description": "Este endpoint permite al usuario autenticado actualizar los canales asociados a sus elementos de jurisdicción.\n\nEs un alias de**:** [PATCH /user/edit-jurisdiction-element-channels](#tag/User-greater-User/operation/editUserJurisdictionElementChannels)  \nAmbos 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": "{{publicBaseUrl}}/me/jurisdiction-element-channels/edit",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n  \"60d5f9ae2f8e4e1a7c8b456d\": [\n    \"email\",\n    \"sms\"\n  ],\n  \"60d5f9ae2f8e4e1a7c8b456e\": [\n    \"push\"\n  ]\n}\n"
                },
                {
                  "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": "{{publicBaseUrl}}/me/jurisdiction-element-channels/edit",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "jurisdiction-element-channels",
                        "edit"
                      ]
                    },
                    "description": "Este endpoint permite al usuario autenticado actualizar los canales asociados a sus elementos de jurisdicción.\n\nEs un alias de**:** [PATCH /user/edit-jurisdiction-element-channels](#tag/User-greater-User/operation/editUserJurisdictionElementChannels)  \nAmbos 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": "{\n  \"code\": 400,\n  \"message\": \"Error editing user jurisdiction element channels\"\n}\n"
                }
              ]
            },
            {
              "name": "Edit User Channels",
              "id": "f8a41c96-3b2d-4e5a-9c7f-1d8e2a3b4c5d",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "PATCH",
                "header": [
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "type": "text",
                    "description": "(string) [required] Client identifier for API access"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"channelIds\": [\"{{channelId1}}\", \"{{channelId2}}\"],\n    \"notification_channel_ids\": [\"{{channelId1}}\"]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/user/channels",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "user",
                    "channels"
                  ]
                },
                "description": "Permite a un usuario autenticado modificar sus canales de suscripción y canales de notificación.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| channelIds | array | [optional] Array de IDs de canales para suscribir al usuario. Si se omite, no se modifican los canales actuales. |\n| 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. |"
              },
              "response": [
                {
                  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
                  "name": "200 OK - Channels Updated",
                  "originalRequest": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"channelIds\": [\"670cc9fbbdb73a4bfca75607\", \"670ccbc4bdb73a4bfca75608\"],\n    \"notification_channel_ids\": [\"670cc9fbbdb73a4bfca75607\"]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/channels",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "user",
                        "channels"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"channel\": {\n            \"id\": \"670cc9fbbdb73a4bfca75607\",\n            \"name\": \"Canal Público 1\",\n            \"description\": \"Descripción del canal\"\n        },\n        \"is_notification\": true,\n        \"selected\": true\n    },\n    {\n        \"channel\": {\n            \"id\": \"670ccbc4bdb73a4bfca75608\",\n            \"name\": \"Canal Público 2\",\n            \"description\": \"Descripción del canal 2\"\n        },\n        \"is_notification\": false,\n        \"selected\": true\n    }\n]"
                },
                {
                  "id": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
                  "name": "400 Bad Request - Error Saving User",
                  "originalRequest": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"channelIds\": [\"invalid-channel-id\"]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/channels",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "user",
                        "channels"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 400,\n    \"description\": \"Error save user\"\n}"
                }
              ]
            },
            {
              "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": "{\n   \"first_name\":\"User\",\n   \"last_name\": \"Prueba\",\n   \"phone\": 555123456\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/create-profile?token={{profileToken}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "create-profile"
                  ],
                  "query": [
                    {
                      "key": "token",
                      "value": "{{profileToken}}",
                      "disabled": true,
                      "description": "String. [required]. Token de perfil para crear el usuario."
                    }
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| first_name | string | [required]  <br>Nombre del usuario. |\n| last_name | string | [required]  <br>Apellido del usuario. |\n| phone | integer | [optional]  <br>Número de teléfono del usuario. |\n\nPermite al usuario rellenar los datos de su perfil, y añadirlos a la request creada\n\n**Request Params**\n\n| **Campo** | **Descripción** |\n| --- | --- |\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": "{\n   \"first_name\":\"User\",\n   \"last_name\": \"Prueba\",\n   \"phone\": 555123456\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/create-profile?token=LO_0GW-aB-q4oaV_La4-ka1eRnYyCWAHfpg5WK9ADORm0gsg3lDMhwfGcfC_UzBA",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n   \"first_name\":\"User\",\n   \"last_name\": \"Prueba\",\n   \"phone\": 555123456\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/create-profile?token=LO_0GW-aB-q4oaV_La4-ka1eRnYyCWAHfpg5WK9ADORm0gsg3lDMhwfGcfC_UzBA",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "Edit User Profile",
              "id": "3165cd71-151c-46e5-9056-a36ce0743f71",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"first_name\": \"Juan\",\n  \"last_name\": \"Pérez\",\n  \"phone\": {\n    \"number\": \"+34911111222\",\n    \"label\": \"mobile\"\n  },\n  \"configuration\": {\n    \"app_notification\": {\n      \"alerts\": true,\n      \"comments\": true,\n      \"follows\": true,\n      \"requests\": true\n    },\n    \"email_notification\": {\n      \"alerts\": true,\n      \"comments\": true,\n      \"follows\": true,\n      \"requests\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/edit-profile?token_id={{profileToken}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "edit-profile"
                  ],
                  "query": [
                    {
                      "key": "token_id",
                      "value": "{{profileToken}}",
                      "description": "String. [required]. Token de edición de perfil (cifrado).",
                      "type": "text"
                    }
                  ]
                },
                "description": "## Descripción\nActualiza 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.\n\n## Request Params\nNo aplica.\n\n## Query Params\n| Key | Value (ejemplo) | Description |\n| --- | --- | --- |\n| token_id | {{profileToken}} | String. [required]. Token de edición de perfil (cifrado). |\n\n## Body Params\nTodos los campos son opcionales, se actualizarán solo los enviados.\n\n| Campo | Tipo | Descripción |\n| --- | --- | --- |\n| additionalData | Array<AdditionalData> | (array<AdditionalData>) [optional]. Datos adicionales del usuario. Ver Documentos > AdditionalData. |\n| address | Address | (Address) [optional]. Dirección principal del usuario. Ver Documentos > Address. |\n| addresses | Array<Address> | (array<Address>) [optional]. Direcciones adicionales. Ver Documentos > Address. |\n| avatar | String (URL) | (string) [optional]. URL del avatar. Debe ser URL válida. |\n| birthday | Date (Y-m-d) | (string) [optional]. Fecha de nacimiento (Y-m-d). |\n| channels | Array<Channel ID> | (array<string>) [optional]. Canales asociados. |\n| configuration | SecurityAppConfiguration | (SecurityAppConfiguration) [optional]. Configuración de notificaciones. Ver Documentos > SecurityAppConfiguration. |\n| email | String | (string) [optional]. Email del usuario. |\n| first_name | String | (string) [optional]. Nombre del usuario (solo si no está strongly_identified). |\n| gender | String | (string) [optional]. Valores admitidos: female, male, other, not_specified. |\n| id_document | IdDocument | (IdDocument) [optional]. Documento de identidad principal. Ver Documentos > IdDocument. |\n| id_documents | Array<IdDocument> | (array<IdDocument>) [optional]. Documentos de identidad adicionales. Ver Documentos > IdDocument. |\n| last_name | String | (string) [optional]. Apellido del usuario (solo si no está strongly_identified). |\n| locale | String | (string) [optional]. Locale del usuario (ej: es). |\n| notification_channels | Array<Channel ID> | (array<string>) [optional]. Canales de notificación. |\n| phone | Phone | (Phone) [optional]. Teléfono principal. Ver Documentos > Phone. |\n| phones | Array<Phone> | (array<Phone>) [optional]. Teléfonos adicionales. Ver Documentos > Phone. |\n| strongly_identified | Boolean | (boolean) [optional]. Indica identificación fuerte. |\n| telegram_id | String | (string) [optional]. Identificador de Telegram. |\n| twitterNickname | String | (string) [optional]. Usuario de Twitter. |\n| user_location_area | String | (string) [optional]. Zona/área del usuario. |\n| username | String | (string) [optional]. Username del usuario. |\n| whatsapp_id | String | (string) [optional]. Identificador de WhatsApp. |\n"
              },
              "response": [
                {
                  "id": "c7a6bb70-6057-4281-8c85-60357c648d0a",
                  "name": "Edit User Profile OK",
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "\"User Profile edited successfully\""
                },
                {
                  "id": "224eb12a-a0b0-4ec0-9b5d-ffc4d35f070b",
                  "name": "Invalid Token",
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[{\n  \"code\": 400,\n  \"description\": \"Invalid token\"\n}]"
                },
                {
                  "id": "f666f76a-5d1c-421b-9b2e-8d0a4be1187d",
                  "name": "Token Expired",
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[{\n  \"code\": 400,\n  \"description\": \"Token expired\"\n}]"
                },
                {
                  "id": "616c6575-8d70-4932-a7f4-cb094c904368",
                  "name": "User Not Found",
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[{\n  \"code\": 404,\n  \"description\": \"User not found\"\n}]"
                },
                {
                  "id": "25d31517-9edf-4c29-b7c6-9f12b4504a09",
                  "name": "Error Saving User",
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "\"An error occurred when saving user data\""
                },
                {
                  "id": "650612e3-ae80-43f8-ae3f-2236b16a1c10",
                  "name": "Invalid Form",
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[{\n  \"code\": 1133,\n  \"description\": \"Invalid form\"\n}]"
                }
              ]
            },
            {
              "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": "{\n    \"device_id\": \"{{deviceUuid}}\",\n    \"app_key\": \"{{app_key}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/me/device",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "device"
                  ]
                },
                "description": "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| app_key | String | \\[required\\]. Aplicación asociada al dispositivo. |\n| device_id | String | \\[required\\]. ID del dispositivo. |\n\nEste 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": "{\n    \"device_id\": \"{{deviceUuid}}\",\n    \"app_key\": \"{{app_key}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/device",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"hasPassword\": true,\n    \"nickname\": \"whatsapp:+573228958456\",\n    \"main_address\": {},\n    \"addresses\": [],\n    \"app_evaluations\": [],\n    \"avatar\": \"https://lh3.googleusercontent.com/a/ACg8ocKjclGiC_0Bb7EaLTqQQ06wIzsT63h2wcxLXqgwqWEYRQiRsmM=s96-c?sz=600\",\n    \"channels\": [],\n    \"configuration\": {\n        \"app_notification\": {\n            \"alerts\": true,\n            \"comments\": true,\n            \"follows\": true,\n            \"requests\": true\n        },\n        \"email_notification\": {\n            \"alerts\": true,\n            \"comments\": true,\n            \"follows\": true,\n            \"requests\": true\n        }\n    },\n    \"devices\": [],\n    \"email\": \"michael.martinez@gopenux.com\",\n    \"first_name\": \"Michael Santiago\",\n    \"id\": \"68e6897873e517338e0305b2\",\n    \"id_documents\": [],\n    \"last_name\": \"Martinez Lopez\",\n    \"notification_channels\": [],\n    \"phone\": \"3228958456\",\n    \"strongly_identified\": false,\n    \"username\": \"whatsapp:+573228958456\",\n    \"telegram_id\": \"8465975270\",\n    \"anonymous\": false,\n    \"jurisdiction_element_channels\": []\n}"
                },
                {
                  "id": "b63eb287-2e95-4475-ad93-2b4642cbd331",
                  "name": "Remove Device Invalid Json",
                  "originalRequest": {
                    "method": "DELETE",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"device_id\": \"{{deviceUuid}}\",\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/device",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"error\": {\n        \"code\": 400,\n        \"message\": \"Invalid json message received\"\n    }\n}"
                },
                {
                  "id": "4f5e6020-164f-4614-87cc-0aee36921013",
                  "name": "Remove Device Failed",
                  "originalRequest": {
                    "method": "DELETE",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"device_id\": \"{{deviceUuid}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/device",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"App_Key not provided\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Delete Favorite POI",
              "id": "8435f6b6-72b1-4f7e-a95a-38bf28e2e0d4",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "DELETE",
                "header": [
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "description": "String. [required]. Client ID de tipo open010_client.",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/me/favorite-poi?layerId=layer-123&poiId=poi-456",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "favorite-poi"
                  ],
                  "query": [
                    {
                      "key": "layerId",
                      "value": "layer-123",
                      "description": "String. [required]. ID de la capa (MapLayer).",
                      "type": "text"
                    },
                    {
                      "key": "poiId",
                      "value": "poi-456",
                      "description": "String. [required]. ID del POI.",
                      "type": "text"
                    }
                  ]
                },
                "description": "Elimina un punto de interés (POI) de la lista de favoritos del usuario autenticado.\n\n# Query Params\n\n| Key | Value (ejemplo) | Description |\n| --- | --- | --- |\n| layerId | layer-123 | String. [required]. ID de la capa (MapLayer). |\n| poiId | poi-456 | String. [required]. ID del POI. |"
              },
              "response": [
                {
                  "id": "8318e92e-19b4-4ef4-ad48-a96a53ab276d",
                  "name": "Eliminar favorito POI OK",
                  "originalRequest": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "String. [required]. Client ID de tipo open010_client.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/favorite-poi?layerId=layer-123&poiId=poi-456",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "favorite-poi"
                      ],
                      "query": [
                        {
                          "key": "layerId",
                          "value": "layer-123",
                          "description": "String. [required]. ID de la capa (MapLayer)."
                        },
                        {
                          "key": "poiId",
                          "value": "poi-456",
                          "description": "String. [required]. ID del POI."
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{}"
                },
                {
                  "id": "c83a37d4-f464-4103-8cd3-8d3c79dd062f",
                  "name": "Unauthorized - Authentication Required",
                  "originalRequest": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "String. [required]. Client ID de tipo open010_client.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/favorite-poi?layerId=layer-123&poiId=poi-456",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "favorite-poi"
                      ],
                      "query": [
                        {
                          "key": "layerId",
                          "value": "layer-123",
                          "description": "String. [required]. ID de la capa (MapLayer)."
                        },
                        {
                          "key": "poiId",
                          "value": "poi-456",
                          "description": "String. [required]. ID del POI."
                        }
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"message\": \"Authentication Required\"\n}"
                },
                {
                  "id": "7d1be8d8-0ad1-4f3a-b9f2-632b53f9fd1f",
                  "name": "Not Found - No POI MapLayer found",
                  "originalRequest": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "String. [required]. Client ID de tipo open010_client.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/favorite-poi?layerId=layer-123&poiId=poi-456",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "favorite-poi"
                      ],
                      "query": [
                        {
                          "key": "layerId",
                          "value": "layer-123",
                          "description": "String. [required]. ID de la capa (MapLayer)."
                        },
                        {
                          "key": "poiId",
                          "value": "poi-456",
                          "description": "String. [required]. ID del POI."
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"code\": 404,\n    \"description\": \"No POI MapLayer found\"\n  }\n]"
                },
                {
                  "id": "ced2ee26-a0cf-4692-88f2-c632fdef44f2",
                  "name": "Not Found - POI not found",
                  "originalRequest": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "String. [required]. Client ID de tipo open010_client.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/favorite-poi?layerId=layer-123&poiId=poi-456",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "favorite-poi"
                      ],
                      "query": [
                        {
                          "key": "layerId",
                          "value": "layer-123",
                          "description": "String. [required]. ID de la capa (MapLayer)."
                        },
                        {
                          "key": "poiId",
                          "value": "poi-456",
                          "description": "String. [required]. ID del POI."
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"code\": 404,\n    \"description\": \"POI not found.\"\n  }\n]"
                }
              ]
            },
            {
              "name": "Update Profile",
              "id": "14bff8a5-a4a6-43dd-ba39-03fcd0ca2897",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/x-www-form-urlencoded",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "key": "first_name",
                      "value": "Juan",
                      "description": "String. [optional]. Nombre del usuario.",
                      "type": "text"
                    },
                    {
                      "key": "last_name",
                      "value": "Pérez García",
                      "description": "String. [optional]. Apellido del usuario.",
                      "type": "text"
                    },
                    {
                      "key": "email",
                      "value": "usuario@ejemplo.com",
                      "description": "String. [optional]. Correo electrónico.",
                      "type": "text",
                      "disabled": true
                    },
                    {
                      "key": "username",
                      "value": "usuario_ejemplo",
                      "description": "String. [optional]. Nombre de usuario.",
                      "type": "text",
                      "disabled": true
                    },
                    {
                      "key": "phone",
                      "value": "+34612345678",
                      "description": "String. [optional]. Teléfono principal.",
                      "type": "text"
                    },
                    {
                      "key": "secondary_phone",
                      "value": "+34698765432",
                      "description": "String. [optional]. Teléfono secundario.",
                      "type": "text",
                      "disabled": true
                    },
                    {
                      "key": "birthday",
                      "value": "1990-01-15",
                      "description": "String. [optional]. Fecha de nacimiento en formato ISO (YYYY-MM-DD).",
                      "type": "text",
                      "disabled": true
                    },
                    {
                      "key": "gender",
                      "value": "male",
                      "description": "String. [optional]. Género del usuario. Valores: male, female, other.",
                      "type": "text"
                    },
                    {
                      "key": "locale",
                      "value": "es",
                      "description": "String. [optional]. Idioma preferido (es, en, ca, eu, gl).",
                      "type": "text"
                    },
                    {
                      "key": "old_password",
                      "value": "CurrentPassword123",
                      "description": "String. [conditional]. Contraseña actual. Requerido para cambiar contraseña.",
                      "type": "text",
                      "disabled": true
                    },
                    {
                      "key": "new_password",
                      "value": "NewPassword456",
                      "description": "String. [conditional]. Nueva contraseña. Requerido junto con old_password.",
                      "type": "text",
                      "disabled": true
                    },
                    {
                      "key": "avatar",
                      "value": "https://example.com/avatar.jpg",
                      "description": "String. [optional]. URL de la imagen de avatar.",
                      "type": "text",
                      "disabled": true
                    },
                    {
                      "key": "twitterNickname",
                      "value": "@usuario_ejemplo",
                      "description": "String. [optional]. Nombre de usuario en Twitter/X.",
                      "type": "text",
                      "disabled": true
                    }
                  ]
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/profile",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "profile"
                  ]
                },
                "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)."
              },
              "response": [
                {
                  "id": "27a73474-98b1-4a02-8c10-9f43c789e6c8",
                  "name": "Update Profile OK",
                  "originalRequest": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "key": "first_name",
                          "value": "Juan",
                          "type": "text"
                        },
                        {
                          "key": "phone",
                          "value": "+34612345678",
                          "type": "text"
                        },
                        {
                          "key": "locale",
                          "value": "es",
                          "type": "text"
                        }
                      ]
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/profile",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "profile"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": \"507f1f77bcf86cd799439011\",\n    \"username\": \"usuario_ejemplo\",\n    \"email\": \"usuario@ejemplo.com\",\n    \"first_name\": \"Juan\",\n    \"last_name\": \"Pérez García\",\n    \"phone\": \"+34612345678\",\n    \"locale\": \"es\",\n    \"gender\": \"male\"\n}"
                },
                {
                  "id": "fc0f5491-709d-46fd-9937-0e5192fd3fb4",
                  "name": "Update Profile Bad Request - Invalid Data",
                  "originalRequest": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "key": "email",
                          "value": "invalid-email",
                          "type": "text"
                        }
                      ]
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/profile",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "profile"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 400,\n    \"message\": \"Missing parameters\",\n    \"errors\": {\n        \"children\": {\n            \"email\": {\n                \"errors\": [\n                    \"This value is not a valid email address.\"\n                ]\n            }\n        }\n    }\n}"
                },
                {
                  "id": "d804fca6-a49e-406a-98f2-01911e9d262d",
                  "name": "Update Profile Bad Request - Invalid Password",
                  "originalRequest": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "key": "old_password",
                          "value": "wrongpassword",
                          "type": "text"
                        },
                        {
                          "key": "new_password",
                          "value": "newpassword123",
                          "type": "text"
                        }
                      ]
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/profile",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "profile"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 400,\n    \"message\": \"Missing parameters\",\n    \"errors\": [\n        \"Old password is invalid\"\n    ]\n}"
                },
                {
                  "id": "81082b06-b690-4742-9c56-6b053d11a27c",
                  "name": "Update Profile Unauthorized",
                  "originalRequest": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/profile",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "profile"
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"error\": \"access_denied\",\n    \"error_description\": \"OAuth2 authentication required\"\n}"
                },
                {
                  "id": "6277b114-4bf3-4138-97be-2020818f106c",
                  "name": "Update Profile Forbidden",
                  "originalRequest": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Content-Type",
                        "value": "application/x-www-form-urlencoded",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/profile",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "profile"
                      ]
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 403,\n    \"message\": \"Access Denied\"\n}"
                }
              ]
            },
            {
              "name": "Update Registered Address",
              "id": "b1fcd8ed-2c9c-4d92-87f4-e7c21c9f2a7e",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}",
                    "description": "(string) [required]. Identificador del cliente Open010.",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/me/update/registered-address",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "update",
                    "registered-address"
                  ]
                },
                "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`."
              },
              "response": [
                {
                  "id": "e3f2b8fa-9f54-4d26-8abc-5ec6d6d4d681",
                  "name": "Update Registered Address OK",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "(string) [required]. Identificador del cliente Open010.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/update/registered-address",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "update",
                        "registered-address"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"registered_address\": {\n    \"street\": \"Calle Mayor\",\n    \"number\": \"10\",\n    \"city\": \"Madrid\",\n    \"postal_code\": \"28001\",\n    \"country\": \"ES\"\n  },\n  \"jurisdiction\": \"madrid\",\n  \"webhook_id\": \"507f1f77bcf86cd799439011\",\n  \"processed_at\": \"2026-01-27T09:20:00+00:00\"\n}"
                },
                {
                  "id": "d5c9e7c7-1215-4d44-9d27-81ad8ef3fcd2",
                  "name": "Update Registered Address Bad Request - No webhooks",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "(string) [required]. Identificador del cliente Open010.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/update/registered-address",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "update",
                        "registered-address"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n  {\n    \"code\": 400,\n    \"description\": \"No webhooks are configured in the user jurisdictions.\"\n  }\n]"
                },
                {
                  "id": "f08a3b2a-0c5b-4b3c-9a1c-d9d9bdf1f2bb",
                  "name": "Update Registered Address Unauthorized",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "(string) [required]. Identificador del cliente Open010.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/update/registered-address",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "update",
                        "registered-address"
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"message\": \"Authentication Required\"\n}"
                },
                {
                  "id": "5c6da91f-6380-4cc2-bc51-9a9ef5e6b680",
                  "name": "Update Registered Address Forbidden",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}",
                        "description": "(string) [required]. Identificador del cliente Open010.",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/update/registered-address",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "update",
                        "registered-address"
                      ]
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 403,\n  \"description\": \"Access Denied\"\n}"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?jurisdiction_id={{jurisdiction_id}}&type=cityapp",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "custom_configuration",
                    "{{app_element_id}}"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [required]. Identificador único de la jurisdicción para la cual se obtendrá la configuración."
                    },
                    {
                      "key": "type",
                      "value": "cityapp",
                      "description": "String. [required]. Especifica el tipo de configuracion personalizada de la consulta."
                    }
                  ],
                  "variable": [
                    {
                      "key": "app_element_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso app element id."
                    }
                  ]
                },
                "description": "```\n{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}\n\n ```\n\nEste 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.\n\n| **Campo** | **Descripcion** |\n| --- | --- |\n| 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": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}.json?type=cityapp&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration",
                        "{{app_element_id}}.json"
                      ],
                      "query": [
                        {
                          "key": "type",
                          "value": "cityapp"
                        },
                        {
                          "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": "{\n    \"active_cards\": [\n        {\n            \"app_element\": {\n                \"$ref\": \"AppElement\",\n                \"$id\": {\n                    \"$oid\": \"59774b1dfbcdf7da018b4590\"\n                },\n                \"$db\": \"open010\",\n                \"type\": \"requests_card\"\n            },\n            \"position\": {\n                \"$numberLong\": \"1\"\n            },\n            \"selected\": false,\n            \"createdDatetime\": {\n                \"$date\": \"2018-03-12T01:43:09.083Z\"\n            },\n            \"updatedDatetime\": {\n                \"$date\": \"2018-03-12T01:43:09.083Z\"\n            }\n        }\n    ]\n}"
                },
                {
                  "id": "4fad558b-f2c5-4fcc-bc11-900e8e60c501",
                  "name": "Get User CustomConfiguration App Element Id Error Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}.json?type=requests_card&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration",
                        "{{app_element_id}}.json"
                      ],
                      "query": [
                        {
                          "key": "type",
                          "value": "requests_card"
                        },
                        {
                          "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": "{\n  \"error\": \"Not Found\",\n  \"code\": 404\n}\n"
                },
                {
                  "id": "45c7aa6a-534c-489f-a4d5-6c8e2b61890d",
                  "name": "Get User CustomConfiguration App Element Id Error Jurisdiction_id Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?type=cityapp&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{jurisdiction_id}}",
                          "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"jurisdiction_id was not found\"\n    }\n]"
                },
                {
                  "id": "efab3587-835a-4556-882c-28ae5079da2a",
                  "name": "Get User CustomConfiguration App Element Id Error CustomConfigurations Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?type=requests_card&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{{jurisdiction_id}}",
                          "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"CustomConfigurations not found\"\n    }\n]"
                }
              ]
            },
            {
              "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": "{{publicBaseUrl}}/me/custom_configuration?jurisdiction_ids={{jurisdiction_id}}&type=cityapp",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "custom_configuration"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_ids",
                      "value": "{{jurisdiction_id}}",
                      "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": "```\nmtc.vdeveloper.lan/public-api/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=cityapp\n\n ```\n\nEste 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": "{{publicBaseUrl}}/me/custom_configuration?jurisdiction_ids={{jurisdiction_id}}&type=cityapp",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "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": "[\n    {\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"active_external_services\": [],\n        \"active_buttons\": [],\n        \"active_cards\": [\n            {\n                \"app_element\": \"67e11f151e0ac394a0057abd\",\n                \"account_config\": [],\n                \"position\": 0,\n                \"selected\": true\n            }\n        ]\n    }\n]"
                },
                {
                  "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": "{{publicBaseUrl}}/me/custom_configuration?jurisdiction_ids={{jurisdiction_id}}&type=city",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"UserCustomConfigurations not found\"\n    }\n]"
                },
                {
                  "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": "{{publicBaseUrl}}/me/custom_configuration?jurisdiction_ids={{jurisdiction_id}}&type=cityapp",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}"
                        },
                        {
                          "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"No jurisdiction found in the specified coordinates\"\n    }\n]"
                },
                {
                  "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": "{{publicBaseUrl}}/me/custom_configuration?jurisdiction_ids={{jurisdiction_id}}&type=cityapp",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ],
                      "query": [
                        {
                          "key": "jurisdiction_ids",
                          "value": "{{jurisdiction_id}}",
                          "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"User not found\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Get User Custom Configuration Deprecated",
              "id": "f8f9a918-26d5-47b6-b20e-2d7ed145c36c",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token_public}}"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}"
                  }
                ],
                "url": {
                  "raw": "{{publicBaseUrl}}/usercustomconfiguration?jurisdiction_ids={{jurisdiction_id}}&type=cityapp",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "usercustomconfiguration"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_ids",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [required]. Lista CSV de jurisdiction_id."
                    },
                    {
                      "key": "type",
                      "value": "cityapp",
                      "description": "String. [required]. Tipo de configuracion de aplicacion."
                    }
                  ]
                },
                "description": "Endpoint deprecado para obtener la configuracion personalizada del usuario por tipo de app y jurisdicciones. Ruta vigente recomendada: `/me/custom_configuration`.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_ids | string | [required]. Lista CSV de jurisdiction_id. |\n| type | string | [required]. Tipo de configuracion de aplicacion. |"
              },
              "response": [
                {
                  "id": "94f9f0d6-a6d2-4a07-a205-2ad96b2c7c6f",
                  "name": "Get User Custom Configuration Deprecated OK",
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"active_external_services\": [],\n        \"active_buttons\": [],\n        \"active_cards\": []\n    }\n]"
                },
                {
                  "id": "f8fa6e7f-1be9-4b6c-99ac-9f4aef5d7fb3",
                  "name": "Get User Custom Configuration Deprecated Type Not Send",
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 400,\n        \"description\": \"Type not send\"\n    }\n]"
                },
                {
                  "id": "2745b48f-44af-4fd0-9613-ee396f4bd370",
                  "name": "Get User Custom Configuration Deprecated Jurisdiction Ids Not Send",
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 400,\n        \"description\": \"Jurisdiction_ids not send\"\n    }\n]"
                },
                {
                  "id": "ef7d97d9-1f24-4508-bb3e-6c496f9bc596",
                  "name": "Get User Custom Configuration Deprecated User Not Found",
                  "status": "Forbidden",
                  "code": 403,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 403,\n        \"description\": \"User was not found\"\n    }\n]"
                },
                {
                  "id": "45bcfe78-bc5a-49ed-a5c8-4c89fc6d8e35",
                  "name": "Get User Custom Configuration Deprecated Not Found",
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"code\": 404,\n        \"description\": \"user_custom_configuration_not_found\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Post User Custom Configuration Deprecated",
              "id": "af7fbe2a-7fa9-47e6-8741-70e496e26a18",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token_public}}"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"jurisdiction_ids\": \"{{jurisdictionId}}\",\n  \"type\": \"cityapp\",\n  \"active_buttons\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_cards\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_external_services\": [\n    {\n      \"external_service\": \"{{externalServiceId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/usercustomconfiguration",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "usercustomconfiguration"
                  ]
                },
                "description": "Endpoint deprecado para crear o actualizar la configuracion personalizada del usuario. Ruta vigente recomendada: `/me/custom_configuration`.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_ids | String | [required]. Identificador de la jurisdiccion. |\n| type | String | [required]. Tipo de aplicacion. |\n| active_buttons | Array<AppElementCustomConfiguration> | [optional]. Configuracion de botones activos. |\n| active_cards | Array<AppElementCustomConfiguration> | [optional]. Configuracion de tarjetas activas. |\n| active_external_services | Array<AppElementCustomConfiguration> | [optional]. Configuracion de servicios externos activos. |"
              },
              "response": [
                {
                  "id": "1dd9ad26-492f-4649-ae06-b7bfc7220edb",
                  "name": "Create User Custom Configuration Deprecated OK",
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"id\": \"65f1e0b6f6a2a8d1c1a9a555\",\n  \"jurisdiction_id\": \"org.alcobendas\",\n  \"active_buttons\": [\n    {\n      \"app_element\": \"65f1e0b6f6a2a8d1c1a9a101\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_cards\": [\n    {\n      \"app_element\": \"65f1e0b6f6a2a8d1c1a9a202\",\n      \"position\": 2,\n      \"selected\": false,\n      \"account_config\": {}\n    }\n  ],\n  \"active_external_services\": [\n    {\n      \"external_service\": \"65f1e0b6f6a2a8d1c1a9a303\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ]\n}"
                },
                {
                  "id": "05e73c33-86e4-40a4-82be-4fd989d1506b",
                  "name": "Create User Custom Configuration Deprecated Jurisdiction IDs Not Send",
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 400,\n  \"description\": \"Jurisdiction_ids not send\"\n}"
                },
                {
                  "id": "402d8da0-f59e-4e6b-a40e-33a6f57c6b4b",
                  "name": "Create User Custom Configuration Deprecated Type Not Send",
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 400,\n  \"description\": \"Type not send\"\n}"
                },
                {
                  "id": "003a8363-6798-448e-b2b0-73ce6165db6f",
                  "name": "Create User Custom Configuration Deprecated Invalid Params",
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 400,\n  \"description\": \"UserCustomConfiguration params not valid\"\n}"
                },
                {
                  "id": "1bbec884-c9f0-4ce4-9332-22e5a84fc112",
                  "name": "Create User Custom Configuration Deprecated Jurisdiction Not Found",
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 404,\n  \"description\": \"Jurisdiction not found\"\n}"
                },
                {
                  "id": "49c400b4-b8f5-41f4-99be-81cae8ba51e2",
                  "name": "Create User Custom Configuration Deprecated Application Not Found",
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 404,\n  \"description\": \"Application was not found\"\n}"
                },
                {
                  "id": "b382556d-1771-44f8-abde-f148f1b32b2a",
                  "name": "Create User Custom Configuration Deprecated User Not Found",
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n  \"code\": 404,\n  \"description\": \"User not found\"\n}"
                }
              ]
            },
            {
              "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": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token_public}}"
                  },
                  {
                    "key": "X-CLIENT-ID",
                    "value": "{{clientId}}"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"jurisdiction_ids\": \"{{jurisdictionId}}\",\n  \"type\": \"cityapp\",\n  \"active_buttons\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_cards\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_external_services\": [\n    {\n      \"external_service\": \"{{externalServiceId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/me/custom_configuration",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "custom_configuration"
                  ]
                },
                "description": "Este endpoint crea o actualiza la configuración personalizada del usuario autenticado para una aplicación y jurisdicción dadas.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| jurisdiction_ids | String | [required]. Identificador de la jurisdicción. |\n| type | String | [required]. Tipo de aplicación. |\n| active_buttons | Array<AppElementCustomConfiguration> | [optional]. Configuración de botones activos. |\n| active_cards | Array<AppElementCustomConfiguration> | [optional]. Configuración de tarjetas activas. |\n| active_external_services | Array<AppElementCustomConfiguration> | [optional]. Configuración de servicios externos activos. |"
              },
              "response": [
                {
                  "id": "6e2ce20b-c630-426a-8a6b-1ed4298e8e3a",
                  "name": "Create User Custom Configuration OK",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{token_public}}"
                      },
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"jurisdiction_ids\": \"{{jurisdictionId}}\",\n  \"type\": \"cityapp\",\n  \"active_buttons\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_cards\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_external_services\": [\n    {\n      \"external_service\": \"{{externalServiceId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "null"
                },
                {
                  "id": "3e4fbe57-f197-4d22-85f8-079c24856039",
                  "name": "Create User Custom Configuration Jurisdiction IDs Not Send",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"jurisdiction_ids\": \"\",\n  \"type\": \"cityapp\",\n  \"active_buttons\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_cards\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 400,\n    \"description\": \"Jurisdiction_ids not send\"\n}"
                },
                {
                  "id": "31a3e74e-20a3-41f5-819d-a512344cfb5c",
                  "name": "Create User Custom Configuration Type Not Send",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"jurisdiction_ids\": \"{{jurisdictionId}}\",\n  \"type\": \"\",\n  \"active_buttons\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_cards\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 400,\n    \"description\": \"Type not send\"\n}"
                },
                {
                  "id": "f37c565f-7804-41d6-ac24-d9ff4ad6fa91",
                  "name": "Create User Custom Configuration Invalid Params",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"type\": \"cityapp\",\n  \"active_buttons\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_cards\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 400,\n    \"description\": \"UserCustomConfiguration params not valid\"\n}"
                },
                {
                  "id": "a0c7ff6a-28e3-4c1f-a12b-4bdaaac327c3",
                  "name": "Create User Custom Configuration Jurisdiction Not Found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"jurisdiction_ids\": \"unknown-jurisdiction\",\n  \"type\": \"cityapp\",\n  \"active_buttons\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_cards\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 404,\n    \"description\": \"Jurisdiction not found\"\n}"
                },
                {
                  "id": "bfbe0f13-2d7f-4fd2-95c2-1771f4c41270",
                  "name": "Create User Custom Configuration Application Not Found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"jurisdiction_ids\": \"{{jurisdictionId}}\",\n  \"type\": \"unknown_type\",\n  \"active_buttons\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_cards\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 404,\n    \"description\": \"Application was not found\"\n}"
                },
                {
                  "id": "9cca340d-dfba-4338-8546-3dd579f2ff25",
                  "name": "Create User Custom Configuration User Not Found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"jurisdiction_ids\": \"{{jurisdictionId}}\",\n  \"type\": \"cityapp\",\n  \"active_buttons\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ],\n  \"active_cards\": [\n    {\n      \"app_element\": \"{{appElementId}}\",\n      \"position\": 1,\n      \"selected\": true,\n      \"account_config\": {}\n    }\n  ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 404,\n    \"description\": \"User not found\"\n}"
                },
                {
                  "id": "e7b9ec32-95bf-4fa7-b6d6-f2f0d96f5bc8",
                  "name": "Create User Custom Configuration Unauthorized",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "X-CLIENT-ID",
                        "value": "{{clientId}}"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"jurisdiction_ids\": \"{{jurisdictionId}}\",\n  \"type\": \"cityapp\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration"
                      ]
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"message\": \"Authentication Required\"\n}"
                }
              ]
            },
            {
              "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": "{\n  \"account_config\": {\n    \"collapsed\": true,\n    \"order\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?jurisdiction_id={{jurisdiction_id}}&type=cityapp",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "me",
                    "custom_configuration",
                    "{{app_element_id}}"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [required]. Identificador de la jurisdicción sobre la cual aplica la configuración."
                    },
                    {
                      "key": "type",
                      "value": "cityapp",
                      "description": "String. [required]. Define el tipo de configuración personalizada que se va a editar."
                    }
                  ],
                  "variable": [
                    {
                      "key": "app_element_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso app element id."
                    }
                  ]
                },
                "description": "Este endpoint permite al usuario autenticado editar la configuración personalizada de un app element identificado por `app_element_id`.\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| account_config | object | [required]. Configuración personalizada del elemento de aplicación. |\n\n| **Campo** | **Descripcion** |\n| --- | --- |\n| app_element_id | String. \\[required\\]. Identificador del elemento de la aplicación cuya configuración personalizada se edita. |"
              },
              "response": [
                {
                  "id": "dab80395-814d-42d7-a3ea-d7197919c995",
                  "name": "Response OK",
                  "originalRequest": {
                    "method": "PATCH",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?type=cityapp&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration",
                        "{{app_element_id}}"
                      ],
                      "query": [
                        {
                          "key": "type",
                          "value": "cityapp",
                          "description": "String. [Require]. Define el tipo de configuración personalizada que se va a editar.\n"
                        },
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "description": "String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\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": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?type=cityapp&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration",
                        "{{app_element_id}}"
                      ],
                      "query": [
                        {
                          "key": "type",
                          "value": "cityapp",
                          "description": "String. [Require]. Define el tipo de configuración personalizada que se va a editar.\n"
                        },
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "description": "String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\n"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 404,\n    \"description\": \"User not found\"\n}"
                },
                {
                  "id": "5ab6dfe4-fc91-4352-a694-ce4f87aa182b",
                  "name": "Error Aplication Was Not Found",
                  "originalRequest": {
                    "method": "PATCH",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?type=cityapp&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration",
                        "{{app_element_id}}"
                      ],
                      "query": [
                        {
                          "key": "type",
                          "value": "cityapp",
                          "description": "String. [Require]. Define el tipo de configuración personalizada que se va a editar.\n"
                        },
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "description": "String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\n"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 404,\n    \"description\": \"Application was not found\"\n}"
                },
                {
                  "id": "1369e794-1345-4015-968e-c80af1590b97",
                  "name": "Error UserConfigurationCustom Params Not Valid",
                  "originalRequest": {
                    "method": "PATCH",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?type=cityapp&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration",
                        "{{app_element_id}}"
                      ],
                      "query": [
                        {
                          "key": "type",
                          "value": "cityapp",
                          "description": "String. [Require]. Define el tipo de configuración personalizada que se va a editar.\n"
                        },
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "description": "String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\n"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 400,\n    \"description\": \"UserCustomConfiguration params not valid\"\n}"
                },
                {
                  "id": "4bf4a564-91aa-45ed-8b9a-9d68cecb664c",
                  "name": "Error Not Found Active Card",
                  "originalRequest": {
                    "method": "PATCH",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?type=cityapp&jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "me",
                        "custom_configuration",
                        "{{app_element_id}}"
                      ],
                      "query": [
                        {
                          "key": "type",
                          "value": "cityapp",
                          "description": "String. [Require]. Define el tipo de configuración personalizada que se va a editar.\n"
                        },
                        {
                          "key": "jurisdiction_id",
                          "value": "{{jurisdiction_id}}",
                          "description": "String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\n"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"code\": 404,\n    \"description\": \"Not found active card\"\n}"
                }
              ]
            }
          ],
          "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": "{{publicBaseUrl}}/user/delete-user?token=exampleToken",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "user",
                    "delete-user"
                  ],
                  "query": [
                    {
                      "key": "token",
                      "value": "exampleToken",
                      "description": "String. [required]. 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": "{{publicBaseUrl}}/user/delete-user?token=exampleToken",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"Username changed to \": \"newUsername\",\n    \"Requests reindexed successfully\": true\n}"
                },
                {
                  "id": "cd0c27ec-41e7-4911-b6a6-ea8db29a6d91",
                  "name": "Missing token",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/delete-user?token=exampleToken",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"Token must be provided\"\n    }\n]"
                },
                {
                  "id": "76dc33a5-4aec-47a7-90fc-4e0db056aab6",
                  "name": "Invalid token",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/delete-user?token=exampleToken",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"Invalid token\"\n    }\n]"
                }
              ]
            },
            {
              "name": "Send Delete Confirmation Mail",
              "id": "870c5f72-038e-4911-86fb-bb649de027d4",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"email\": \"jhon.doe@example.com\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{publicBaseUrl}}/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "user",
                    "send-delete-confirmation-mail"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_id",
                      "value": "{{jurisdiction_id}}",
                      "description": "String. [required]. Un jurisdiction_id válido"
                    }
                  ],
                  "variable": [
                    {
                      "key": "jurisdiction_id",
                      "value": "",
                      "description": "String. [required]. ID del recurso jurisdiction id."
                    }
                  ]
                },
                "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.\n\n### Body Params\n\n| Campo | Tipo | Descripcion |\n| --- | --- | --- |\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": "{\n    \"email\": \"jhon.doe@example.com\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"email\": \"jhon.doe@example.com\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/send-delete-confirmation-mail?jurisdiction_id=fake_jurisdiction_id",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"jurisdiction_id was not found\"\n    }\n]"
                },
                {
                  "id": "e2d99dff-b1a3-4a3b-be1e-34b48ef87c11",
                  "name": "User not found",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"email\": \"jhon.doe@example.com\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 404,\n        \"description\": \"User not found\"\n    }\n]"
                },
                {
                  "id": "5b05f56c-7ebe-4294-b2df-167f03fd06ef",
                  "name": "Error generating token",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"email\": \"jhon.doe@example.com\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{publicBaseUrl}}/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"There was an error generating a disableUserToken\"\n    }\n]"
                }
              ]
            }
          ],
          "id": "82ba12c4-f9ec-4c1f-995f-0e8f33ee4c45"
        }
      ],
      "id": "a1071790-58d8-4b36-bb64-6494dcb21687",
      "description": "Los usuarios externos de {{environment}} 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": "WebHook",
      "description": "Endpoints relacionados con webhooks",
      "item": [
        {
          "name": "Dispatch Event",
          "id": "51990365-76ca-4d83-8fc5-f662850f3af2",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{token_public}}",
                "description": "Token de acceso (Public API). Requerido."
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n    \"parameters\": {\n        \"key\": \"value\"\n    }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{publicBaseUrl}}/public-api/dispatch-event?event=webhook.event.type.updating_public_user_profile",
              "host": [
                "{{publicBaseUrl}}"
              ],
              "path": [
                "public-api",
                "dispatch-event"
              ],
              "query": [
                {
                  "key": "event",
                  "value": "webhook.event.type.updating_public_user_profile",
                  "description": "String. [required]. Debe ser exactamente 'webhook.event.type.updating_public_user_profile'"
                }
              ]
            },
            "description": "## Descripción\n\nDispara un evento webhook configurado para el usuario autenticado.\n\n## Request Params\n\n| Campo | Descripción |\n|-------|-------------|\n| (sin params) | Este endpoint no utiliza path params |\n\n## Query Params\n\n| Key | Value (ejemplo) | Description |\n|-----|-----------------|-------------|\n| event | webhook.event.type.updating_public_user_profile | String. [required]. Debe ser exactamente 'webhook.event.type.updating_public_user_profile' |\n\n## Body Params\n\n| Campo | Tipo | Descripción |\n|-------|------|-------------|\n| parameters | Object | [optional]. Parametros libres para el webhook |"
          },
          "response": [
            {
              "name": "200 OK - Evento disparado",
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "\"Asynchronous Event dispatched\""
            },
            {
              "name": "400 Bad Request - Error invocando webhook externo",
              "status": "Bad Request",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "\"<error message>\""
            },
            {
              "name": "401 Unauthorized - Token invalido o faltante",
              "status": "Unauthorized",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n    \"message\": \"Authentication Required\"\n}"
            },
            {
              "name": "403 Forbidden - Sin permisos",
              "status": "Forbidden",
              "code": 403,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n    \"message\": \"Access Denied.\"\n}"
            },
            {
              "name": "404 Not Found - Webhook no configurado",
              "status": "Not Found",
              "code": 404,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n    \"message\": \"Not Found\"\n}"
            }
          ]
        }
      ]
    },
    {
      "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": "{{publicBaseUrl}}/app-element/{{id}}/widgets",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "app-element",
                    "{{id}}",
                    "widgets"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "String. [required]. ID del recurso id."
                    }
                  ]
                },
                "description": "**Request Params**\n\n| **Campo.** | **Descripción.** |\n| --- | --- |\n| id | Id del AppElement del cual se desean obtener los widgets asociados. |\n\nEste 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": "{{publicBaseUrl}}/app-element/{{id}}/widgets",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n    \"id\": \"67730fa48f05e82987073fe8\",\n    \"name\": \"asdasd\",\n    \"type\": \"lines\",\n    \"jurisdiction\": {\n        \"id\": \"561e04ed6aa918910c8b4592\",\n        \"jurisdiction_id\": \"org.alcobendas\",\n        \"name\": \"Alcobendas\"\n    },\n    \"tags\": []\n}"
                },
                {
                  "id": "f7a35a19-af24-495b-8c8d-24d0823d3600",
                  "name": "Error Widget Login",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/app-element/{{id}}/widgets",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "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": "{\n  \"error_code\": 401,\n  \"message\": \"widgets_error_login\"\n}"
                }
              ]
            }
          ],
          "id": "3b33e6e3-0f37-4105-96de-30bd69d1dc8b"
        }
      ],
      "id": "f6d1bcfd-bce2-4e31-907b-b7ce7f002f9c"
    },
    {
      "name": "Zone",
      "item": [
        {
          "name": "Zone",
          "item": [
            {
              "name": "Get Polygon Zones By Service",
              "id": "e6ac16a0-4746-4978-9c20-cdef779db76c",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{token_public}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/polygon-zones-by-service?jurisdiction_element_id={{jurisdiction_element_id}}&service_id={{service_id}}&extentProjection=4326&map_layer_level=&projection=3857",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "polygon-zones-by-service"
                  ],
                  "query": [
                    {
                      "key": "jurisdiction_element_id",
                      "value": "{{jurisdiction_element_id}}",
                      "description": "String. [required]. ID del elemento jurisdiccional que define el ámbito geográfico de las zonas."
                    },
                    {
                      "key": "service_id",
                      "value": "{{service_id}}",
                      "description": "String. [required]. ID del servicio para el cual se obtienen las zonas poligonales."
                    },
                    {
                      "key": "extentProjection",
                      "value": "4326",
                      "description": "Int. [optional]. Sistema de coordenadas de referencia (SRID) para el extent de los polígonos. Por defecto 4326 (WGS84)."
                    },
                    {
                      "key": "map_layer_level",
                      "value": "",
                      "description": "Int. [optional]. Nivel de la capa del mapa para filtrar las zonas a devolver.",
                      "disabled": true
                    },
                    {
                      "key": "projection",
                      "value": "3857",
                      "description": "Int. [optional]. Sistema de coordenadas de referencia (SRID) para la proyección de los polígonos. Por defecto 3857 (Web Mercator)."
                    }
                  ]
                },
                "description": "Obtiene la configuración necesaria para renderizar las zonas poligonales de un servicio específico mediante WMS (Web Map Service).\n\nEste 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.\n\n**Uso típico**: Integración con librerías de mapas (OpenLayers, Leaflet) para superponer capas de zonas geográficas en aplicaciones de visualización."
              },
              "response": [
                {
                  "id": "a92e1be4-5edb-45c0-8dbd-b6d0c6f373bd",
                  "name": "Response OK Get Polygon Zones By Service",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/polygon-zones-by-service?service_id={{service_id}}&jurisdiction_element_id={{jurisdiction_element_id}}&projection=3857&extentProjection=4326",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "polygon-zones-by-service"
                      ],
                      "query": [
                        {
                          "key": "service_id",
                          "value": "{{service_id}}"
                        },
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}"
                        },
                        {
                          "key": "projection",
                          "value": "3857"
                        },
                        {
                          "key": "extentProjection",
                          "value": "4326"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"url\": \"https://geoserver.mejoratuciudad.org/geoserver/mtx/wms\",\n    \"params\": {\n        \"SERVICE\": \"WMS\",\n        \"VERSION\": \"1.3.0\",\n        \"REQUEST\": \"GetMap\",\n        \"FORMAT\": \"image/png\",\n        \"layers\": \"mtx:zones_layer\",\n        \"TRANSPARENT\": true,\n        \"CRS\": \"EPSG:3857\",\n        \"token\": \"geoserver_access_token\",\n        \"STYLES\": \"\",\n        \"cql_filter\": \"service_id='591b33494e4ea840018b462c'\"\n    },\n    \"extent\": [\n        -3.8887100219727,\n        40.312347412109,\n        -3.5177917480469,\n        40.643585205078\n    ]\n}"
                },
                {
                  "id": "309a608f-dcda-4c36-8c26-06a0f9a9f33b",
                  "name": "Error Service Not Found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{publicBaseUrl}}/polygon-zones-by-service?service_id=invalid_id&jurisdiction_element_id={{jurisdiction_element_id}}",
                      "host": [
                        "{{publicBaseUrl}}"
                      ],
                      "path": [
                        "polygon-zones-by-service"
                      ],
                      "query": [
                        {
                          "key": "service_id",
                          "value": "invalid_id"
                        },
                        {
                          "key": "jurisdiction_element_id",
                          "value": "{{jurisdiction_element_id}}"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "name": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"error_code\": 404,\n    \"error_msg\": \"Object not found\"\n}"
                }
              ]
            }
          ],
          "id": "d3f7c8a1-9e2b-4c5d-8f6a-1b2c3d4e5f67",
          "description": "Endpoints relacionados con zonas geográficas y polígonos de servicios."
        }
      ],
      "id": "b8e4f2a6-7d3c-4e9f-a1b5-6c8d9e0f1a2b",
      "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": "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": "{{publicBaseUrl}}/filemanagement",
              "host": [
                "{{publicBaseUrl}}"
              ],
              "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": "{{publicBaseUrl}}/filemanagement",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "{{publicBaseUrl}}/filemanagement",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "{\n    \"error_code\": 1130,\n    \"error_msg\": \"Bad file to upload\"\n}"
            },
            {
              "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": "{{publicBaseUrl}}/filemanagement",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "{\n    \"error\": {\n        \"code\": 400,\n        \"message\": \"Required Parameter file\"\n    }\n}"
            },
            {
              "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": "{{publicBaseUrl}}/filemanagement",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "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": "[\n    {\n        \"code\": 400,\n        \"description\": \"Required Parameter uri\"\n    }\n]"
            }
          ]
        },
        {
          "name": "Collections",
          "id": "3335c442-fb01-43b1-8078-f5e595bc4b9a",
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          },
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{publicBaseUrl}}/collection",
              "host": [
                "{{publicBaseUrl}}"
              ],
              "path": [
                "collection"
              ]
            },
            "description": "**Description**\n\nDevuelve 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."
          },
          "response": [
            {
              "id": "6f0416a5-e50c-4b0e-ae71-3fbb5bf21b67",
              "name": "Response OK Collections",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/collection",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "collection"
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "name": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                }
              ],
              "cookie": [],
              "body": "{\n    \"info\": {\n        \"_postman_id\": \"c2065756-b268-46e9-a489-fd74784e211e\",\n        \"name\": \"Public Api\",\n        \"description\": \"\",\n        \"schema\": \"https://schema.getpostman.com/json/collection/v2.1.0/collection.json\",\n        \"_uid\": \"38092163-c2065756-b268-46e9-a489-fd74784e211e\"\n    },\n    \"item\": [\n        {\n            \"name\": \"AdditionalData\",\n            \"item\": [\n                {\n                    \"name\": \"AdditionalData\",\n                    \"item\": [\n                        {\n                            \"name\": \"List MassiveSingleListQuestion\",\n                            \"id\": \"5025704d-2e02-4f46-abc0-119884339b43\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/question/{{questionId}}/answers?page=1&limit=20\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"question\",\n                                        \"{questionId}\",\n                                        \"answers\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"page\",\n                                            \"value\": \"1\",\n                                            \"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\",\n                                            \"type\": \"text\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"20\",\n                                            \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 10)\",\n                                            \"type\": \"text\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"Este endpoint permite listar las respuestas de una pregunta especificada.\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| questionId | String | \\\\[requiered\\\\]. Identificador mongo de la lista masiva de preguntas a la cual se le desean consultar las respuestas. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"75334161-a2b3-4509-b18f-6bb756754dbc\",\n                                    \"name\": \"List MassiveSingleListQuestion OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/question/{{questionId}}/answers?page=1&limit=20\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"question\",\n                                                \"{questionId}\",\n                                                \"answers\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 10)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"type\\\": \\\"massiveSingleValueList\\\",\\n  \\\"active\\\": true,\\n  \\\"code\\\": \\\"10\\\",\\n  \\\"help_text\\\": \\\"\\\",\\n  \\\"id\\\": \\\"6939de4e85416775c007e5d9\\\",\\n  \\\"question\\\": \\\"¿How mock?\\\",\\n  \\\"tags\\\": [],\\n  \\\"archived\\\": false,\\n  \\\"possible_answers\\\": [\\n    {\\n      \\\"value\\\": 1,\\n      \\\"archived\\\": false\\n    },\\n    {\\n      \\\"value\\\": 2,\\n      \\\"archived\\\": false\\n    },\\n    {\\n      \\\"value\\\": 1,\\n      \\\"archived\\\": false\\n    }\\n  ],\\n  \\\"answers_count\\\": 3\\n}\"\n                                },\n                                {\n                                    \"id\": \"df3b85e8-2503-49a5-b19f-1ee7985b7ba8\",\n                                    \"name\": \"List MassiveSingleListQuestion Question not found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/question/{{questionId}}/answers?page=1&limit=20\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"question\",\n                                                \"{questionId}\",\n                                                \"answers\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 10)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\\\"null\\\"\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Search MassiveSingleListQuestion\",\n                            \"id\": \"8a316983-72a5-4de4-9421-506e0ad383db\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/question/{{questionId}}/answers/search?page=1&limit=20&q=mock\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"question\",\n                                        \"{questionId}\",\n                                        \"answers\",\n                                        \"search\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"page\",\n                                            \"value\": \"1\",\n                                            \"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\",\n                                            \"type\": \"text\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"20\",\n                                            \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 10)\",\n                                            \"type\": \"text\"\n                                        },\n                                        {\n                                            \"key\": \"q\",\n                                            \"value\": \"mock\",\n                                            \"description\": \"String [required]. Permite buscar preguntas de listas masivas a partir de sus respuestas.\",\n                                            \"type\": \"text\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"Este endpoint permite realizar búsqueda de listas masivas de preguntas a partir de las respuestas relacionadas.\\n\\n| Campo | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| questionId | String | \\\\[required\\\\]. Identificador mongo de la pregunta a la que se le realizará la búsqueda a partir de las respuestas relacionadas. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"ba4999c9-36b9-4bd3-86f3-d18b46d72aef\",\n                                    \"name\": \"Search MassiveSingleListQuestion OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/question/{{questionId}}/answers/search?page=1&limit=20&q=mock\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"question\",\n                                                \"{questionId}\",\n                                                \"answers\",\n                                                \"search\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 10)\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"mock\",\n                                                    \"description\": \"String [required]. Permite buscar preguntas de listas masivas a partir de sus respuestas.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"value\\\": \\\"mock 1\\\",\\n    \\\"value_translations\\\": {\\n      \\\"es\\\": \\\"mock 1\\\"\\n    },\\n    \\\"archived\\\": false\\n  },\\n  {\\n    \\\"value\\\": \\\"mock 1\\\",\\n    \\\"value_translations\\\": {\\n      \\\"es\\\": \\\"mock 2\\\"\\n    },\\n    \\\"archived\\\": false\\n  },\\n  {\\n    \\\"value\\\": \\\"mock 1\\\",\\n    \\\"value_translations\\\": {\\n      \\\"es\\\": \\\"mock 3\\\"\\n    },\\n    \\\"archived\\\": false\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"3ccf999c-a2c0-4b83-a5d6-dbfff1a67954\",\n                                    \"name\": \"Search MassiveSingleListQuestion not found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/question/{{questionId}}/answers/search?page=1&limit=20&q=mock\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"question\",\n                                                \"{questionId}\",\n                                                \"answers\",\n                                                \"search\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 10)\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"mock\",\n                                                    \"description\": \"String [required]. Permite buscar preguntas de listas masivas a partir de sus respuestas.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Internal Server Error\",\n                                    \"code\": 500,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 500,\\n    \\\"description\\\": \\\"The $massiveSingleListQuestion id: xxxxxxxxxxxxxxxxxx not found, is required\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"763e9c86-0b86-4228-8fc9-1bf978e032bb\",\n                                    \"name\": \"Search MassiveSingleListQuestion without results\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/question/{{questionId}}/answers/search?page=1&limit=20&q=algo\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"question\",\n                                                \"{questionId}\",\n                                                \"answers\",\n                                                \"search\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 10)\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"algo\",\n                                                    \"description\": \"String [required]. Permite buscar preguntas de listas masivas a partir de sus respuestas.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get External Data\",\n                            \"id\": \"156161e8-29c0-4c00-86ec-1240e36bf02b\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/additional-data/external/question-list/{{questionListId}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"additional-data\",\n                                        \"external\",\n                                        \"question-list\",\n                                        \"{questionListId}\"\n                                    ]\n                                },\n                                \"description\": \"Este endpoint permite obtener respuestas externas para la lista de preguntas especificada.  \\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| questionId | String | \\\\[required\\\\]. Identificador mongo de la lista de preguntas a la que se le quieren dar respuestas externas. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"13f26ad4-5201-4b7a-b4dc-e5d820a7b87a\",\n                                    \"name\": \"Get External Data OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/additional-data/external/question-list/{{questionListId}}\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"additional-data\",\n                                                \"external\",\n                                                \"question-list\",\n                                                \"{questionListId}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"data\\\": [\\n    {\\n      \\\"question\\\": {\\n        \\\"type\\\": \\\"datetime\\\",\\n        \\\"active\\\": true,\\n        \\\"code\\\": \\\"1\\\",\\n        \\\"help_text\\\": \\\"Indicar una fecha aproximada\\\",\\n        \\\"help_text_translations\\\": {\\n          \\\"es\\\": \\\"Indicar una fecha aproximada\\\"\\n        },\\n        \\\"id\\\": \\\"6939e5ed8303d81a590dbf69\\\",\\n        \\\"question\\\": \\\"¿Cuando ha sucedido?\\\",\\n        \\\"question_translations\\\": {\\n          \\\"es\\\": \\\"¿Cuando ha sucedido?\\\"\\n        },\\n        \\\"tags\\\": [],\\n        \\\"archived\\\": false\\n      },\\n      \\\"value\\\": \\\"externalValue\\\",\\n      \\\"editable\\\": true,\\n      \\\"response_attribute\\\": \\\"responseAttribute\\\",\\n      \\\"required\\\": false,\\n      \\\"hidden_in_form\\\": false,\\n      \\\"hidden_in_detail\\\": false,\\n      \\\"visibility\\\": \\\"public\\\"\\n    }\\n  ]\\n}\"\n                                },\n                                {\n                                    \"id\": \"7c8aed16-bf99-4091-b99c-7c52f3b86211\",\n                                    \"name\": \"Get External Data Error fill answers\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/additional-data/external/question-list/{{questionListId}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"additional-data\",\n                                                \"external\",\n                                                \"question-list\",\n                                                \"{questionListId}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Error setting a value for one or more questions \\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"ff924a96-9f49-44af-a307-1a076e6044ec\",\n                                    \"name\": \"Get External Data Question List Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/additional-data/external/question-list/{{questionListId}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"additional-data\",\n                                                \"external\",\n                                                \"question-list\",\n                                                \"{questionListId}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Object not found\\\"\\n  }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get External Data Question Answers\",\n                            \"id\": \"c078b721-6503-496d-a3d6-7903f4ca62e9\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/additional-data/external-data-question/{{questionId}}/answers?page=1&limit=20&q=text\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"additional-data-question\",\n                                        \"external-data-question\",\n                                        \"{questionId}\",\n                                        \"answers\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"page\",\n                                            \"value\": \"1\",\n                                            \"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\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"20\",\n                                            \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 90)\"\n                                        },\n                                        {\n                                            \"key\": \"q\",\n                                            \"value\": \"text\",\n                                            \"description\": \"String [optional]. Permite buscar posibles respuestas de listas masivas a partir del texto especificado.\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"Este endpoint permite obtener el listado de posibles respuestas de la lista masiva de preguntas especificada.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"291bb70b-a4f1-4385-8cc8-49d2911f7175\",\n                                    \"name\": \"Get External Data Question Answers OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/additional-data/external-data-question/{{questionId}}/answers?page=1&limit=20&q=externalValue\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"additional-data-question\",\n                                                \"external-data-question\",\n                                                \"{questionId}\",\n                                                \"answers\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 90)\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"externalValue\",\n                                                    \"description\": \"String [optional]. Permite buscar posibles respuestas de listas masivas a partir del texto especificado.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"value\\\": [\\n      \\\"externalValue\\\"\\n    ],\\n    \\\"archived\\\": false\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"d155f3af-4ab2-45d6-9871-848960f1fda2\",\n                                    \"name\": \"Get External Data Question Answers without results\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/additional-data/external-data-question/{{questionId}}/answers?page=1&limit=20&q=text\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"additional-data-question\",\n                                                \"external-data-question\",\n                                                \"{questionId}\",\n                                                \"answers\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 90)\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"text\",\n                                                    \"description\": \"String [optional]. Permite buscar posibles respuestas de listas masivas a partir del texto especificado.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[]\"\n                                },\n                                {\n                                    \"id\": \"06c595ca-4af5-4002-b37c-dd0c6869e30d\",\n                                    \"name\": \"Get External Data Question Answers with wrong question\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/additional-data/external-data-question/{{questionId}}/answers?page=1&limit=20&q=text\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"additional-data-question\",\n                                                \"external-data-question\",\n                                                \"{questionId}\",\n                                                \"answers\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 90)\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"text\",\n                                                    \"description\": \"String [optional]. Permite buscar posibles respuestas de listas masivas a partir del texto especificado.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Question must be either ExternalSingleListQuestion or ExternalMultiListQuestion\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"4fd4f699-8bbf-4c1b-809d-623144a745e8\",\n                                    \"name\": \"Get External Data Question Answers Not found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/additional-data/external-data-question/{{questionId}}/answers?page=1&limit=20&q=text\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"additional-data-question\",\n                                                \"external-data-question\",\n                                                \"{questionId}\",\n                                                \"answers\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"Int [optional]. Permite limitar el número de resultados por página (por defecto 90)\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"text\",\n                                                    \"description\": \"String [optional]. Permite buscar posibles respuestas de listas masivas a partir del texto especificado.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Object not found\\\"\\n  }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"1214b31f-e253-42a7-930f-1185cee851ae\",\n                    \"description\": \"Representan información complementaria del ticket, relevante según el contexto.\"\n                }\n            ],\n            \"id\": \"8cd230d4-1b33-40e4-ab09-166a4b6ddde0\",\n            \"description\": \"Representan información complementaria del ticket, relevante según el contexto.\"\n        },\n        {\n            \"name\": \"AppConfiguration\",\n            \"item\": [\n                {\n                    \"name\": \"AppConfiguration\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get App Element\",\n                            \"id\": \"62e36e14-936e-451c-95a8-a34e37aa4964\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/app-element/{{app_element_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"app-element\",\n                                        \"{{app_element_id}}\"\n                                    ]\n                                },\n                                \"description\": \"**Request Params**\\n\\n| Campo | Tipo | Descripción |\\n| --- | --- | --- |\\n| app_element_id | String | \\\\[requerido\\\\] ID del elemento de aplicación que se desea consultar. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"83d12473-e76c-40d2-930d-034808bf3831\",\n                                    \"name\": \"Get App Element OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/app-element/{{app_element_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"app-element\",\n                                                \"{{app_element_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"id\\\": \\\"693fdefe6feb6a72250a8a2a\\\",\\n    \\\"filter_configuration\\\": {\\n        \\\"service_filter_configuration\\\": {\\n            \\\"included\\\": true,\\n            \\\"services\\\": [\\n                {\\n                    \\\"visible_name\\\": \\\"Residuos Domésticos (Punto Limpio)\\\",\\n                    \\\"id\\\": \\\"68ffbe5983696bee0f0ed091\\\",\\n                    \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/692deab4b5063296451042.png\\\"\\n                }\\n            ]\\n        }\\n    },\\n    \\\"view_types\\\": [\\n        \\\"mine_poi\\\"\\n    ],\\n    \\\"required_strong_identification\\\": false,\\n    \\\"required_registered_resident\\\": false,\\n    \\\"map_layers\\\": [\\n        {\\n            \\\"id\\\": \\\"691eea93a879b737810c4147\\\",\\n            \\\"jurisdiction_element\\\": \\\"5c9b55579650e67d42985e80\\\",\\n            \\\"name\\\": \\\"Punto Limpio fijo\\\",\\n            \\\"internal_name\\\": \\\"buildings:punto_limpio_fijo_poi\\\"\\n        }\\n    ]\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"App Configurations\",\n                            \"id\": \"dd294f77-7834-40a2-b8e8-6ae9576005c8\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/appconfiguration?jurisdiction_id=org.alcobendas&type=cityapp\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"appconfiguration\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_id\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"description\": \"String (Required)  Identificador único de la jurisdicción para la cual se solicita la configuración.\"\n                                        },\n                                        {\n                                            \"key\": \"type\",\n                                            \"value\": \"cityapp\",\n                                            \"description\": \"String (Required)  Tipo de aplicación cliente que solicita la configuración.\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nObtiene 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"74eaa549-bb94-4cce-8ebf-e498aad9f908\",\n                                    \"name\": \"Response OK App Configurations\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/appconfiguration?jurisdiction_id=org.alcobendas&type=cityapp\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"appconfiguration\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\"\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"4107d608-6c4d-4ef8-b6ae-01774576bcf3\",\n                                    \"name\": \"Application Not Found App Configurations\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/appconfiguration?jurisdiction_id=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"appconfiguration\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"Application was not found\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"7d6a50a9-fa75-4bf0-a588-000a6538cae1\",\n                                    \"name\": \"Jurisdiction Null App Configurations\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/appconfiguration?type=cityapp\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"appconfiguration\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Parameter \\\\\\\"jurisdiction_id\\\\\\\" of value \\\\\\\"NULL\\\\\\\" violated a constraint \\\\\\\"Este valor no debería ser nulo.\\\\\\\"\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"c825bbf9-4bcc-4799-b9c6-740793494bfa\",\n                                    \"name\": \"Not Fount Jurisdiction App Configurations\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/appconfiguration?jurisdiction_id=org.alcoben&type=cityapp\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"appconfiguration\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcoben\"\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"jurisdiction_id was not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"App Configuration Common\",\n                            \"id\": \"58844c05-f9f8-4b7e-b868-637ff6b4d7c4\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/appconfigurationcommon?jurisdiction_id=org.alcobendas&type=cityapp&ignore_channels=true\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"appconfigurationcommon\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_id\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"description\": \"String (Required) ID de la jurisdicción. Se usa para buscar la jurisdicción (excluyendo las que están en papelera de reciclaje)\"\n                                        },\n                                        {\n                                            \"key\": \"type\",\n                                            \"value\": \"cityapp\",\n                                            \"description\": \"String (Required) Tipo de aplicación a buscar\"\n                                        },\n                                        {\n                                            \"key\": \"ignore_channels\",\n                                            \"value\": \"true\",\n                                            \"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\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nObtiene 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"cc6e47b9-aa62-4473-856f-b6c33f8bb985\",\n                                    \"name\": \"Response OK App Configuration Common\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/appconfigurationcommon?jurisdiction_id=org.alcobendas&type=cityapp&ignore_channels=true\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"appconfigurationcommon\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\"\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\"\n                                                },\n                                                {\n                                                    \"key\": \"ignore_channels\",\n                                                    \"value\": \"true\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"app_icon_url\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/670655313d52a7.55147536.png\\\",\\n    \\\"app_elements\\\": [\\n        {\\n            \\\"type\\\": \\\"indoor_and_requests_card\\\",\\n            \\\"channels\\\": [],\\n            \\\"id\\\": \\\"68ca5872249a70d7a10b20c3\\\",\\n            \\\"name\\\": \\\"Punto Limpio\\\",\\n            \\\"preset\\\": true,\\n            \\\"required\\\": true,\\n            \\\"button_type\\\": \\\"\\\"\\n        }\\n    ],\\n    \\\"default_language\\\": \\\"es\\\",\\n    \\\"font_color\\\": \\\"#ffffff\\\",\\n    \\\"headboard\\\": {\\n        \\\"images\\\": [\\n            {\\n                \\\"image_metadata\\\": {\\n                    \\\"type\\\": \\\"URL\\\",\\n                    \\\"extra_data\\\": {\\n                        \\\"url\\\": \\\"tel:+3434545645\\\"\\n                    }\\n                },\\n                \\\"image_url\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/67862a00974c58.00278616.png\\\"\\n            }\\n        ],\\n        \\\"type\\\": \\\"images\\\"\\n    },\\n    \\\"login_background_url\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/68e38acdc58910.05431754.jpg\\\",\\n    \\\"login_logo_url\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706550cc629b4.21210239.png\\\",\\n    \\\"main_color\\\": \\\"#006629\\\",\\n    \\\"managers_icon_url\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706551b8a5748.76715535.jpg\\\",\\n    \\\"name\\\": \\\"Alcobendas\\\",\\n    \\\"type\\\": \\\"cityapp\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"1ba735fd-ba41-4aa6-84b0-29a7d115fac3\",\n                                    \"name\": \"Not Found App Configuration Common\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/appconfigurationcommon?type=cityapp&ignore_channels=true\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"appconfigurationcommon\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\"\n                                                },\n                                                {\n                                                    \"key\": \"ignore_channels\",\n                                                    \"value\": \"true\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"Object not found\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"64f82f68-8f56-498c-913e-a75872dc50b8\",\n                                    \"name\": \"Jurisdiction Not Found App Configuration Common\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/appconfigurationcommon?jurisdiction_id=org.alcobe&type=cityapp&ignore_channels=true\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"appconfigurationcommon\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobe\"\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\"\n                                                },\n                                                {\n                                                    \"key\": \"ignore_channels\",\n                                                    \"value\": \"true\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"jurisdiction_id was not found\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"d6bc2e98-cbd0-4d16-a450-0993a8c08569\",\n                                    \"name\": \"Application Not Found App Configuration Common\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/appconfigurationcommon?jurisdiction_id=org.alcobendas&ignore_channels=true\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"appconfigurationcommon\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\"\n                                                },\n                                                {\n                                                    \"key\": \"ignore_channels\",\n                                                    \"value\": \"true\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"Application was not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get External Service\",\n                            \"id\": \"71ceca6a-b361-4eb6-b7ad-04b4802696d3\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/external-service/{{external_service_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"external-service\",\n                                        \"{{external_service_id}}\"\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nObtiene 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.\\n\\n**Request Param**\\n\\n| **Campo** | Tipo | **Descripcion** |\\n| --- | --- | --- |\\n| external_service_id | String | ID único del ExternalService (MongoDB ObjectId) |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"84b393de-f8d7-42b8-9bea-eac67f138d01\",\n                                    \"name\": \"Response OK Get External Service\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/external-service/6893757b270bdcf65a056f76\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"external-service\",\n                                                \"6893757b270bdcf65a056f76\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"botConfiguration\\\": {\\n        \\\"id\\\": \\\"6893757b270bdcf65a056f77\\\",\\n        \\\"hostUrl\\\": \\\"http://localhost:5200/\\\",\\n        \\\"position\\\": {\\n            \\\"right\\\": \\\"1rem\\\",\\n            \\\"bottom\\\": \\\"1rem\\\"\\n        }\\n    },\\n    \\\"id\\\": \\\"6893757b270bdcf65a056f76\\\",\\n    \\\"name\\\": \\\"Test\\\",\\n    \\\"provider\\\": \\\"bot_web\\\",\\n    \\\"type\\\": \\\"bot_web\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"b79fed67-1e24-4457-84dd-9082466c8e56\",\n                                    \"name\": \"Not Found Get External Service\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/external-service/{{external_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"external-service\",\n                                                \"{{external_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"External Service was not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"6a647d48-f63b-49e1-a0d1-806affdb9f70\"\n                }\n            ],\n            \"id\": \"ef593d2d-2e6b-4427-9c6d-df2837e5e88d\"\n        },\n        {\n            \"name\": \"Application\",\n            \"item\": [\n                {\n                    \"name\": \"Application\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get Application\",\n                            \"id\": \"bb5eec2a-acc7-4b40-9823-ba3865f13b1f\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/applications/{{app_key}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"applications\",\n                                        \"{{app_key}}\"\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nObtiene 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.}\\n\\n**Request Param**\\n\\n| Campo | **Tipo** | Description |\\n| --- | --- | --- |\\n| app_key | int | Clave única numérica de la aplicación |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"2b85cc90-6ede-475f-910e-c75255861649\",\n                                    \"name\": \"Response OK Get Application\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/applications/{{app_key}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"applications\",\n                                                \"{{app_key}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"default_jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"active\\\": true,\\n    \\\"logo\\\": \\\"http://www.radmas.com/clientes/ayto/img/logo.png\\\",\\n    \\\"name\\\": \\\"Alcobendas_CanaryBOT\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"48cfca18-a202-4c04-9b8b-2d8916a4e33d\",\n                                    \"name\": \"App Key Does Not Exists Get Application\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/applications/{{app_key}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"applications\",\n                                                \"{{app_key}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"app_key does not exist or is not allowed\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"9392a9c5-ead5-4a47-99a9-99d48818987d\"\n                }\n            ],\n            \"id\": \"a3df060d-fd6d-4cff-ad4c-115758558b26\"\n        },\n        {\n            \"name\": \"Channel\",\n            \"item\": [\n                {\n                    \"name\": \"Channel\",\n                    \"item\": [\n                        {\n                            \"name\": \"List Channel By Category\",\n                            \"id\": \"0889caa9-e950-40e0-ac6c-c873e0012543\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/channel/list/category/{{category}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"channel\",\n                                        \"list\",\n                                        \"category\",\n                                        \"{{category}}\"\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nLista los canales (Channels) que son externos y auto-asignables filtrados por una categoría específica.\\n\\n**Request Param**\\n\\n| Campo | **Tipo** | **Description** |\\n| --- | --- | --- |\\n| category | String | Categoría del canal a filtrar |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"3e97b17a-96af-4059-a456-81b1f426fa23\",\n                                    \"name\": \"Response OK List Channel By Category\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/channel/list/category/{{category}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"channel\",\n                                                \"list\",\n                                                \"category\",\n                                                \"{{category}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"category\\\": \\\"interest\\\",\\n        \\\"description\\\": \\\"Beta Tester - Icono\\\",\\n        \\\"external\\\": true,\\n        \\\"external_name\\\": \\\"pruebatester\\\",\\n        \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/670ccd7f9c833279214538.png\\\",\\n        \\\"id\\\": \\\"5cc6a0b08d7a6a0b0b8b45ad\\\",\\n        \\\"jurisdiction_elements\\\": [\\n            {\\n                \\\"id\\\": \\\"5c9b557e9650e67d42985e8d\\\",\\n                \\\"name\\\": \\\"Ciudad BBVA\\\",\\n                \\\"is_main\\\": false\\n            }\\n        ],\\n        \\\"jurisdictions\\\": [\\n            {\\n                \\\"id\\\": \\\"5be19ecb9a35c4850a8b45b1\\\",\\n                \\\"jurisdiction_id\\\": \\\"bbva\\\",\\n                \\\"name\\\": \\\"BBVA\\\",\\n                \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5be1bf65a4a58.png\\\"\\n            }\\n        ],\\n        \\\"name\\\": \\\"Beta Tester\\\",\\n        \\\"order\\\": 3,\\n        \\\"self_assignable\\\": true,\\n        \\\"visible\\\": true\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"73c02971-effe-4c04-86ee-6a9d2ac7aef5\",\n                                    \"name\": \"Category Not Found List Channel By Category\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/channel/list/category/{{category}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"channel\",\n                                                \"list\",\n                                                \"category\",\n                                                \"{{category}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"Category mock was not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"251b1302-ec5d-4e6c-a75b-f9dfcf28afff\"\n                }\n            ],\n            \"id\": \"c50be08f-5cc8-463e-938b-a9b7e28f6fef\"\n        },\n        {\n            \"name\": \"Jurisdiction\",\n            \"item\": [\n                {\n                    \"name\": \"Jurisdiction\",\n                    \"item\": [\n                        {\n                            \"name\": \"Jurisdictions List\",\n                            \"id\": \"03b596a2-0eda-456e-b3a5-5d394800449a\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/jurisdictions?app_Key=1234555&lat=40.35497&long=-3.54806\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"jurisdictions\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"app_Key\",\n                                            \"value\": \"1234555\",\n                                            \"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.\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.35497\",\n                                            \"description\": \"Float. [optional]. (40.35497). Permite estableces coordenadas geográficas (latitud) para un filtrado más exacto de los resultados (formato decimal)\"\n                                        },\n                                        {\n                                            \"key\": \"long\",\n                                            \"value\": \"-3.54806\",\n                                            \"description\": \"Float. [optional]. (-3.54806).  Permite estableces coordenadas geográficas (longitud) para un filtrado más exacto de los resultados (formato decimal)\"\n                                        }\n                                    ]\n                                },\n                                \"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\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"dd96815a-1123-49e9-a9e5-f186b306e021\",\n                                    \"name\": \"Response OK Jurisdictions List with results\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdictions?appKey=1&lat=40.35497&long=-3.54806\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdictions\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"appKey\",\n                                                    \"value\": \"1\",\n                                                    \"description\": \"[optional]. Permite identificar la validez de la solicitud controlando que el dispositivo que cierra sesión se encuentre dentro de los autorizados\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.35497\",\n                                                    \"description\": \"[optional]. Permite estableces coordenadas geográficas (latitud) para un filtrado más exacto de los resultados (formato decimal)\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"-3.54806\",\n                                                    \"description\": \"[optional]. Permite estableces coordenadas geográficas (longitud) para un filtrado más exacto de los resultados (formato decimal)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"only_registered_users\\\": true,\\n    \\\"max_upload_files\\\": 5,\\n    \\\"automatic_typology\\\": false,\\n    \\\"map_layers\\\": [\\n        {\\n            \\\"backend\\\": \\\"OWS\\\",\\n            \\\"endpoint\\\": \\\"https://gis.mejoratuciudad.org/geoserver\\\",\\n            \\\"id\\\": \\\"5d9ee7d1de2efef4018b4582\\\",\\n            \\\"is_default\\\": false,\\n            \\\"color\\\": \\\"#000000\\\",\\n            \\\"internal_name\\\": \\\"zones_prod:Riv_Barrios\\\",\\n            \\\"name\\\": \\\"Barrios\\\",\\n            \\\"description\\\": \\\"Barrios\\\",\\n            \\\"preset\\\": false,\\n            \\\"public\\\": true,\\n            \\\"tags\\\": [],\\n            \\\"token\\\": \\\"489780ae-39e0-40bf-93e3-57565431454a\\\",\\n            \\\"type\\\": \\\"ADMINISTRATIVE\\\"\\n        }\\n    ],\\n    \\\"accepted_id_documents\\\": [],\\n    \\\"buttons\\\": [],\\n    \\\"channels\\\": [\\n        {\\n            \\\"external\\\": false,\\n            \\\"id\\\": \\\"5e2f5cb6e8833f960e8b457a\\\",\\n            \\\"name\\\": \\\"Gestores Avisos\\\"\\n        }\\n    ],\\n    \\\"company_emails\\\": [\\n        \\\"comentarios.rivas@mejoratuciudad.org\\\"\\n    ],\\n    \\\"geo_bound\\\": [\\n        {\\n            \\\"lat\\\": 40.411038646944,\\n            \\\"long\\\": -3.4700083830236\\n        }\\n    ],\\n    \\\"geo_perimeter\\\": [\\n        {\\n            \\\"lat\\\": 40.327458668663,\\n            \\\"long\\\": -3.4704022742792\\n        }\\n    ],\\n    \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/59f193abe5de8.png\\\",\\n    \\\"id\\\": \\\"59bf9b3e76e456ac018b4569\\\",\\n    \\\"jurisdiction_elements\\\": [\\n        {\\n            \\\"map_layers\\\": [\\n                {\\n                    \\\"backend\\\": \\\"OWS\\\",\\n                    \\\"endpoint\\\": \\\"https://gis.mejoratuciudad.org/geoserver\\\",\\n                    \\\"id\\\": \\\"5d9ee7d1de2efef4018b4582\\\",\\n                    \\\"is_default\\\": false,\\n                    \\\"color\\\": \\\"#000000\\\",\\n                    \\\"internal_name\\\": \\\"zones_prod:Riv_Barrios\\\",\\n                    \\\"name\\\": \\\"Barrios\\\",\\n                    \\\"description\\\": \\\"Barrios\\\",\\n                    \\\"preset\\\": false,\\n                    \\\"public\\\": true,\\n                    \\\"tags\\\": [],\\n                    \\\"token\\\": \\\"489780ae-39e0-40bf-93e3-57565431454a\\\",\\n                    \\\"type\\\": \\\"ADMINISTRATIVE\\\"\\n                }\\n            ],\\n            \\\"extent\\\": [\\n                -3.5850750207097,\\n                40.287119395069,\\n                -3.4700083830236,\\n                40.411038646944\\n            ],\\n            \\\"id\\\": \\\"5c9b557c9650e67d42985e8b\\\",\\n            \\\"name\\\": \\\"es.madrid\\\",\\n            \\\"type\\\": \\\"city\\\",\\n            \\\"visible_name\\\": \\\"es.madrid\\\",\\n            \\\"is_main\\\": true\\n        }\\n    ],\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"key_name\\\": \\\"Rivas-Vaciamadrid\\\",\\n    \\\"locales\\\": [\\n        \\\"es\\\"\\n    ],\\n    \\\"name\\\": \\\"Madrid\\\",\\n    \\\"origin_devices\\\": [\\n        {\\n            \\\"id\\\": \\\"5850de88e22c6d9f51b17715\\\",\\n            \\\"options\\\": []\\n        }\\n    ],\\n    \\\"lat\\\": 40.35497,\\n    \\\"long\\\": -3.54806,\\n    \\\"tags\\\": [\\n        {\\n            \\\"name\\\": \\\"Poda\\\",\\n            \\\"color\\\": \\\"#000000\\\",\\n            \\\"id\\\": \\\"Poda\\\"\\n        }\\n    ],\\n    \\\"third_emails\\\": [\\n        \\\"comentarios.rivas@mejoratuciudad.org\\\"\\n    ],\\n    \\\"timezone\\\": \\\"Europe/Madrid\\\",\\n    \\\"typologies\\\": [\\n        {\\n            \\\"id\\\": \\\"59bfadfe566d72b8018b45c6\\\",\\n            \\\"color\\\": \\\"#ebc113\\\",\\n            \\\"description_legend\\\": \\\"Ej: farola fundida\\\",\\n            \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\\\",\\n            \\\"location_type\\\": \\\"geolocation\\\",\\n            \\\"order\\\": 1,\\n            \\\"public\\\": true,\\n            \\\"typology_description\\\": \\\"Tengo un problema con un elemento en la calle\\\",\\n            \\\"visible_name\\\": \\\"Aviso\\\",\\n            \\\"with_authorized_users\\\": false,\\n            \\\"with_description\\\": true,\\n            \\\"with_files\\\": true,\\n            \\\"with_geolocation_data\\\": true,\\n            \\\"with_medias\\\": true,\\n            \\\"with_temporality_data\\\": true\\n        }\\n    ],\\n    \\\"typology_nodes\\\": [\\n        {\\n            \\\"id\\\": \\\"59bfaf21d2bf39b8018b457d\\\",\\n            \\\"color\\\": \\\"#f1c40f\\\",\\n            \\\"order\\\": 1,\\n            \\\"typology\\\": {\\n                \\\"id\\\": \\\"59bfadfe566d72b8018b45c6\\\",\\n                \\\"color\\\": \\\"#ebc113\\\",\\n                \\\"description_legend\\\": \\\"Ej: farola fundida\\\",\\n                \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png\\\",\\n                \\\"location_type\\\": \\\"geolocation\\\",\\n                \\\"order\\\": 1,\\n                \\\"public\\\": true,\\n                \\\"typology_description\\\": \\\"Tengo un problema con un elemento en la calle\\\",\\n                \\\"visible_name\\\": \\\"Aviso\\\",\\n                \\\"with_authorized_users\\\": false,\\n                \\\"with_description\\\": true,\\n                \\\"with_files\\\": true,\\n                \\\"with_geolocation_data\\\": true,\\n                \\\"with_medias\\\": true,\\n                \\\"with_temporality_data\\\": true\\n            },\\n            \\\"visible_name\\\": \\\"Nuevo\\\"\\n        }\\n    ],\\n    \\\"user_info\\\": [\\n        {\\n            \\\"available\\\": true,\\n            \\\"field\\\": \\\"first_name\\\"\\n        }\\n    ],\\n    \\\"modules\\\": {\\n        \\\"requests\\\": true,\\n        \\\"requests_process\\\": true,\\n        \\\"requests_comments\\\": true,\\n        \\\"requests_worknotes\\\": true,\\n        \\\"requests_reiterations\\\": true,\\n        \\\"requests_complaints\\\": true,\\n        \\\"user_evaluation\\\": true,\\n        \\\"service_survey\\\": false,\\n        \\\"alerts\\\": false,\\n        \\\"inventory\\\": false,\\n        \\\"dashboard\\\": true,\\n        \\\"news\\\": false,\\n        \\\"backoffice_admin\\\": true,\\n        \\\"app_configuration\\\": true,\\n        \\\"notifications\\\": true,\\n        \\\"planned_requests\\\": true,\\n        \\\"planning\\\": false,\\n        \\\"users\\\": false,\\n        \\\"predetermined_response\\\": true,\\n        \\\"predetermined_response_external_source\\\": true,\\n        \\\"company_enquiry\\\": false,\\n        \\\"layer\\\": false,\\n        \\\"jurisdiction_element\\\": false,\\n        \\\"webhook\\\": false,\\n        \\\"user_guide\\\": true,\\n        \\\"worklog\\\": false\\n    },\\n    \\\"app_urls\\\": {\\n        \\\"web_url\\\": \\\"https://mapa.mejoratuciudad.org\\\",\\n        \\\"google_play_manager\\\": \\\"https://play.google.com/store/apps/details?id=com.radmas.iycp.production&hl=es\\\",\\n        \\\"google_play_citizens\\\": \\\"https://play.google.com/store/apps/details?id=com.radmas.iyc.rivas\\\",\\n        \\\"app_store\\\": \\\"https://itunes.apple.com/us/app/rivas-ciudad/id1353778065?l=es&ls=1&mt=8\\\"\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"b5f4ecc5-b36b-468c-a02f-04d36382d07d\",\n                                    \"name\": \"Response OK Jurisdictions List\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdictions\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdictions\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"c08c719d-9e3e-42ee-a8d4-edb41822cbe0\",\n                                    \"name\": \"Bad Request Lat Long Nos Provided.\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdictions?appKey=1&lat=0&long=0\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdictions\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"appKey\",\n                                                    \"value\": \"1\",\n                                                    \"description\": \"[optional]. Permite identificar la validez de la solicitud controlando que el dispositivo que cierra sesión se encuentre dentro de los autorizados\",\n                                                    \"uuid\": \"0e8b3b18-82b7-4845-9f38-bdb6145c69bf\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"0\",\n                                                    \"description\": \"[optional]. Permite estableces coordenadas geográficas (latitud) para un filtrado más exacto de los resultados (formato decimal)\",\n                                                    \"uuid\": \"272eaafb-7d9d-4bcc-aa96-66997447cbe7\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"0\",\n                                                    \"description\": \"[optional]. Permite estableces coordenadas geográficas (longitud) para un filtrado más exacto de los resultados (formato decimal)\",\n                                                    \"uuid\": \"a1917f55-5901-48f7-970b-6130915a40e6\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"code\\\": 400,\\n  \\\"message\\\": \\\"latitude or longitude not provided\\\"\\n}\\n\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Jurisdiction Detail\",\n                            \"id\": \"472986fb-6af6-4aea-8a07-0b6e89d92b96\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/jurisdictions/{{jurisdiction_id}}?app_key=1234555\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"jurisdictions\",\n                                        \"{{jurisdiction_id}}\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"app_key\",\n                                            \"value\": \"1234555\",\n                                            \"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.\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Request Params**\\n\\n| Campo | Tipo | Descripción |\\n| --- | --- | --- |\\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). |\\n\\nEste 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**.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"6bd5eb06-639e-44e6-9485-ee8878de3fd3\",\n                                    \"name\": \"Jurisdiction Detail OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdictions/{{jurisdiction_id}}?app_key=1234555\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdictions\",\n                                                \"{{jurisdiction_id}}\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"app_key\",\n                                                    \"value\": \"1234555\",\n                                                    \"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.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"698eb1f4-d043-4ae8-b451-88efea81160e\",\n                                    \"name\": \"Response Error Not Fount\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-elements?type=all\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdiction\",\n                                                \"{{jurisdiction_id}}\",\n                                                \"jurisdiction-elements\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"all\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"jurisdiction_id was not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get Jurisdictions Within\",\n                            \"id\": \"0613b0c3-d515-4988-9140-5bf61562fe2e\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/jurisdictions_within?app_key=1234555&lng=-3.6370633&lat=40.5367233\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"jurisdictions_within\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"app_key\",\n                                            \"value\": \"1234555\",\n                                            \"description\": \"int (Required) Clave identificadora de la aplicación\"\n                                        },\n                                        {\n                                            \"key\": \"lng\",\n                                            \"value\": \"-3.6370633\",\n                                            \"description\": \"float (Required) Latitud de la ubicación a consultar\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.5367233\",\n                                            \"description\": \"float (Required) Longitud de la ubicación a consultar\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nObtiene 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  \\nasociadas a la aplicación y, si encuentra una coincidencia, une al usuario autenticado a esa jurisdicción.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"1cb85b6f-2572-47fb-87a2-9ac4e129633f\",\n                                    \"name\": \"Response Ok Get Jurisdictions Within\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdictions_within?app_key=1234555&lng=-3.6370633&lat=40.5367233\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdictions_within\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"app_key\",\n                                                    \"value\": \"1234555\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6370633\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.5367233\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"id\\\": \\\"561e04ed6aa918910c8b4592\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"name\\\": \\\"Alcobendas\\\",\\n    \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"9a052e95-9c22-43ba-8236-7af12934e59e\",\n                                    \"name\": \"App_key Not Exist Get Jurisdictions Within\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdictions_within?app_key=12345557&lng=-3.6370633&lat=40.5367233\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdictions_within\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"app_key\",\n                                                    \"value\": \"12345557\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6370633\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.5367233\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"app_key does not exist or is not allowed\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"3a112cf0-702f-4b39-93d7-7f5007e8c97f\",\n                                    \"name\": \"App_key Not Provided Get Jurisdictions Within\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdictions_within?lng=-3.6370633&lat=40.5367233\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdictions_within\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6370633\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.5367233\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"app_key was not provided\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"4538700a-d84d-4630-9b24-364f2dc3131c\",\n                                    \"name\": \"Lat Or long Not Provided Get Jurisdictions Within\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdictions_within?app_key=1234555&lat=40.5367233\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdictions_within\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"app_key\",\n                                                    \"value\": \"1234555\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.5367233\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"latitude or longitude not provided\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Jurisdiction Element By Lat And Lng\",\n                            \"id\": \"374aba8b-cab4-4910-9729-784977d04996\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-element?lat=40.4378271&lng=-3.6795367\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"jurisdiction\",\n                                        \"{{jurisdiction_id}}\",\n                                        \"jurisdiction-element\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.4378271\",\n                                            \"description\": \"Float [required] Latitud de la ubicación a consultar\"\n                                        },\n                                        {\n                                            \"key\": \"lng\",\n                                            \"value\": \"-3.6795367\",\n                                            \"description\": \"Float [required] Longitud de la ubicación a consulta\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nEste 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.\\n\\n**Request Param**\\n\\n| Campo | **Tipo** | **Description** |\\n| --- | --- | --- |\\n| jurisdiction_id | String | \\\\[required\\\\] Es el jurisdiction_id de la jurisdicción (ej: es.madrid) |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"6943ba49-be78-4aa7-86db-9a2d94a4156d\",\n                                    \"name\": \"Response OK Get Jurisdiction Element By Lat And Lng\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-element?lat=40.4378271&lng=-3.6795367\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdiction\",\n                                                \"{{jurisdiction_id}}\",\n                                                \"jurisdiction-element\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.4378271\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6795367\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"map_layers\\\": [\\n        {\\n            \\\"backend\\\": \\\"OWS\\\",\\n            \\\"endpoint\\\": \\\"https://gis.mejoratuciudad.org/geoserver\\\",\\n            \\\"id\\\": \\\"694939992c7a8694cb0b9a07\\\",\\n            \\\"is_default\\\": false,\\n            \\\"color\\\": \\\"#000000\\\",\\n            \\\"internal_name\\\": \\\"buildings:custom_zones_fixtures\\\",\\n            \\\"name\\\": \\\"FixtureZones\\\",\\n            \\\"description\\\": \\\"Test Layer 5\\\",\\n            \\\"preset\\\": false,\\n            \\\"public\\\": true,\\n            \\\"tags\\\": [],\\n            \\\"token\\\": \\\"489780ae-39e0-40bf-93e3-57565431454a\\\",\\n            \\\"type\\\": \\\"WORK\\\"\\n        }\\n    ],\\n    \\\"extent\\\": [],\\n    \\\"geoserver_perimeter_id\\\": \\\"custom_zones_fixtures.13\\\",\\n    \\\"guided_module\\\": false,\\n    \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/icon_mock.png\\\",\\n    \\\"id\\\": \\\"694939982c7a8694cb0b98b9\\\",\\n    \\\"name\\\": \\\"madrid\\\",\\n    \\\"type\\\": \\\"city\\\",\\n    \\\"visible_name\\\": \\\"Madrid\\\",\\n    \\\"is_main\\\": false\\n}\"\n                                },\n                                {\n                                    \"id\": \"02dd232f-9e52-4b39-9230-ae9de49e30be\",\n                                    \"name\": \"Lat or Lng Not Provider Get Jurisdiction Element By Lat And Lng\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-element\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdiction\",\n                                                \"{{jurisdiction_id}}\",\n                                                \"jurisdiction-element\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"latitude or longitude not provided\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"2ee77375-6be0-484e-a70d-fa6746954e83\",\n                                    \"name\": \"Jurisdiction Not Found Get Jurisdiction Element By Lat And Lng\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdiction/{{jurisdiction_id}}/jurisdiction-element?lat=40.4378271&lng=-3.6795367\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdiction\",\n                                                \"{{jurisdiction_id}}\",\n                                                \"jurisdiction-element\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.4378271\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6795367\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"jurisdiction_id was not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"a1ed76d9-3de4-43b6-94d5-1ab6205ac0f0\",\n                    \"description\": \" \"\n                },\n                {\n                    \"name\": \"JurisdictionOpen010User\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get Preferences\",\n                            \"id\": \"1c6290ab-20dd-4621-b9a0-26534f675320\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"jurisdiction_preferences\",\n                                        \"{{jurisdiction_id}}\"\n                                    ]\n                                },\n                                \"description\": \"**Request param**\\n\\n| Campo | Tipo | Descripción |\\n| --- | --- | --- |\\n| jurisdiction_id | String | \\\\[requerido\\\\]  <br>jurisdiction_id de mongo de la jurisdicción de la cual se desean consultar. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"9a28e20b-6c8a-44c2-8f52-ec25d39026e2\",\n                                    \"name\": \"Get Preferences OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdiction_preferences\",\n                                                \"{{jurisdiction_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"id\\\": \\\"68829cebed7baf72480a1533\\\",\\n    \\\"widget_buttons_ids\\\": []\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Update Preferences\",\n                            \"id\": \"11b55038-6d35-4c6c-940b-ac64a8a07f99\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"PUT\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"widget_buttons_ids\\\": [\\n        \\\"6945724342852b3792050bca\\\",\\n        \\\"6945724342852b3792050bcb\\\"\\n    ]\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"jurisdiction_preferences\",\n                                        \"{{jurisdiction_id}}\"\n                                    ]\n                                },\n                                \"description\": \"Este endpoint permite a un usuario autenticado guardar y ordenar sus botones de widgets favoritos dentro de una jurisdicción específica.\\n\\nEn términos simples: el usuario personaliza qué acciones rápidas (widgets) quiere ver en su interfaz de la app, y en qué orden aparecen.\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| jurisdiction_id | String | \\\\[required\\\\]. Identificador interno de la jurisdicción |\\n| widget_buttons_ids | Array | \\\\[optional\\\\]. Lista ordenada de IDs de botones de widgets del usuario. Por defecto: \\\\[\\\\] |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"b388f03b-22c2-49bd-95d2-f0dd0162e121\",\n                                    \"name\": \"Update Preferences OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PUT\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"widget_buttons_ids\\\": [\\n        \\\"6945724342852b3792050bca\\\",\\n        \\\"6945724342852b3792050bcb\\\"\\n    ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdiction_preferences\",\n                                                \"{{jurisdiction_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"id\\\": \\\"6945713ea3a8f68c2b011555\\\",\\n  \\\"widget_buttons_ids\\\": [\\n    \\\"69457145a3a8f68c2b01155a\\\",\\n    \\\"69457145a3a8f68c2b01155b\\\"\\n  ]\\n}\"\n                                },\n                                {\n                                    \"id\": \"a6bc4f32-89fd-4a6d-8612-4663a9a88039\",\n                                    \"name\": \"Update Preferences user not authenticated\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PUT\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"widget_buttons_ids\\\": [\\n        \\\"6945724342852b3792050bca\\\",\\n        \\\"6945724342852b3792050bcb\\\"\\n    ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdiction_preferences\",\n                                                \"{{jurisdiction_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 403,\\n    \\\"description\\\": \\\"Access Denied\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"505ff7ca-0c5b-49b5-9730-fa98bc65fbc0\",\n                                    \"name\": \"Update Preferences user not related with jurisdiction\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PUT\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"widget_buttons_ids\\\": [\\n        \\\"6945724342852b3792050bca\\\",\\n        \\\"6945724342852b3792050bcb\\\"\\n    ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/jurisdiction_preferences/{{jurisdiction_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"jurisdiction_preferences\",\n                                                \"{{jurisdiction_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 403,\\n    \\\"description\\\": \\\"Jurisdiction By User No Exist\\\"\\n  }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"8cb9efff-7582-4fdf-a438-e8f47c7d9391\"\n                }\n            ],\n            \"id\": \"7e855aac-d14c-493d-8f40-202276524618\",\n            \"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.\"\n        },\n        {\n            \"name\": \"JurisdictionElement\",\n            \"item\": [\n                {\n                    \"name\": \"List JurisdictionElements By Service\",\n                    \"id\": \"9c3ca99c-0ed9-4e5e-9ea1-446813df7690\",\n                    \"protocolProfileBehavior\": {\n                        \"disableBodyPruning\": true\n                    },\n                    \"request\": {\n                        \"auth\": {\n                            \"type\": \"noauth\"\n                        },\n                        \"method\": \"GET\",\n                        \"header\": [],\n                        \"url\": {\n                            \"raw\": \"{{publicBaseUrl}}/jurisdiction-element/service/{{service_id}}\",\n                            \"host\": [\n                                \"{{publicBaseUrl}}\"\n                            ],\n                            \"path\": [\n                                \"jurisdiction-element\",\n                                \"service\",\n                                \"{{service_id}}\"\n                            ]\n                        },\n                        \"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.\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| service_id | String | \\\\[required\\\\]. ID del servicio para el cual se quieren obtener los elementos de jurisdicción |\"\n                    },\n                    \"response\": [\n                        {\n                            \"id\": \"bce07f60-e120-4d7c-91e1-700ac62efc2e\",\n                            \"name\": \"List JurisdictionElements By Service OK\",\n                            \"originalRequest\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/jurisdiction-element/service/{{service_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"jurisdiction-element\",\n                                        \"service\",\n                                        \"{{service_id}}\"\n                                    ]\n                                }\n                            },\n                            \"status\": \"OK\",\n                            \"code\": 200,\n                            \"_postman_previewlanguage\": \"json\",\n                            \"header\": [\n                                {\n                                    \"key\": \"Content-Type\",\n                                    \"name\": \"Content-Type\",\n                                    \"value\": \"application/json\",\n                                    \"description\": \"\",\n                                    \"type\": \"text\"\n                                }\n                            ],\n                            \"cookie\": [],\n                            \"body\": \"[\\n  \\\"5c9b55579650e67d42985e80\\\",\\n  \\\"5c9b55579650e67d42985e81\\\",\\n  \\\"5c9b55579650e67d42985e82\\\"\\n]\"\n                        },\n                        {\n                            \"id\": \"1eab203a-3ec2-45d8-955b-5f02b4f64c3b\",\n                            \"name\": \"List JurisdictionElements By Service without results\",\n                            \"originalRequest\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/jurisdiction-element/service/{{service_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"jurisdiction-element\",\n                                        \"service\",\n                                        \"{{service_id}}\"\n                                    ]\n                                }\n                            },\n                            \"status\": \"OK\",\n                            \"code\": 200,\n                            \"_postman_previewlanguage\": \"Text\",\n                            \"cookie\": [],\n                            \"body\": \"[]\"\n                        },\n                        {\n                            \"id\": \"fa5fef35-b9bb-4ddc-9ebc-0089f22eb770\",\n                            \"name\": \"List JurisdictionElements By Service Not Found\",\n                            \"originalRequest\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/jurisdiction-element/service/{{service_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"jurisdiction-element\",\n                                        \"service\",\n                                        \"{{service_id}}\"\n                                    ]\n                                }\n                            },\n                            \"status\": \"Not Found\",\n                            \"code\": 404,\n                            \"_postman_previewlanguage\": \"json\",\n                            \"header\": [\n                                {\n                                    \"key\": \"Content-Type\",\n                                    \"name\": \"Content-Type\",\n                                    \"value\": \"application/json\",\n                                    \"description\": \"\",\n                                    \"type\": \"text\"\n                                }\n                            ],\n                            \"cookie\": [],\n                            \"body\": \"[\\n  {\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Object not found\\\"\\n  }\\n]\"\n                        }\n                    ]\n                }\n            ],\n            \"id\": \"bfa383a7-6be2-46b7-b772-13b821104444\"\n        },\n        {\n            \"name\": \"LegalTerms\",\n            \"item\": [\n                {\n                    \"name\": \"LegalTerms\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get LegalTerms\",\n                            \"id\": \"d3832d0e-9848-421a-b442-8fd8190e850e\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [\n                                    {\n                                        \"key\": \"X-CLIENT-ID\",\n                                        \"value\": \"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\",\n                                        \"description\": \"[required]. String -  Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client\",\n                                        \"type\": \"text\"\n                                    }\n                                ],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/legal-terms\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"legal-terms\"\n                                    ]\n                                },\n                                \"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).\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"16de9c38-7ba9-4d65-864a-f416b57aac70\",\n                                    \"name\": \"Get LegalTerms OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"X-CLIENT-ID\",\n                                                \"value\": \"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\",\n                                                \"description\": \"[required]. String -  Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client\",\n                                                \"type\": \"text\",\n                                                \"uuid\": \"9f2fff6a-8770-4e44-8482-02a606ebb611\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/legal-terms\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"legal-terms\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"legal_text\\\": {\\n        \\\"privacy_policy\\\": \\\"https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=privacy_policy\\\",\\n        \\\"terms_of_use\\\": \\\"https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=terms_of_use\\\",\\n        \\\"cookies_policy\\\": \\\"https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=cookies_policy\\\"\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"25aabf0e-0c96-43ba-adfe-797901f800a9\",\n                                    \"name\": \"Get LegalTerms Fail\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/legal-terms\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"legal-terms\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Client not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get LegalText\",\n                            \"id\": \"67549128-3301-4e2c-84ec-9261d45c7a00\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/legal-text?legal_terms_id=694448da04a046a6f5ce5f47&legal_policy_type=privacy_policy\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"legal-text\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"legal_terms_id\",\n                                            \"value\": \"694448da04a046a6f5ce5f47\",\n                                            \"description\": \"[required]. String. El identificador único del documento de términos legales del cual se quiere extraer la política específica\"\n                                        },\n                                        {\n                                            \"key\": \"legal_policy_type\",\n                                            \"value\": \"privacy_policy\",\n                                            \"description\": \"[required]. String. Indica el tipo de documento legal a obtener. Valores válidos: privacy_policy, terms_of_use, accessibility, cookies_policy\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"097a02b7-6470-41cd-bb71-ef32a9803820\",\n                                    \"name\": \"Get LegalText Privacy Policy\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/legal-text?legal_terms_id=66ed366137c0c32c020b5497&legal_policy_type=privacy_policy\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"legal-text\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"legal_terms_id\",\n                                                    \"value\": \"66ed366137c0c32c020b5497\",\n                                                    \"description\": \"[required]. String. El identificador único del documento de términos legales del cual se quiere extraer la política específica\"\n                                                },\n                                                {\n                                                    \"key\": \"legal_policy_type\",\n                                                    \"value\": \"privacy_policy\",\n                                                    \"description\": \"[required]. String. Indica el tipo de documento legal a obtener. Valores válidos: privacy_policy, terms_of_use, accessibility, cookies_policy\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"html\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"text/html\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"39defbba-23e8-4729-863b-60f87614ad9a\",\n                                    \"name\": \"Get LegalText Terms of Use\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/legal-text?legal_terms_id=694448da04a046a6f5ce5f47&legal_policy_type=terms_of_use\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"legal-text\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"legal_terms_id\",\n                                                    \"value\": \"694448da04a046a6f5ce5f47\",\n                                                    \"description\": \"[required]. String. El identificador único del documento de términos legales del cual se quiere extraer la política específica\"\n                                                },\n                                                {\n                                                    \"key\": \"legal_policy_type\",\n                                                    \"value\": \"terms_of_use\",\n                                                    \"description\": \"[required]. String. Indica el tipo de documento legal a obtener. Valores válidos: privacy_policy, terms_of_use, accessibility, cookies_policy\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"html\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"text/html\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"<h1>Términos y Condiciones de Uso</h1>\\n<p>Bienvenido a nuestra plataforma de participación ciudadana. Al utilizar este servicio, acepta los siguientes términos\\n    y condiciones.</p>\\n<h2>1. Objeto</h2>\\n<p>Esta plataforma permite a los ciudadanos comunicar incidencias, sugerencias y propuestas a la administración pública.\\n</p>\\n<h2>2. Registro y cuenta de usuario</h2>\\n<p>Para utilizar los servicios es necesario registrarse proporcionando información veraz y actualizada. El usuario es\\n    responsable de mantener la confidencialidad de sus credenciales.</p>\\n<h2>3. Uso aceptable</h2>\\n<p>El usuario se compromete a:</p>\\n<ul>\\n    <li>No publicar contenido ofensivo, difamatorio o ilegal</li>\\n    <li>Proporcionar información veraz en las comunicaciones</li>\\n    <li>Respetar los derechos de otros usuarios</li>\\n    <li>No utilizar la plataforma para fines comerciales no autorizados</li>\\n</ul>\\n<h2>4. Propiedad intelectual</h2>\\n<p>Todos los contenidos de la plataforma están protegidos por derechos de propiedad intelectual.</p>\"\n                                },\n                                {\n                                    \"id\": \"6a3cf2b1-b182-4a42-8746-d4e5bcb90a19\",\n                                    \"name\": \"Get LegalText Accesibility\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/legal-text?legal_terms_id=694448da04a046a6f5ce5f47&legal_policy_type=accesibility\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"legal-text\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"legal_terms_id\",\n                                                    \"value\": \"694448da04a046a6f5ce5f47\",\n                                                    \"description\": \"[required]. String. El identificador único del documento de términos legales del cual se quiere extraer la política específica\"\n                                                },\n                                                {\n                                                    \"key\": \"legal_policy_type\",\n                                                    \"value\": \"accesibility\",\n                                                    \"description\": \"[required]. String. Indica el tipo de documento legal a obtener. Valores válidos: privacy_policy, terms_of_use, accessibility, cookies_policy\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"html\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"text/html\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"<h1>Declaración de Accesibilidad</h1>\\n<p>Esta plataforma está comprometida con garantizar la accesibilidad digital conforme al Real Decreto 1112/2018.</p>\\n<h2>Situación de cumplimiento</h2>\\n<p>Este sitio web es parcialmente conforme con el nivel AA de las Pautas WCAG 2.1 debido a las excepciones que se\\n    indican a continuación.</p>\\n<h2>Contenido no accesible</h2>\\n<p>El contenido que se recoge a continuación no es accesible por los siguientes motivos:</p>\\n<ul>\\n    <li>Algunos documentos PDF antiguos pueden no ser totalmente accesibles</li>\\n    <li>Ciertos vídeos pueden carecer de subtítulos</li>\\n</ul>\\n<h2>Preparación de la declaración</h2>\\n<p>Esta declaración fue preparada el 1 de enero de 2024 y se revisa periódicamente.</p>\\n<h2>Contacto</h2>\\n<p>Puede comunicar cualquier problema de accesibilidad a través de los canales de contacto habilitados.</p>\"\n                                },\n                                {\n                                    \"id\": \"96822496-8900-497b-92e2-1d09ce9cbd3d\",\n                                    \"name\": \"Get LegalText Cookies Policy\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/legal-text?legal_terms_id=694448da04a046a6f5ce5f47&legal_policy_type=terms_of_use\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"legal-text\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"legal_terms_id\",\n                                                    \"value\": \"694448da04a046a6f5ce5f47\",\n                                                    \"description\": \"[required]. String. El identificador único del documento de términos legales del cual se quiere extraer la política específica\"\n                                                },\n                                                {\n                                                    \"key\": \"legal_policy_type\",\n                                                    \"value\": \"terms_of_use\",\n                                                    \"description\": \"[required]. String. Indica el tipo de documento legal a obtener. Valores válidos: privacy_policy, terms_of_use, accessibility, cookies_policy\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"html\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"text/html\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"<h1>Política de Cookies</h1>\\n<p>Esta plataforma utiliza cookies para mejorar la experiencia del usuario y ofrecer servicios personalizados.</p>\\n<h2>¿Qué son las cookies?</h2>\\n<p>Las cookies son pequeños archivos de texto que se almacenan en su dispositivo cuando visita un sitio web. Permiten\\n    recordar sus preferencias y mejorar la navegación.</p>\\n<h2>Tipos de cookies que utilizamos</h2>\\n<ul>\\n    <li><strong>Cookies técnicas:</strong> Necesarias para el funcionamiento básico del sitio</li>\\n    <li><strong>Cookies de sesión:</strong> Permiten mantener su sesión activa mientras navega</li>\\n    <li><strong>Cookies analíticas:</strong> Nos ayudan a entender cómo interactúan los usuarios con la plataforma</li>\\n    <li><strong>Cookies de preferencias:</strong> Recuerdan sus ajustes y configuraciones</li>\\n</ul>\\n<h2>Gestión de cookies</h2>\\n<p>Puede configurar su navegador para rechazar cookies o para que le avise cuando se envíen. Sin embargo, algunas\\n    funcionalidades del sitio pueden no estar disponibles si desactiva las cookies.</p>\\n<h2>Más información</h2>\\n<p>Para más información sobre el uso de cookies, puede contactar con nosotros a través de los canales habilitados.</p>\"\n                                },\n                                {\n                                    \"id\": \"0b6c228c-9fd6-4060-a12d-b1c5bb84cf62\",\n                                    \"name\": \"Get LegalText without Legal Policy Type\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/legal-text?legal_terms_id=694448da04a046a6f5ce5f47\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"legal-text\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"legal_terms_id\",\n                                                    \"value\": \"694448da04a046a6f5ce5f47\",\n                                                    \"description\": \"[required]. String. El identificador único del documento de términos legales del cual se quiere extraer la política específica\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Client not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"824484d7-a802-42e7-b14c-c71cdc7282f4\"\n                }\n            ],\n            \"id\": \"3a70a238-b63a-40d8-8982-fb183adc8875\",\n            \"description\": \"Conjunto de endpoints que permiten observar los términos legales del entorno según el tipo de cliente (api pública o privada).\"\n        },\n        {\n            \"name\": \"Location\",\n            \"item\": [\n                {\n                    \"name\": \"Location\",\n                    \"item\": [\n                        {\n                            \"name\": \"List Location Additional Data\",\n                            \"id\": \"00c44fe2-e936-4697-a18a-9778c1d2a2b2\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/location-additional-data?jurisdiction_element_id=5c9b55579650e67d42985e80&formatted_address=GCH2+3F Madrid, Spain&lat=40.55079132675021&lng=-3.6387169361114506\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"location-additional-data\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_element_id\",\n                                            \"value\": \"5c9b55579650e67d42985e80\",\n                                            \"description\": \"String. [required]. ID de mongo de la jurisdicción sobre el cual se consulta información adicional\"\n                                        },\n                                        {\n                                            \"key\": \"formatted_address\",\n                                            \"value\": \"GCH2+3F Madrid, Spain\",\n                                            \"description\": \"String. [optional] (GCH2+3F Madrid, Spain). Dirección del JurisdictionElement.\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.55079132675021\",\n                                            \"description\": \"Float. [optional] (40.55079132675021). Permite estableces coordenadas geográficas (latitud) para un filtrado más exacto de los resultados (formato decimal).\"\n                                        },\n                                        {\n                                            \"key\": \"lng\",\n                                            \"value\": \"-3.6387169361114506\",\n                                            \"description\": \"Float. [optional] (-3.6387169361114506). Permite estableces coordenadas geográficas (longitud) para un filtrado más exacto de los resultados (formato decimal).\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"7079ce88-c6df-4410-946b-91070410a71b\",\n                                    \"name\": \"Response OK List Location Additional Data\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/location-additional-data?jurisdiction_element_id=5c9b55579650e67d42985e80&formatted_address=GCH2+3F Madrid, Spain&lat=40.55079132675021&lng=-3.6387169361114506\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"location-additional-data\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_element_id\",\n                                                    \"value\": \"5c9b55579650e67d42985e80\"\n                                                },\n                                                {\n                                                    \"key\": \"formatted_address\",\n                                                    \"value\": \"GCH2+3F Madrid, Spain\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.55079132675021\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6387169361114506\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"formatted_address\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n    \\\"geometry\\\": null,\\n    \\\"data\\\": [\\n        {\\n            \\\"question\\\": {\\n                \\\"type\\\": \\\"text\\\",\\n                \\\"active\\\": true,\\n                \\\"code\\\": \\\"distrito_T\\\",\\n                \\\"help_text\\\": \\\"\\\",\\n                \\\"help_text_translations\\\": {\\n                    \\\"es\\\": \\\"\\\",\\n                    \\\"en\\\": \\\"\\\",\\n                    \\\"ca\\\": \\\"\\\",\\n                    \\\"eu\\\": \\\"\\\",\\n                    \\\"fr\\\": \\\"\\\",\\n                    \\\"es_MX\\\": \\\"\\\",\\n                    \\\"en_AU\\\": \\\"\\\"\\n                },\\n                \\\"id\\\": \\\"5de929ca0007544c098b4578\\\",\\n                \\\"question\\\": \\\"Distrito\\\",\\n                \\\"question_translations\\\": {\\n                    \\\"es\\\": \\\"Distrito\\\",\\n                    \\\"en\\\": \\\"\\\",\\n                    \\\"ca\\\": \\\"\\\",\\n                    \\\"eu\\\": \\\"\\\",\\n                    \\\"fr\\\": \\\"\\\",\\n                    \\\"es_MX\\\": \\\"\\\",\\n                    \\\"en_AU\\\": \\\"\\\"\\n                },\\n                \\\"tags\\\": [\\n                    {\\n                        \\\"name\\\": \\\"distrito\\\",\\n                        \\\"color\\\": \\\"#000000\\\",\\n                        \\\"id\\\": \\\"distrito\\\"\\n                    }\\n                ]\\n            },\\n            \\\"value\\\": null,\\n            \\\"editable\\\": true,\\n            \\\"response_attribute\\\": \\\"Distrito\\\",\\n            \\\"required\\\": false,\\n            \\\"hidden_in_form\\\": false,\\n            \\\"hidden_in_detail\\\": false,\\n            \\\"visibility\\\": \\\"public\\\"\\n        }\\n    ],\\n    \\\"location\\\": {\\n        \\\"lat\\\": 40.550750699999988,\\n        \\\"lng\\\": -3.6389062000000001\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"ea6ee58d-ec6b-477f-8a37-67e7a31cc90a\",\n                                    \"name\": \"Response OK File Jurisdiction Element List Location Additional Data\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/location-additional-data?jurisdiction_element_id=5c9b55579650e67d42985e80\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"location-additional-data\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_element_id\",\n                                                    \"value\": \"5c9b55579650e67d42985e80\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"formatted_address\\\": null,\\n    \\\"geometry\\\": null,\\n    \\\"data\\\": [\\n        {\\n            \\\"question\\\": {\\n                \\\"type\\\": \\\"text\\\",\\n                \\\"active\\\": true,\\n                \\\"code\\\": \\\"distrito_T\\\",\\n                \\\"help_text\\\": \\\"\\\",\\n                \\\"help_text_translations\\\": {\\n                    \\\"es\\\": \\\"\\\",\\n                    \\\"en\\\": \\\"\\\",\\n                    \\\"ca\\\": \\\"\\\",\\n                    \\\"eu\\\": \\\"\\\",\\n                    \\\"fr\\\": \\\"\\\",\\n                    \\\"es_MX\\\": \\\"\\\",\\n                    \\\"en_AU\\\": \\\"\\\"\\n                },\\n                \\\"id\\\": \\\"5de929ca0007544c098b4578\\\",\\n                \\\"question\\\": \\\"Distrito\\\",\\n                \\\"question_translations\\\": {\\n                    \\\"es\\\": \\\"Distrito\\\",\\n                    \\\"en\\\": \\\"\\\",\\n                    \\\"ca\\\": \\\"\\\",\\n                    \\\"eu\\\": \\\"\\\",\\n                    \\\"fr\\\": \\\"\\\",\\n                    \\\"es_MX\\\": \\\"\\\",\\n                    \\\"en_AU\\\": \\\"\\\"\\n                },\\n                \\\"tags\\\": [\\n                    {\\n                        \\\"name\\\": \\\"distrito\\\",\\n                        \\\"color\\\": \\\"#000000\\\",\\n                        \\\"id\\\": \\\"distrito\\\"\\n                    },\\n                    {\\n                        \\\"name\\\": \\\"localización\\\",\\n                        \\\"color\\\": \\\"#000000\\\",\\n                        \\\"id\\\": \\\"localización\\\"\\n                    }\\n                ]\\n            },\\n            \\\"value\\\": null,\\n            \\\"editable\\\": true,\\n            \\\"response_attribute\\\": \\\"Distrito\\\",\\n            \\\"required\\\": false,\\n            \\\"hidden_in_form\\\": false,\\n            \\\"hidden_in_detail\\\": false,\\n            \\\"visibility\\\": \\\"public\\\"\\n        },\\n        {\\n            \\\"question\\\": {\\n                \\\"type\\\": \\\"text\\\",\\n                \\\"active\\\": true,\\n                \\\"code\\\": \\\"barrio_es_t\\\",\\n                \\\"help_text\\\": \\\"\\\",\\n                \\\"help_text_translations\\\": {\\n                    \\\"es\\\": \\\"\\\",\\n                    \\\"en\\\": \\\"\\\",\\n                    \\\"ca\\\": \\\"\\\",\\n                    \\\"eu\\\": \\\"\\\",\\n                    \\\"fr\\\": \\\"\\\",\\n                    \\\"es_MX\\\": \\\"\\\",\\n                    \\\"en_AU\\\": \\\"\\\"\\n                },\\n                \\\"id\\\": \\\"5ea6af91eaa11bba058b45d5\\\",\\n                \\\"question\\\": \\\"Barrio\\\",\\n                \\\"question_translations\\\": {\\n                    \\\"es\\\": \\\"Barrio\\\",\\n                    \\\"en\\\": \\\"\\\",\\n                    \\\"ca\\\": \\\"\\\",\\n                    \\\"eu\\\": \\\"\\\",\\n                    \\\"fr\\\": \\\"\\\",\\n                    \\\"es_MX\\\": \\\"\\\",\\n                    \\\"en_AU\\\": \\\"\\\"\\n                },\\n                \\\"tags\\\": [\\n                    {\\n                        \\\"name\\\": \\\"barrio\\\",\\n                        \\\"color\\\": \\\"#000000\\\",\\n                        \\\"id\\\": \\\"barrio\\\"\\n                    },\\n                    {\\n                        \\\"name\\\": \\\"localización\\\",\\n                        \\\"color\\\": \\\"#000000\\\",\\n                        \\\"id\\\": \\\"localización\\\"\\n                    }\\n                ]\\n            },\\n            \\\"value\\\": null,\\n            \\\"editable\\\": true,\\n            \\\"response_attribute\\\": \\\"Barrio\\\",\\n            \\\"required\\\": false,\\n            \\\"hidden_in_form\\\": false,\\n            \\\"hidden_in_detail\\\": false,\\n            \\\"visibility\\\": \\\"public\\\"\\n        }\\n    ]\\n}\"\n                                },\n                                {\n                                    \"id\": \"26958bfa-aa51-4241-9957-a3b7ab448dcb\",\n                                    \"name\": \"Error Jurisdiction Element Not Valid List Location Additional Data\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/location-additional-data?jurisdiction_element_id=5c9b555796\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"location-additional-data\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_element_id\",\n                                                    \"value\": \"5c9b555796\",\n                                                    \"uuid\": \"83e48b4e-fb2c-49b4-923d-b712d2dd8dd0\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error_code\\\": 404,\\n    \\\"error_msg\\\": \\\"Object not found\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Validate Position\",\n                            \"id\": \"05a20933-a4fe-4770-bc72-61e704a37b3e\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/service/{{service_id}}/validate-position?jurisdiction_element_id=5c9b55579650e67d42985e80&lat=40.53682576543375&long=-3.6547014648509477&level=3&projection=4326\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"service\",\n                                        \"{{service_id}}\",\n                                        \"validate-position\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_element_id\",\n                                            \"value\": \"5c9b55579650e67d42985e80\",\n                                            \"description\": \"String. [required]. ID del elemento jurisdicción contra el cual se valida la posición\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.53682576543375\",\n                                            \"description\": \"Float. [required]. Latitud del punto a validar\"\n                                        },\n                                        {\n                                            \"key\": \"long\",\n                                            \"value\": \"-3.6547014648509477\",\n                                            \"description\": \"Float. [required]. Longitud del punto a validar\"\n                                        },\n                                        {\n                                            \"key\": \"level\",\n                                            \"value\": \"3\",\n                                            \"description\": \"Int. [optional]. Nivel de profundidad del elemento jurisdiccional para validar la posición\"\n                                        },\n                                        {\n                                            \"key\": \"projection\",\n                                            \"value\": \"4326\",\n                                            \"description\": \"Int. [optional]. Sistema de referencia espacial (SRID) utilizado para las coordenadas\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Request param**\\n\\n| **Campo** | Tipo | **Descripción** |\\n| --- | --- | --- |\\n| service_id | String | \\\\[required\\\\] ID del servicio del que se quiere validar la posición. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"8e08bf9c-26a1-405d-9af4-ef2ab0a97bd8\",\n                                    \"name\": \"Validate Position OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/service/{{service_id}}/validate-position?jurisdiction_element_id=5c9b55579650e67d42985e80&lat=40.53682576543375&long=-3.6547014648509477&level=3&projection=4326\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"service\",\n                                                \"{{service_id}}\",\n                                                \"validate-position\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_element_id\",\n                                                    \"value\": \"5c9b55579650e67d42985e80\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.53682576543375\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"-3.6547014648509477\"\n                                                },\n                                                {\n                                                    \"key\": \"level\",\n                                                    \"value\": \"3\"\n                                                },\n                                                {\n                                                    \"key\": \"projection\",\n                                                    \"value\": \"4326\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"valid\\\": true\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get Nearest Geofences\",\n                            \"id\": \"83e908d1-2946-43f0-aa3e-e2a366af93e8\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/nearest-geofences?lat=40.5371361&lng=-3.6370715&limit=10\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"nearest-geofences\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.5371361\",\n                                            \"description\": \"Float. [optional]. Latitud desde la cual se buscan las geocercas cercanas.\"\n                                        },\n                                        {\n                                            \"key\": \"lng\",\n                                            \"value\": \"-3.6370715\",\n                                            \"description\": \"Float. [optional]. Longitud desde la cual se buscan las geocercas cercanas.\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"10\",\n                                            \"description\": \"Int. [optional]. Número máximo de geocercas a retornar. Default: 20.\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Requiere autenticación**\\n\\nEste 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.\\n\\n**Nota**: Requiere un usuario autenticado para funcionar.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"9a8f268f-6030-4d4d-ba51-8db68114bbed\",\n                                    \"name\": \"Get Nearest Geofences OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/nearest-geofences?lat=40.5371361&lng=-3.6370715&limit=10\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"nearest-geofences\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.5371361\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6370715\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"10\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[]\"\n                                },\n                                {\n                                    \"id\": \"f1a2b3c4-d5e6-7890-abcd-ef1234567890\",\n                                    \"name\": \"Get Nearest Geofences Unauthorized\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/nearest-geofences?lat=40.5371361&lng=-3.6370715&limit=10\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"nearest-geofences\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.5371361\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6370715\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"10\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Unauthorized\",\n                                    \"code\": 401,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error_code\\\": 401,\\n    \\\"error_msg\\\": \\\"Unauthorized\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get POI Detail\",\n                            \"id\": \"859640fe-a024-422a-a8e9-e9d67d3cfaf7\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [\n                                    {\n                                        \"key\": \"Accept\",\n                                        \"value\": \"application/json\"\n                                    }\n                                ],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id=5d91db6311235f7f2b8b45a2&projection=4326\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"poi-detail\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"poi_id\",\n                                            \"value\": \"ciudadbbva_PL0_paths.1\",\n                                            \"description\": \"[required]. String. Identificador único del POI en GeoServer. Formato típico: layerName.numericId\"\n                                        },\n                                        {\n                                            \"key\": \"layer_id\",\n                                            \"value\": \"5d91db6311235f7f2b8b45a2\",\n                                            \"description\": \"[optional]. String. ID del MapLayer (MongoDB ObjectId). Si no se proporciona, se busca automáticamente por el poi_id\"\n                                        },\n                                        {\n                                            \"key\": \"projection\",\n                                            \"value\": \"4326\",\n                                            \"description\": \"[optional]. String. Sistema de proyección EPSG para las coordenadas de respuesta (ej: 3857, 4326)\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"d00a2b2d-144a-4aea-a5a1-7cfca273cb75\",\n                                    \"name\": \"Get POI Detail with Layer Id\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id=5d91db6311235f7f2b8b45a2&projection=4326\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"poi-detail\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"poi_id\",\n                                                    \"value\": \"ciudadbbva_PL0_paths.1\",\n                                                    \"description\": \"[required]. String. Identificador único del POI en GeoServer. Formato típico: layerName.numericId\"\n                                                },\n                                                {\n                                                    \"key\": \"layer_id\",\n                                                    \"value\": \"5d91db6311235f7f2b8b45a2\",\n                                                    \"description\": \"[optional]. String. ID del MapLayer (MongoDB ObjectId). Si no se proporciona, se busca automáticamente por el poi_id\"\n                                                },\n                                                {\n                                                    \"key\": \"projection\",\n                                                    \"value\": \"4326\",\n                                                    \"description\": \"[optional]. String. Sistema de proyección EPSG para las coordenadas de respuesta (ej: 3857, 4326)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"type\\\": \\\"Feature\\\",\\n  \\\"id\\\": \\\"ciudadbbva_PL0_paths.1\\\",\\n  \\\"geometry\\\": {\\n    \\\"type\\\": \\\"Point\\\",\\n    \\\"coordinates\\\": [\\n      -3.6892,\\n      40.4168\\n    ]\\n  },\\n  \\\"properties\\\": {\\n    \\\"description\\\": \\\"Área de tránsito principal\\\",\\n    \\\"short_description\\\": \\\"Área principal\\\",\\n    \\\"type\\\": \\\"transito\\\",\\n    \\\"layer_name\\\": \\\"buildings:ciudadbbva_PL0_paths\\\",\\n    \\\"layer_id\\\": \\\"5d91db6311235f7f2b8b45a2\\\",\\n    \\\"level\\\": 0,\\n    \\\"favorite\\\": false\\n  },\\n  \\\"additional_data\\\": [\\n    {\\n      \\\"key\\\": \\\"capacidad\\\",\\n      \\\"label\\\": \\\"Capacidad máxima\\\",\\n      \\\"value\\\": 500\\n    },\\n    {\\n      \\\"key\\\": \\\"horario\\\",\\n      \\\"label\\\": \\\"Horario de apertura\\\",\\n      \\\"value\\\": \\\"08:00 - 22:00\\\"\\n    }\\n  ]\\n}\"\n                                },\n                                {\n                                    \"id\": \"d79a0854-f3b6-4d0e-9589-cca201f0ae2a\",\n                                    \"name\": \"Get POI Detail without Layer Id\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id=5d91db6311235f7f2b8b45a2&projection=4326\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"poi-detail\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"poi_id\",\n                                                    \"value\": \"ciudadbbva_PL0_paths.1\",\n                                                    \"description\": \"[required]. String. Identificador único del POI en GeoServer. Formato típico: layerName.numericId\"\n                                                },\n                                                {\n                                                    \"key\": \"layer_id\",\n                                                    \"value\": \"5d91db6311235f7f2b8b45a2\",\n                                                    \"description\": \"[optional]. String. ID del MapLayer (MongoDB ObjectId). Si no se proporciona, se busca automáticamente por el poi_id\"\n                                                },\n                                                {\n                                                    \"key\": \"projection\",\n                                                    \"value\": \"4326\",\n                                                    \"description\": \"[optional]. String. Sistema de proyección EPSG para las coordenadas de respuesta (ej: 3857, 4326)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"type\\\": \\\"Feature\\\",\\n  \\\"id\\\": \\\"ciudadbbva_PL0_paths.1\\\",\\n  \\\"geometry\\\": {\\n    \\\"type\\\": \\\"Point\\\",\\n    \\\"coordinates\\\": [\\n      -3.6892,\\n      40.4168\\n    ]\\n  },\\n  \\\"properties\\\": {\\n    \\\"description\\\": \\\"Área de tránsito principal\\\",\\n    \\\"short_description\\\": \\\"Área principal\\\",\\n    \\\"type\\\": \\\"transito\\\",\\n    \\\"layer_name\\\": \\\"buildings:ciudadbbva_PL0_paths\\\",\\n    \\\"layer_id\\\": \\\"5d91db6311235f7f2b8b45a2\\\",\\n    \\\"level\\\": 0,\\n    \\\"favorite\\\": false\\n  },\\n  \\\"additional_data\\\": [\\n    {\\n      \\\"key\\\": \\\"capacidad\\\",\\n      \\\"label\\\": \\\"Capacidad máxima\\\",\\n      \\\"value\\\": 500\\n    },\\n    {\\n      \\\"key\\\": \\\"horario\\\",\\n      \\\"label\\\": \\\"Horario de apertura\\\",\\n      \\\"value\\\": \\\"08:00 - 22:00\\\"\\n    }\\n  ]\\n}\"\n                                },\n                                {\n                                    \"id\": \"03f9952f-b1f9-4276-95cd-c2c1dbfdb7ab\",\n                                    \"name\": \"Get POI Detail Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id=5d91db6311235f7f2b8b45a2&projection=4326\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"poi-detail\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"poi_id\",\n                                                    \"value\": \"ciudadbbva_PL0_paths.1\",\n                                                    \"description\": \"[required]. String. Identificador único del POI en GeoServer. Formato típico: layerName.numericId\"\n                                                },\n                                                {\n                                                    \"key\": \"layer_id\",\n                                                    \"value\": \"5d91db6311235f7f2b8b45a2\",\n                                                    \"description\": \"[optional]. String. ID del MapLayer (MongoDB ObjectId). Si no se proporciona, se busca automáticamente por el poi_id\"\n                                                },\n                                                {\n                                                    \"key\": \"projection\",\n                                                    \"value\": \"4326\",\n                                                    \"description\": \"[optional]. String. Sistema de proyección EPSG para las coordenadas de respuesta (ej: 3857, 4326)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"POI not found\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"c878cf96-12cf-4d80-9a18-db5c2266b48e\",\n                                    \"name\": \"Get POI Detail Layer not found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id=5d91db6311235f7f2b8b45a2&projection=4326\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"poi-detail\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"poi_id\",\n                                                    \"value\": \"ciudadbbva_PL0_paths.1\",\n                                                    \"description\": \"[required]. String. Identificador único del POI en GeoServer. Formato típico: layerName.numericId\"\n                                                },\n                                                {\n                                                    \"key\": \"layer_id\",\n                                                    \"value\": \"5d91db6311235f7f2b8b45a2\",\n                                                    \"description\": \"[optional]. String. ID del MapLayer (MongoDB ObjectId). Si no se proporciona, se busca automáticamente por el poi_id\"\n                                                },\n                                                {\n                                                    \"key\": \"projection\",\n                                                    \"value\": \"4326\",\n                                                    \"description\": \"[optional]. String. Sistema de proyección EPSG para las coordenadas de respuesta (ej: 3857, 4326)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"No MapLayers found\\\"\\n  }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Search Points From Layer\",\n                            \"id\": \"19ded828-17ee-4580-8f61-8a6b65f988df\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [\n                                    {\n                                        \"key\": \"Accept\",\n                                        \"value\": \"application/json\"\n                                    },\n                                    {\n                                        \"key\": \"Authorization\",\n                                        \"value\": \"Bearer\"\n                                    }\n                                ],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/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\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"search-point-layers.json\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_element_id\",\n                                            \"value\": \"5c9b557e9650e67d42985e8d\",\n                                            \"description\": \"[required]. String. ID del elemento de jurisdicción (MongoDB ObjectId)\"\n                                        },\n                                        {\n                                            \"key\": \"layer_names[]\",\n                                            \"value\": \"buildings:ciudadbbva_PL0_paths\",\n                                            \"description\": \"[optional]. Array. Nombres internos de las capas a consultar. Ej: layer_names[]=buildings:poi_layer1\"\n                                        },\n                                        {\n                                            \"key\": \"layer_ids[]\",\n                                            \"value\": \"5d91db6311235f7f2b8b45a2\",\n                                            \"description\": \"[optional]. Array. IDs de los MapLayers (MongoDB ObjectIds)\"\n                                        },\n                                        {\n                                            \"key\": \"level\",\n                                            \"value\": \"0\",\n                                            \"description\": \"[optional]. Integer. Nivel/planta del edificio (0, 1, 2...)\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.4168\",\n                                            \"description\": \"[optional]. Float. Latitud para ordenar por proximidad\"\n                                        },\n                                        {\n                                            \"key\": \"lng\",\n                                            \"value\": \"-3.6892\",\n                                            \"description\": \"[optional]. Float. Longitud para ordenar por proximidad\"\n                                        },\n                                        {\n                                            \"key\": \"q\",\n                                            \"value\": \"sala\",\n                                            \"description\": \"[optional]. String. Texto de búsqueda para filtrar POIs por nombre/descripción\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"20\",\n                                            \"description\": \"[optional]. Integer.  Número máximo de resultados\"\n                                        },\n                                        {\n                                            \"key\": \"highlighted_poi\",\n                                            \"value\": \"true\",\n                                            \"description\": \"[optional]. Boolean. Filtrar solo POIs destacados\"\n                                        },\n                                        {\n                                            \"key\": \"only_favorites\",\n                                            \"value\": \"false\",\n                                            \"description\": \"[optional]. Boolean. Filtrar solo POIs marcados como favoritos (requiere autenticación)\"\n                                        }\n                                    ]\n                                },\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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"7f162f8b-71bb-475b-8be7-220f5f98fccd\",\n                                    \"name\": \"Search Points From Layer OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/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\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"search-point-layers.json\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_element_id\",\n                                                    \"value\": \"5c9b557e9650e67d42985e8d\",\n                                                    \"description\": \"[required]. String. ID del elemento de jurisdicción (MongoDB ObjectId)\"\n                                                },\n                                                {\n                                                    \"key\": \"layer_names[]\",\n                                                    \"value\": \"buildings:ciudadbbva_PL0_paths\",\n                                                    \"description\": \"[optional]. Array. Nombres internos de las capas a consultar. Ej: layer_names[]=buildings:poi_layer1\"\n                                                },\n                                                {\n                                                    \"key\": \"layer_ids[]\",\n                                                    \"value\": \"5d91db6311235f7f2b8b45a2\",\n                                                    \"description\": \"[optional]. Array. IDs de los MapLayers (MongoDB ObjectIds)\"\n                                                },\n                                                {\n                                                    \"key\": \"level\",\n                                                    \"value\": \"0\",\n                                                    \"description\": \"[optional]. Integer. Nivel/planta del edificio (0, 1, 2...)\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.4168\",\n                                                    \"description\": \"[optional]. Float. Latitud para ordenar por proximidad\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6892\",\n                                                    \"description\": \"[optional]. Float. Longitud para ordenar por proximidad\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"sala\",\n                                                    \"description\": \"[optional]. String. Texto de búsqueda para filtrar POIs por nombre/descripción\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"[optional]. Integer.  Número máximo de resultados\"\n                                                },\n                                                {\n                                                    \"key\": \"highlighted_poi\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"[optional]. Boolean. Filtrar solo POIs destacados\"\n                                                },\n                                                {\n                                                    \"key\": \"only_favorites\",\n                                                    \"value\": \"false\",\n                                                    \"description\": \"[optional]. Boolean. Filtrar solo POIs marcados como favoritos (requiere autenticación)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"type\\\": \\\"FeatureCollection\\\",\\n  \\\"features\\\": [\\n    {\\n      \\\"type\\\": \\\"Feature\\\",\\n      \\\"id\\\": \\\"ciudadbbva_PL0_paths.1\\\",\\n      \\\"geometry\\\": {\\n        \\\"type\\\": \\\"Point\\\",\\n        \\\"coordinates\\\": [\\n          -3.6892,\\n          40.4168\\n        ]\\n      },\\n      \\\"properties\\\": {\\n        \\\"description\\\": \\\"Sala de reuniones A\\\",\\n        \\\"short_description\\\": \\\"Sala A\\\",\\n        \\\"type\\\": \\\"meeting_room\\\",\\n        \\\"subtype\\\": \\\"small\\\",\\n        \\\"layer_name\\\": \\\"buildings:ciudadbbva_PL0_paths\\\",\\n        \\\"layer_id\\\": \\\"5d91db6311235f7f2b8b45a2\\\",\\n        \\\"level\\\": 0,\\n        \\\"favorite\\\": false,\\n        \\\"distance\\\": 125.5\\n      }\\n    },\\n    {\\n      \\\"type\\\": \\\"Feature\\\",\\n      \\\"id\\\": \\\"ciudadbbva_PL0_paths.2\\\",\\n      \\\"geometry\\\": {\\n        \\\"type\\\": \\\"Point\\\",\\n        \\\"coordinates\\\": [\\n          -3.6895,\\n          40.417\\n        ]\\n      },\\n      \\\"properties\\\": {\\n        \\\"description\\\": \\\"Cafetería principal\\\",\\n        \\\"short_description\\\": \\\"Cafetería\\\",\\n        \\\"type\\\": \\\"restaurant\\\",\\n        \\\"layer_name\\\": \\\"buildings:ciudadbbva_PL0_paths\\\",\\n        \\\"layer_id\\\": \\\"5d91db6311235f7f2b8b45a2\\\",\\n        \\\"level\\\": 0,\\n        \\\"favorite\\\": true,\\n        \\\"distance\\\": 230.2\\n      }\\n    }\\n  ],\\n  \\\"totalFeatures\\\": 2,\\n  \\\"numberMatched\\\": 2,\\n  \\\"numberReturned\\\": 2\\n}\"\n                                },\n                                {\n                                    \"id\": \"d58b483c-7b1a-4a39-835b-1de7a67a93f8\",\n                                    \"name\": \"Search Points From Layer Map Layer not found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/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\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"search-point-layers.json\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_element_id\",\n                                                    \"value\": \"5c9b557e9650e67d42985e8d\",\n                                                    \"description\": \"[required]. String. ID del elemento de jurisdicción (MongoDB ObjectId)\"\n                                                },\n                                                {\n                                                    \"key\": \"layer_names[]\",\n                                                    \"value\": \"buildings:ciudadbbva_PL0_paths\",\n                                                    \"description\": \"[optional]. Array. Nombres internos de las capas a consultar. Ej: layer_names[]=buildings:poi_layer1\"\n                                                },\n                                                {\n                                                    \"key\": \"layer_ids[]\",\n                                                    \"value\": \"5d91db6311235f7f2b8b45a2\",\n                                                    \"description\": \"[optional]. Array. IDs de los MapLayers (MongoDB ObjectIds)\"\n                                                },\n                                                {\n                                                    \"key\": \"level\",\n                                                    \"value\": \"0\",\n                                                    \"description\": \"[optional]. Integer. Nivel/planta del edificio (0, 1, 2...)\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.4168\",\n                                                    \"description\": \"[optional]. Float. Latitud para ordenar por proximidad\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6892\",\n                                                    \"description\": \"[optional]. Float. Longitud para ordenar por proximidad\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"sala\",\n                                                    \"description\": \"[optional]. String. Texto de búsqueda para filtrar POIs por nombre/descripción\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"[optional]. Integer.  Número máximo de resultados\"\n                                                },\n                                                {\n                                                    \"key\": \"highlighted_poi\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"[optional]. Boolean. Filtrar solo POIs destacados\"\n                                                },\n                                                {\n                                                    \"key\": \"only_favorites\",\n                                                    \"value\": \"false\",\n                                                    \"description\": \"[optional]. Boolean. Filtrar solo POIs marcados como favoritos (requiere autenticación)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"No Map Layers Found\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"acc742ab-2348-45a6-bb52-97da8bac98ba\",\n                                    \"name\": \"Search Points From Layer Invalid JurisdictionElement\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/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\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"search-point-layers.json\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"layer_names[]\",\n                                                    \"value\": \"buildings:ciudadbbva_PL0_paths\",\n                                                    \"description\": \"[optional]. Array. Nombres internos de las capas a consultar. Ej: layer_names[]=buildings:poi_layer1\"\n                                                },\n                                                {\n                                                    \"key\": \"layer_ids[]\",\n                                                    \"value\": \"5d91db6311235f7f2b8b45a2\",\n                                                    \"description\": \"[optional]. Array. IDs de los MapLayers (MongoDB ObjectIds)\"\n                                                },\n                                                {\n                                                    \"key\": \"level\",\n                                                    \"value\": \"0\",\n                                                    \"description\": \"[optional]. Integer. Nivel/planta del edificio (0, 1, 2...)\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.4168\",\n                                                    \"description\": \"[optional]. Float. Latitud para ordenar por proximidad\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6892\",\n                                                    \"description\": \"[optional]. Float. Longitud para ordenar por proximidad\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"sala\",\n                                                    \"description\": \"[optional]. String. Texto de búsqueda para filtrar POIs por nombre/descripción\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"20\",\n                                                    \"description\": \"[optional]. Integer.  Número máximo de resultados\"\n                                                },\n                                                {\n                                                    \"key\": \"highlighted_poi\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"[optional]. Boolean. Filtrar solo POIs destacados\"\n                                                },\n                                                {\n                                                    \"key\": \"only_favorites\",\n                                                    \"value\": \"false\",\n                                                    \"description\": \"[optional]. Boolean. Filtrar solo POIs marcados como favoritos (requiere autenticación)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Parameter \\\\\\\"jurisdiction_element_id\\\\\\\" is required\\\"\\n  }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"d0618eae-ac41-4a74-bce2-30e705c9ca2b\",\n                    \"description\": \" \"\n                }\n            ],\n            \"id\": \"e56f8505-aeed-45d7-b06f-637ba873dda6\",\n            \"description\": \" \"\n        },\n        {\n            \"name\": \"Management\",\n            \"item\": [\n                {\n                    \"name\": \"UpdatedVersion\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get Optional Updates\",\n                            \"id\": \"2a7bffb2-52a2-44c0-aa78-3a7e6988b28c\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/management/check_optional_updates\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"management\",\n                                        \"check_optional_updates\"\n                                    ]\n                                },\n                                \"description\": \"Este endpoint permite verificar si existen **actualizaciones opcionales disponibles** para la aplicación o cliente que realiza la solicitud.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"ace427e5-6021-4982-b48f-dc5a3b86ffdb\",\n                                    \"name\": \"Get Optional Updates OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/management/check_optional_updates\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"management\",\n                                                \"check_optional_updates\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"04aca461-c1af-4d3b-9e47-9437314e0173\"\n                }\n            ],\n            \"id\": \"69794f36-38f8-43c3-a290-cbeb56ad3c30\"\n        },\n        {\n            \"name\": \"MapLayer\",\n            \"item\": [\n                {\n                    \"name\": \"MapLayer\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get MapLayers\",\n                            \"id\": \"4c844e44-ee9e-4da8-b3eb-b1f51dd5fdae\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/map-layer/list?geoserver_serialize=true&include_without_level=true&jurisdiction_element_id=5c9b55579650e67d42985e80&level=2&type=request\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"map-layer\",\n                                        \"list\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"geoserver_serialize\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. Si es true, la respuesta se serializa con el grupo geoserver.\"\n                                        },\n                                        {\n                                            \"key\": \"include_without_level\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. Si es true, también se incluyen capas que no tienen nivel asignado.\"\n                                        },\n                                        {\n                                            \"key\": \"jurisdiction_element_id\",\n                                            \"value\": \"5c9b55579650e67d42985e80\",\n                                            \"description\": \"String. [optional]. ID de mongo de la jurisdicción sobre el cual se consulta información adicional\"\n                                        },\n                                        {\n                                            \"key\": \"level\",\n                                            \"value\": \"2\",\n                                            \"description\": \"Int [optional]. Permite definir el nivel de búsqueda en los escenarios donde fueron reportados en un edificio que posea varias capas.\"\n                                        },\n                                        {\n                                            \"key\": \"type\",\n                                            \"value\": \"request\",\n                                            \"description\": \"String. [optional]. Especifica el tipo de configuracion personalizada de la consulta.\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"c959f585-6aca-46a0-831b-e05a58bb7a55\",\n                                    \"name\": \"Get MapLayers OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/map-layer/list?geoserver_serialize=true&include_without_level=true&jurisdiction_element_id=5c9b55579650e67d42985e80&level=2&type=request\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"map-layer\",\n                                                \"list\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"geoserver_serialize\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"include_without_level\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_element_id\",\n                                                    \"value\": \"5c9b55579650e67d42985e80\"\n                                                },\n                                                {\n                                                    \"key\": \"level\",\n                                                    \"value\": \"2\"\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"request\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get MapLayer Question List\",\n                            \"id\": \"9076ef68-c201-4ded-ae2b-28e07f984411\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/map-layer/{{map_layer_id}}/question-list\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"map-layer\",\n                                        \"{{map_layer_id}}\",\n                                        \"question-list\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| map_layer_id | String | \\\\[required\\\\]. ID del map_layer sobre la cual se requiere obtener la lista de preguntas asociadas. |\\n\\nEste endpoint devuelve la **lista de preguntas** asociada a una capa de mapa.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"40cde4d9-7a65-42ae-9627-22ca3ec2f05e\",\n                                    \"name\": \"Get MapLayer Question List OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/map-layer/{{map_layer_id}}/question-list\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"map-layer\",\n                                                \"{{map_layer_id}}\",\n                                                \"question-list\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"nestingLevel\\\": 1,\\n    \\\"requiredVariables\\\": [],\\n    \\\"configurable_questions\\\": [\\n        {\\n            \\\"editable\\\": true,\\n            \\\"hidden_in_detail\\\": false,\\n            \\\"hidden_in_form\\\": false,\\n            \\\"hidden_in_open010_detail\\\": false,\\n            \\\"hidden_in_open010_form\\\": false,\\n            \\\"show_collapsed\\\": false,\\n            \\\"default_collapsed\\\": false,\\n            \\\"question\\\": {\\n                \\\"type\\\": \\\"text\\\",\\n                \\\"active\\\": true,\\n                \\\"code\\\": \\\"horario\\\",\\n                \\\"help_text\\\": \\\"*   Lunes a viernes: 8:00 - 20:00.  \\\\n*   Sábados, domingos y festivos: 9:00 - 20:00.\\\",\\n                \\\"help_text_translations\\\": {\\n                    \\\"es\\\": \\\"*   Lunes a viernes: 8:00 - 20:00.  \\\\n*   Sábados, domingos y festivos: 9:00 - 20:00.\\\",\\n                    \\\"en\\\": \\\"\\\",\\n                    \\\"ca\\\": \\\"\\\",\\n                    \\\"eu\\\": \\\"\\\",\\n                    \\\"fr\\\": \\\"\\\",\\n                    \\\"es_MX\\\": \\\"\\\",\\n                    \\\"en_AU\\\": \\\"\\\",\\n                    \\\"gl\\\": \\\"\\\"\\n                },\\n                \\\"id\\\": \\\"691eea114fb8f78005078b39\\\",\\n                \\\"question\\\": \\\"Horario\\\",\\n                \\\"question_translations\\\": {\\n                    \\\"es\\\": \\\"Horario\\\",\\n                    \\\"en\\\": \\\"\\\",\\n                    \\\"ca\\\": \\\"\\\",\\n                    \\\"eu\\\": \\\"\\\",\\n                    \\\"fr\\\": \\\"\\\",\\n                    \\\"es_MX\\\": \\\"\\\",\\n                    \\\"en_AU\\\": \\\"\\\",\\n                    \\\"gl\\\": \\\"\\\"\\n                },\\n                \\\"tags\\\": []\\n            },\\n            \\\"required\\\": false,\\n            \\\"default_value\\\": \\\"\\\",\\n            \\\"visibility\\\": \\\"public\\\",\\n            \\\"filterable\\\": false\\n        }\\n    ],\\n    \\\"id\\\": \\\"691eea734fb8f78005078b3b\\\",\\n    \\\"jurisdictions\\\": [\\n        {\\n            \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n            \\\"name\\\": \\\"Alcobendas\\\",\\n            \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\\\"\\n        }\\n    ],\\n    \\\"name\\\": \\\"POI Alcobendas (Punto limpio fijo)\\\",\\n    \\\"tags\\\": [\\n        {\\n            \\\"name\\\": \\\"poi\\\",\\n            \\\"color\\\": \\\"#000000\\\",\\n            \\\"id\\\": \\\"poi\\\"\\n        }\\n    ],\\n    \\\"use_cases\\\": [],\\n    \\\"description\\\": \\\"Punto limpio fijo\\\"\\n}\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"831ea7f7-1562-4f86-8082-ac3044033a63\"\n                }\n            ],\n            \"id\": \"1daa44bf-966e-48bd-bb6b-84ed643311d3\"\n        },\n        {\n            \"name\": \"Notification\",\n            \"item\": [\n                {\n                    \"name\": \"Unsubscribe\",\n                    \"item\": [\n                        {\n                            \"name\": \"Unsubscribe From Email Notification\",\n                            \"id\": \"b1ba5bb4-6ccb-49c1-b425-5f885c058f74\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"email\\\": \\\"S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=\\\",\\n    \\\"request_id\\\": \\\"539eb901e940f62c788b456a\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/notification/unsubscribe\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"notification\",\n                                        \"unsubscribe\"\n                                    ]\n                                },\n                                \"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).\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| email | String | \\\\[required\\\\]  <br>Email encriptado del usuario al que se quieren desactivar las notificaciones por email |\\n| request_id | String | \\\\[required\\\\] Identificador único del aviso para el que se quieren desactivar las  <br>notificaciones |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"f119d674-13dc-4d54-8628-313303a2eaa3\",\n                                    \"name\": \"Response OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"email\\\": \\\"S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=\\\",\\n    \\\"request_id\\\": \\\"539eb901e940f62c788b456a\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/notification/unsubscribe\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"notification\",\n                                                \"unsubscribe\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"message\\\": \\\"You have unsubscribed from email notifications for the request 5000056\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"72bac7f2-2969-48b1-9522-0284f2cfd21c\",\n                                    \"name\": \"Error Decrypting Email\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"email\\\": \\\"email_fake@example.com\\\",\\n    \\\"request_id\\\": \\\"539eb901e940f62c788b456a\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/notification/unsubscribe\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"notification\",\n                                                \"unsubscribe\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Error decrypting email\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"444501d8-fa29-4cd3-aa6a-0ec52994f6b3\",\n                                    \"name\": \"Error RequestFollowers Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"email\\\": \\\"S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=\\\",\\n    \\\"request_id\\\": \\\"539eb901e940f62c788b456a\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/notification/unsubscribe\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"notification\",\n                                                \"unsubscribe\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"RequestFollowers not found\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"a619f86e-1822-4ab7-a403-753bdd8322e7\",\n                                    \"name\": \"Error Saving RequestFollower\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"email\\\": \\\"S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=\\\",\\n    \\\"request_id\\\": \\\"539eb901e940f62c788b456a\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/notification/unsubscribe\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"notification\",\n                                                \"unsubscribe\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Error saving RequestFollower\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"8bcc6105-0d99-4a89-bb87-daa7fcc0decd\",\n                                    \"name\": \"Error Flush RequestFollower\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"email\\\": \\\"S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=\\\",\\n    \\\"request_id\\\": \\\"539eb901e940f62c788b456a\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/notification/unsubscribe\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"notification\",\n                                                \"unsubscribe\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Error saving RequestFollower\\\"\\n    }\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"4fd34ad3-0f93-4162-bfb1-4ca018257a8e\",\n                    \"description\": \" \"\n                }\n            ],\n            \"id\": \"820d07b5-dc3c-4fa5-97e8-3dd6eb723761\",\n            \"description\": \" \"\n        },\n        {\n            \"name\": \"POI\",\n            \"item\": [\n                {\n                    \"name\": \"PoiRoute\",\n                    \"item\": [\n                        {\n                            \"name\": \"PoiRoute Detail\",\n                            \"id\": \"623b5c6f-6927-45d2-848b-07fd5fd24264\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/poi-route/{{poi_route_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"poi-route\",\n                                        \"{{poi_route_id}}\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| poi_route_id | String | \\\\[required\\\\] Id de mongo de PoiRoute |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"3147d802-2b9d-42ed-b0e8-5cdf43dfbd1c\",\n                                    \"name\": \"Respuesta OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/poi-route/68ef4cb43f953a28d8552ce2\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"poi-route\",\n                                                \"68ef4cb43f953a28d8552ce2\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"id\\\": \\\"690388de6a8055eff602ab63\\\",\\n    \\\"pois_by_layer\\\": [],\\n    \\\"name\\\": \\\"dsadsad\\\",\\n    \\\"jurisdiction_element\\\": {\\n        \\\"id\\\": \\\"5c9b55579650e67d42985e80\\\",\\n        \\\"visible_name\\\": \\\"Alcobendas\\\"\\n    },\\n    \\\"description\\\": \\\"dsadsadsaddasd\\\",\\n    \\\"images\\\": [\\n        \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690388c9766e53.10949981.jpg\\\"\\n    ],\\n    \\\"starting_point\\\": {\\n        \\\"lat\\\": 40.546819487301,\\n        \\\"long\\\": -3.646459174043\\n    },\\n    \\\"estimated_difficulty\\\": \\\"easy\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"1c20dba9-b896-478c-ac29-73842bd09ae0\",\n                                    \"name\": \"Error Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{baseUrl}}/poi-route/68ef4cb43f953aa8d8552ce2\",\n                                            \"host\": [\n                                                \"{{baseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"poi-route\",\n                                                \"68ef4cb43f953aa8d8552ce2\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"Object not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"PoiRoute List\",\n                            \"id\": \"0ef26415-bb39-4994-8712-79057e40f39f\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/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\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"poi-route\",\n                                        \"list\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"q\",\n                                            \"value\": \"Ruta 12\",\n                                            \"description\": \"String [optional]. Parámetro de búsqueda opcional utilizado para filtrar las rutas de POIs por una palabra clave o frase.\"\n                                        },\n                                        {\n                                            \"key\": \"juridiction_element_ids[]\",\n                                            \"value\": \"5c9b55579650e67d42985e81\",\n                                            \"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 ,.\"\n                                        },\n                                        {\n                                            \"key\": \"difficulty[]\",\n                                            \"value\": \"easy\",\n                                            \"description\": \"Array [optional]. Lista opcional de niveles de dificultad que permite filtrar las rutas de POIs según su grado de dificultad.\"\n                                        },\n                                        {\n                                            \"key\": \"min_distance\",\n                                            \"value\": \"20.5\",\n                                            \"description\": \"Float [optional]. Distancia mínima (en metros)\"\n                                        },\n                                        {\n                                            \"key\": \"max_distance\",\n                                            \"value\": \"100\",\n                                            \"description\": \"Float [optional]. Distancia máxima (en metros)\"\n                                        },\n                                        {\n                                            \"key\": \"min_duration\",\n                                            \"value\": \"20\",\n                                            \"description\": \"Float [optional]. Duración mínima (en minutos)\"\n                                        },\n                                        {\n                                            \"key\": \"max_duration\",\n                                            \"value\": \"120\",\n                                            \"description\": \"Float [optional]. Duración máxima (en minutos)\"\n                                        },\n                                        {\n                                            \"key\": \"page\",\n                                            \"value\": \"1\",\n                                            \"description\": \"Int [optional]. Página\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"10\",\n                                            \"description\": \"Int [optional]. Resultados por página\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"ea8462d1-5d6f-4974-bda7-b23d6020a5b6\",\n                                    \"name\": \"Respuesta OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"name\\\": \\\"Ruta Prueba\\\",\\n    \\\"jurisdiction_element\\\": \\\"5c9b55579650e67d42985e81\\\",\\n    \\\"description\\\": \\\"TEST2\\\",\\n    \\\"images\\\": [\\n        \\\"https://s3.eu-west-1.amazonaws.com/static.dev.images.org/undefined/68cda0a4d34a879071.png\\\"\\n    ],\\n    \\\"starting_point\\\": {\\n        \\\"lat\\\": 40.5346163476741,\\n        \\\"lng\\\": -3.6356105327592885\\n    },\\n    \\\"estimated_difficulty\\\": \\\"easy\\\",\\n    \\\"estimated_duration\\\": 20,\\n    \\\"estimated_distance\\\": 300.63,\\n    \\\"pois_by_layer\\\": [\\n        {\\n            \\\"layer_id\\\": \\\"5d91db6311235f7f2b8b45a2\\\",\\n            \\\"pois\\\": [\\n                \\\"Puntos_de_interes.1\\\",\\n                \\\"Puntos_de_interes.2\\\"\\n            ]\\n        }\\n    ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{baseUrl}}/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\",\n                                            \"host\": [\n                                                \"{{baseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"poi-route\",\n                                                \"list\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"difficulty[]\",\n                                                    \"value\": \"easy\"\n                                                },\n                                                {\n                                                    \"key\": \"min_distance\",\n                                                    \"value\": \"0.2\"\n                                                },\n                                                {\n                                                    \"key\": \"max_distance\",\n                                                    \"value\": \"300.8\"\n                                                },\n                                                {\n                                                    \"key\": \"min_duration\",\n                                                    \"value\": \"10\"\n                                                },\n                                                {\n                                                    \"key\": \"max_duration\",\n                                                    \"value\": \"20\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_element_ids[]\",\n                                                    \"value\": \"5c9b55579650e67d42985e80\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"Ruta\"\n                                                },\n                                                {\n                                                    \"key\": \"difficulty[]\",\n                                                    \"value\": \"hard\"\n                                                },\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"10\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"id\\\": \\\"69021857c741eca1c9044c52\\\",\\n        \\\"pois_by_layer\\\": [],\\n        \\\"name\\\": \\\"dsadasd\\\",\\n        \\\"jurisdiction_element\\\": {\\n            \\\"id\\\": \\\"5c9b55579650e67d42985e80\\\",\\n            \\\"visible_name\\\": \\\"Alcobendas\\\"\\n        },\\n        \\\"description\\\": \\\"dsdasdas\\\",\\n        \\\"images\\\": [\\n            \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/69021849ab7019.53062596.jpg\\\"\\n        ],\\n        \\\"starting_point\\\": {\\n            \\\"lat\\\": 40.547983940487,\\n            \\\"long\\\": -3.6435103563539\\n        }\\n    },\\n    {\\n        \\\"id\\\": \\\"690221eaa6d759e3a1088c92\\\",\\n        \\\"pois_by_layer\\\": [],\\n        \\\"name\\\": \\\"dsadasdas\\\",\\n        \\\"jurisdiction_element\\\": {\\n            \\\"id\\\": \\\"5c9b55579650e67d42985e80\\\",\\n            \\\"visible_name\\\": \\\"Alcobendas\\\"\\n        },\\n        \\\"description\\\": \\\"dasdasdas\\\",\\n        \\\"images\\\": [\\n            \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690221d5c97a07.79522579.jpg\\\"\\n        ],\\n        \\\"starting_point\\\": {\\n            \\\"lat\\\": 40.534996442872,\\n            \\\"long\\\": -3.6363975803572\\n        }\\n    },\\n    {\\n        \\\"id\\\": \\\"6902822405139a6f81065a25\\\",\\n        \\\"pois_by_layer\\\": [],\\n        \\\"name\\\": \\\"dsadsadas\\\",\\n        \\\"jurisdiction_element\\\": {\\n            \\\"id\\\": \\\"5c9b55579650e67d42985e80\\\",\\n            \\\"visible_name\\\": \\\"Alcobendas\\\"\\n        },\\n        \\\"description\\\": \\\"dsadsadasdsadsadsa\\\",\\n        \\\"images\\\": [\\n            \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/69028218d63731.69314275.jpg\\\"\\n        ],\\n        \\\"starting_point\\\": {\\n            \\\"lat\\\": 40.53611679952,\\n            \\\"long\\\": -3.6342971602309\\n        }\\n    },\\n    {\\n        \\\"id\\\": \\\"69036e011629cd75330aaaa4\\\",\\n        \\\"pois_by_layer\\\": [],\\n        \\\"name\\\": \\\"sadasdsa\\\",\\n        \\\"jurisdiction_element\\\": {\\n            \\\"id\\\": \\\"5c9b55579650e67d42985e80\\\",\\n            \\\"visible_name\\\": \\\"Alcobendas\\\"\\n        },\\n        \\\"description\\\": \\\"dsadsad\\\",\\n        \\\"images\\\": [],\\n        \\\"starting_point\\\": {\\n            \\\"lat\\\": 40.548798394585,\\n            \\\"long\\\": -3.6431276812872\\n        },\\n        \\\"estimated_difficulty\\\": \\\"easy\\\"\\n    },\\n    {\\n        \\\"id\\\": \\\"6903846719995a489a088074\\\",\\n        \\\"pois_by_layer\\\": [],\\n        \\\"name\\\": \\\"dsadasdas\\\",\\n        \\\"jurisdiction_element\\\": {\\n            \\\"id\\\": \\\"5c9b55579650e67d42985e80\\\",\\n            \\\"visible_name\\\": \\\"Alcobendas\\\"\\n        },\\n        \\\"description\\\": \\\"dsadasdasdas\\\",\\n        \\\"images\\\": [],\\n        \\\"starting_point\\\": {\\n            \\\"lat\\\": 40.543638358867,\\n            \\\"long\\\": -3.6576112688977\\n        },\\n        \\\"estimated_difficulty\\\": \\\"easy\\\"\\n    },\\n    {\\n        \\\"id\\\": \\\"690388de6a8055eff602ab63\\\",\\n        \\\"pois_by_layer\\\": [],\\n        \\\"name\\\": \\\"dsadsad\\\",\\n        \\\"jurisdiction_element\\\": {\\n            \\\"id\\\": \\\"5c9b55579650e67d42985e80\\\",\\n            \\\"visible_name\\\": \\\"Alcobendas\\\"\\n        },\\n        \\\"description\\\": \\\"dsadsadsaddasd\\\",\\n        \\\"images\\\": [\\n            \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690388c9766e53.10949981.jpg\\\"\\n        ],\\n        \\\"starting_point\\\": {\\n            \\\"lat\\\": 40.546819487301,\\n            \\\"long\\\": -3.646459174043\\n        },\\n        \\\"estimated_difficulty\\\": \\\"easy\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"52bcb53b-5669-4f19-90aa-7525126ded1b\"\n                }\n            ],\n            \"id\": \"f12674a4-867a-47f7-9584-7469401a49c1\"\n        },\n        {\n            \"name\": \"PoiExtraData\",\n            \"item\": [\n                {\n                    \"name\": \"PoiExtraData\",\n                    \"item\": [\n                        {\n                            \"name\": \"Shorten Url\",\n                            \"id\": \"359a47c2-ab62-4038-9498-064eb4e24767\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/{{jurisdiction_id}}/shorten-url?poi_ids=alcobendas_poi_aparcapatinetes.26, alcobendas_poi_aparcapatinetes.27, alcobendas_poi_aparcapatinetes.28\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"{{jurisdiction_id}}\",\n                                        \"shorten-url\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"poi_ids\",\n                                            \"value\": \"alcobendas_poi_aparcapatinetes.26, alcobendas_poi_aparcapatinetes.27, alcobendas_poi_aparcapatinetes.28\",\n                                            \"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.\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"f9bf9ab8-2e13-42c6-a974-d95b36523362\",\n                                    \"name\": \"Response OK Shorten Url\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/{{jurisdiction_id}}/shorten-url?poi_ids=alcobendas_poi_aparcapatinetes.26, alcobendas_poi_aparcapatinetes.27, alcobendas_poi_aparcapatinetes.28\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"{{jurisdiction_id}}\",\n                                                \"shorten-url\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"poi_ids\",\n                                                    \"value\": \"alcobendas_poi_aparcapatinetes.26, alcobendas_poi_aparcapatinetes.27, alcobendas_poi_aparcapatinetes.28\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"items\\\": [\\n        {\\n            \\\"poi_id\\\": \\\"alcobendas_poi_aparcapatinetes.26\\\",\\n            \\\"shortened_url\\\": \\\"https://zeus.mejoratuciudad.org/yourls/5reoe\\\"\\n        },\\n        {\\n            \\\"poi_id\\\": \\\"alcobendas_poi_aparcapatinetes.27\\\",\\n            \\\"shortened_url\\\": \\\"https://zeus.mejoratuciudad.org/yourls/dq8b9\\\"\\n        },\\n        {\\n            \\\"poi_id\\\": \\\"alcobendas_poi_aparcapatinetes.28\\\",\\n            \\\"shortened_url\\\": \\\"https://zeus.mejoratuciudad.org/yourls/fpjfl\\\"\\n        }\\n    ]\\n}\"\n                                },\n                                {\n                                    \"id\": \"c2f1eb26-1eb7-4025-96f4-f0ca161531d7\",\n                                    \"name\": \"Error Jurisdiction Id Was Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/{{jurisdiction_id}}/shorten-url?poi_ids=alcobendas_poi_aparcapatinetes.26, alcobendas_poi_aparcapatinetes.27, alcobendas_poi_aparcapatinetes.28\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"{{jurisdiction_id}}\",\n                                                \"shorten-url\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"poi_ids\",\n                                                    \"value\": \"alcobendas_poi_aparcapatinetes.26, alcobendas_poi_aparcapatinetes.27, alcobendas_poi_aparcapatinetes.28\",\n                                                    \"description\": \"String. [required]. ID del POI que se quiere consultar.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"message\\\": \\\"jurisdiction was not found\\\"\\n}\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"25ecae0c-8b58-404a-93fd-78a0e4c49996\",\n                    \"description\": \" \"\n                }\n            ],\n            \"id\": \"b1901d49-c5e3-4e02-849d-7325d2e20b9e\",\n            \"description\": \" \"\n        },\n        {\n            \"name\": \"Release\",\n            \"item\": [\n                {\n                    \"name\": \"Release\",\n                    \"item\": [\n                        {\n                            \"name\": \"Releases\",\n                            \"id\": \"8c1fb55f-3cf3-4997-be29-527d243a2105\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/releases?jurisdiction_ids=org.alcobendas&appType=backoffice&limit=30&page=1\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"releases\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_ids\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"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.\"\n                                        },\n                                        {\n                                            \"key\": \"appType\",\n                                            \"value\": \"backoffice\",\n                                            \"description\": \"String. [optional]. Tipo de aplicación para filtrar los releases, usado para encontrar la aplicación asociada.\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"30\",\n                                            \"description\": \"Int [optional]. Permite definir el limite de cada página de resultados.\"\n                                        },\n                                        {\n                                            \"key\": \"page\",\n                                            \"value\": \"1\",\n                                            \"description\": \"Int [optional]. Permite definir la página de los resultados encontrados según la cantidad de los resultados encontrados.\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"46685f19-47e4-4c0b-a11b-6716a8ec6c7b\",\n                                    \"name\": \"Releases OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/releases?jurisdiction_ids=org.alcobendas&appType=backoffice&limit=30&page=1\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"releases\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas\"\n                                                },\n                                                {\n                                                    \"key\": \"appType\",\n                                                    \"value\": \"backoffice\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"30\"\n                                                },\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"status\\\": \\\"PUBLISHED\\\",\\n        \\\"application_types\\\": [\\n            {\\n                \\\"id\\\": \\\"5620af276aa91868238b4567\\\",\\n                \\\"jurisdictions\\\": [\\n                    {\\n                        \\\"id\\\": \\\"561e04ed6aa918910c8b4592\\\",\\n                        \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n                        \\\"name\\\": \\\"Alcobendas\\\",\\n                        \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\\\"\\n                    }\\n                ],\\n                \\\"name\\\": \\\"Alcobendas\\\",\\n                \\\"type\\\": \\\"cityapp\\\"\\n            }\\n        ],\\n        \\\"author\\\": {\\n            \\\"id\\\": \\\"6925bd2f4bed3bfd7f0ae777\\\",\\n            \\\"first_name\\\": \\\"Silvia\\\",\\n            \\\"last_name\\\": \\\"Reyes\\\",\\n            \\\"avatar\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\\\"\\n        },\\n        \\\"channels\\\": [],\\n        \\\"company\\\": {\\n            \\\"alias\\\": \\\"ADDA OPS\\\",\\n            \\\"id\\\": \\\"607040ae93fba54b048b457a\\\",\\n            \\\"name\\\": \\\"ALC_ADDA_OPS\\\"\\n        },\\n        \\\"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\\\\\\\")\\\",\\n        \\\"emergency\\\": false,\\n        \\\"end_date\\\": \\\"2025-12-08T09:10:32+00:00\\\",\\n        \\\"files\\\": [],\\n        \\\"geofences\\\": [],\\n        \\\"id\\\": \\\"692ead28feae9d27d30e0a4a\\\",\\n        \\\"images\\\": [\\n            {\\n                \\\"name\\\": \\\"pRUEBAS_MTC_PRE.jpg\\\",\\n                \\\"url\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/release/692ead034bb615.60771455.jpg\\\"\\n            }\\n        ],\\n        \\\"jurisdiction_element\\\": {\\n            \\\"extent\\\": [],\\n            \\\"id\\\": \\\"663550808a8e6f62c10d9e7e\\\",\\n            \\\"name\\\": \\\"Prueba22\\\",\\n            \\\"visible_name\\\": \\\"Prueba02\\\",\\n            \\\"is_main\\\": false,\\n            \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction_element/667b22dbd531f074699340.png\\\"\\n        },\\n        \\\"jurisdictions\\\": [\\n            {\\n                \\\"id\\\": \\\"561e04ed6aa918910c8b4592\\\",\\n                \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n                \\\"name\\\": \\\"Alcobendas\\\",\\n                \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\\\"\\n            }\\n        ],\\n        \\\"last_editor\\\": {\\n            \\\"id\\\": \\\"6925bd2f4bed3bfd7f0ae777\\\",\\n            \\\"first_name\\\": \\\"Silvia\\\",\\n            \\\"last_name\\\": \\\"Reyes\\\",\\n            \\\"avatar\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\\\"\\n        },\\n        \\\"links\\\": [\\n            {\\n                \\\"link\\\": \\\"https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%2C-grat.aspx\\\",\\n                \\\"name\\\": \\\"prueba\\\"\\n            }\\n        ],\\n        \\\"name\\\": \\\"PRUEBA COMUNICACION 3\\\",\\n        \\\"notification_mode\\\": {\\n            \\\"email_notification\\\": false,\\n            \\\"push_notification\\\": true,\\n            \\\"web_notification\\\": false\\n        },\\n        \\\"start_date\\\": \\\"2025-12-02T09:09:27+00:00\\\",\\n        \\\"tags\\\": [],\\n        \\\"push_only\\\": false,\\n        \\\"action\\\": [],\\n        \\\"buttons\\\": [],\\n        \\\"backoffice_users\\\": [],\\n        \\\"users\\\": [],\\n        \\\"notify_anonymous_users\\\": false,\\n        \\\"map_layer_ids\\\": []\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"9ac512fe-23ce-4d1c-8c05-afda7d890ad2\",\n                                    \"name\": \"Releases Invalid Jurisdiction\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/releases\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"releases\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error_code\\\": 1040,\\n    \\\"error_msg\\\": \\\"Jurisdiction Not found\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"My Releases\",\n                            \"id\": \"43400535-dc62-4ecd-9645-da0c5d92a338\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/my-releases?appType=backoffice&jurisdiction_ids=org.alcobendas&limit=30&page=1\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"my-releases\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"appType\",\n                                            \"value\": \"backoffice\",\n                                            \"description\": \"String [required]. Tipo de aplicación para filtrar los releases, usado para encontrar la aplicación asociada.\"\n                                        },\n                                        {\n                                            \"key\": \"jurisdiction_ids\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"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.\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"30\",\n                                            \"description\": \"Int [optional]. Permite definir el limite de cada página de resultados.\"\n                                        },\n                                        {\n                                            \"key\": \"page\",\n                                            \"value\": \"1\",\n                                            \"description\": \"Int [optional]. Permite definir la página de los resultados encontrados según la cantidad de los resultados encontrados.\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"88f545a9-8ae4-4e1f-a9ba-c07f84e66997\",\n                                    \"name\": \"My Releases OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/my-releases?appType=backoffice&jurisdiction_ids=org.alcobendas&limit=30&page=1\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"my-releases\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"appType\",\n                                                    \"value\": \"backoffice\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"30\"\n                                                },\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"status\\\": \\\"PUBLISHED\\\",\\n        \\\"lat\\\": 40.3948356,\\n        \\\"lng\\\": -3.6995988,\\n        \\\"address_string\\\": \\\"Cl. de Aldea del Fresno, 37, Arganzuela, 28045 Madrid, Spain\\\",\\n        \\\"application_types\\\": [\\n            {\\n                \\\"id\\\": \\\"5caf0fc80e9867512f8b458f\\\",\\n                \\\"jurisdictions\\\": [\\n                    {\\n                        \\\"id\\\": \\\"561e04ed6aa918910c8b4592\\\",\\n                        \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n                        \\\"name\\\": \\\"Alcobendas\\\",\\n                        \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\\\"\\n                    }\\n                ],\\n                \\\"name\\\": \\\"WorkApp Generica\\\",\\n                \\\"type\\\": \\\"workapp\\\"\\n            }\\n        ],\\n        \\\"author\\\": {\\n            \\\"id\\\": \\\"66369df4d48ec432de0df580\\\",\\n            \\\"avatar\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/avatars/67ccb6b12b5ce089732382.png\\\",\\n            \\\"first_name\\\": \\\"Carlos\\\",\\n            \\\"last_name\\\": \\\"Ascencio\\\"\\n        },\\n        \\\"channels\\\": [],\\n        \\\"company\\\": {\\n            \\\"alias\\\": \\\"ADDA OPS\\\",\\n            \\\"id\\\": \\\"607040ae93fba54b048b457a\\\",\\n            \\\"name\\\": \\\"ALC_ADDA_OPS\\\"\\n        },\\n        \\\"description\\\": \\\"Prueba de comunicación\\\",\\n        \\\"emergency\\\": false,\\n        \\\"end_date\\\": \\\"2025-12-06T19:52:40+00:00\\\",\\n        \\\"event_end_date\\\": \\\"2025-12-06T19:53:00+00:00\\\",\\n        \\\"event_start_date\\\": \\\"2025-11-30T19:52:58+00:00\\\",\\n        \\\"files\\\": [\\n            {\\n                \\\"name\\\": \\\"En blanco.pdf\\\",\\n                \\\"url\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/releases/692ca0addc6be7.28141943.pdf\\\"\\n            }\\n        ],\\n        \\\"geofences\\\": [],\\n        \\\"id\\\": \\\"692ca0e68accbac9c30da945\\\",\\n        \\\"images\\\": [\\n            {\\n                \\\"name\\\": \\\"13.jpg\\\",\\n                \\\"url\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/release/692ca0cff14582.98105484.jpg\\\"\\n            }\\n        ],\\n        \\\"jurisdictions\\\": [\\n            {\\n                \\\"id\\\": \\\"561e04ed6aa918910c8b4592\\\",\\n                \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n                \\\"name\\\": \\\"Alcobendas\\\",\\n                \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\\\"\\n            }\\n        ],\\n        \\\"last_editor\\\": {\\n            \\\"id\\\": \\\"66369df4d48ec432de0df580\\\",\\n            \\\"avatar\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/avatars/67ccb6b12b5ce089732382.png\\\",\\n            \\\"first_name\\\": \\\"Carlos\\\",\\n            \\\"last_name\\\": \\\"Ascencio\\\"\\n        },\\n        \\\"links\\\": [\\n            {\\n                \\\"link\\\": \\\"https://es.wikipedia.org/wiki/Hola_mundo\\\",\\n                \\\"name\\\": \\\"Contacto\\\"\\n            }\\n        ],\\n        \\\"name\\\": \\\"Comunicado de prueba\\\",\\n        \\\"notification_mode\\\": {\\n            \\\"email_notification\\\": true,\\n            \\\"push_notification\\\": true,\\n            \\\"web_notification\\\": false\\n        },\\n        \\\"position\\\": {\\n            \\\"lng\\\": -3.6995988,\\n            \\\"address_string\\\": \\\"Cl. de Aldea del Fresno, 37, Arganzuela, 28045 Madrid, Spain\\\",\\n            \\\"lat\\\": 40.3948356,\\n            \\\"long\\\": -3.6995988,\\n            \\\"location_additional_data\\\": []\\n        },\\n        \\\"start_date\\\": \\\"2025-11-30T20:54:03+00:00\\\",\\n        \\\"tags\\\": [],\\n        \\\"push_only\\\": false,\\n        \\\"action\\\": [],\\n        \\\"buttons\\\": [],\\n        \\\"backoffice_users\\\": [],\\n        \\\"users\\\": [],\\n        \\\"notify_anonymous_users\\\": false,\\n        \\\"map_layer_ids\\\": []\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"b397dfff-ea56-4b1a-a95b-e6af80ce684a\",\n                                    \"name\": \"My Releases Invalid Jurisdiction\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/my-releases?jurisdiction_ids=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"my-releases\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"Invalid Jurisdiction\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get Release\",\n                            \"id\": \"21cd27b6-79e7-4278-8694-9a65b4811c52\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/release/{{release_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"release\",\n                                        \"{{release_id}}\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| release_id | String | ID del release sobre la cual se desea consultar. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"fabe55d6-9a0f-43b1-bd55-31fefc1cd7f1\",\n                                    \"name\": \"Get Release OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/release/{{release_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"release\",\n                                                \"{{release_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"f35bd256-99ca-4efc-bc95-5b823cd8d698\"\n                }\n            ],\n            \"id\": \"415c443a-78f2-4842-8cc2-db854b1bd8c5\"\n        },\n        {\n            \"name\": \"Request\",\n            \"item\": [\n                {\n                    \"name\": \"Request Complaint\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get Request Complaints\",\n                            \"id\": \"941b231b-06f6-4293-95de-5fb70be36bb0\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/complaints\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"{{request_token}}\",\n                                        \"complaints\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| request_token | String | ID de la request sobre la cual se desea consultar. |\\n\\nEste endpoint devuelve todas las **quejas** asociadas a un _Request_ específico identificado por su `token`.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"1d23e8cb-e81c-4d19-b120-df16f69f5bf6\",\n                                    \"name\": \"Get Request Complaints OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/complaints\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_token}}\",\n                                                \"complaints\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"datetime\\\": \\\"2025-12-04T13:13:44+00:00\\\",\\n        \\\"origin_create\\\": \\\"Acciona\\\",\\n        \\\"id\\\": \\\"693189089ddc57f7cc015d65\\\",\\n        \\\"source\\\": {\\n            \\\"alias\\\": \\\"Interno (Backoffice)\\\",\\n            \\\"id\\\": \\\"5850de88e22c6d9f51b17719\\\"\\n        }\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Post Request Complaint\",\n                            \"id\": \"7fc37ee5-d449-4e45-a607-51f8cfc379ff\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"formdata\",\n                                    \"formdata\": [\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"description\",\n                                            \"value\": \"Prueba\",\n                                            \"description\": \"String [optional]. Descripción detallada de la queja presentada sobre la solicitud.\"\n                                        },\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"email\",\n                                            \"value\": \"diana.leon@gopenux.com\",\n                                            \"description\": \"String [optional]. Correo electrónico de contacto asociado a la queja.\"\n                                        },\n                                        {\n                                            \"key\": \"email_notification\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. Indica si el usuario desea recibir notificaciones por email.\",\n                                            \"type\": \"text\",\n                                            \"uuid\": \"11c69b70-0966-40ae-aaa6-e97390cc4f49\"\n                                        },\n                                        {\n                                            \"type\": \"file\",\n                                            \"key\": \"files[0]\",\n                                            \"description\": \"File [optional]. Archivos adjuntos relacionados con la queja.\",\n                                            \"value\": null\n                                        },\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"first_name\",\n                                            \"value\": \"Diana Lucia\",\n                                            \"description\": \"String [optional]. Nombre del usuario que presenta la queja.\"\n                                        },\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"follow_request\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. Indica si el usuario desea hacer seguimiento a la solicitud relacionada.\"\n                                        },\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"last_name\",\n                                            \"value\": \"Leon Figueroa\",\n                                            \"description\": \"String [optional]. Apellido del usuario que presenta la queja.\"\n                                        },\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"originCreate\",\n                                            \"value\": \"Lamoraleja\",\n                                            \"description\": \"String [optional]. Origen desde donde se crea la queja.\"\n                                        },\n                                        {\n                                            \"key\": \"push_notification\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. Indica si el usuario desea recibir notificación push.\",\n                                            \"type\": \"text\",\n                                            \"uuid\": \"d98442f4-87b2-4af9-9119-6b389d6d0461\"\n                                        },\n                                        {\n                                            \"key\": \"sms_notification\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. Indica si el usuario desea recibir notificaciones por SMS.\",\n                                            \"type\": \"text\",\n                                            \"uuid\": \"0cbeef11-8b0f-4115-a346-9045068281e4\"\n                                        },\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"source\",\n                                            \"value\": \"5850de88e22c6d9f51b17719\",\n                                            \"description\": \"String [optional]. ID de la fuente u origen categórico de la queja.\"\n                                        },\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"user\",\n                                            \"value\": \"68af0c6690c69558be01ebee\",\n                                            \"description\": \"String [optional]. ID del usuario que registra la queja.\"\n                                        }\n                                    ]\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/complaint\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"{{request_token}}\",\n                                        \"complaint\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| request_token | String | ID de la request sobre la cual se desea consultar. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"ce50f4e5-6bac-49bb-9418-5014185790c0\",\n                                    \"name\": \"Post Request Complaint OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"type\": \"text\",\n                                                    \"key\": \"description\",\n                                                    \"value\": \"Prueba\"\n                                                },\n                                                {\n                                                    \"type\": \"text\",\n                                                    \"key\": \"email\",\n                                                    \"value\": \"diana.leon@gopenux.com\"\n                                                },\n                                                {\n                                                    \"type\": \"file\",\n                                                    \"key\": \"files[0]\",\n                                                    \"src\": []\n                                                },\n                                                {\n                                                    \"type\": \"text\",\n                                                    \"key\": \"first_name\",\n                                                    \"value\": \"Diana Lucia\"\n                                                },\n                                                {\n                                                    \"type\": \"text\",\n                                                    \"key\": \"follow_request\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"type\": \"text\",\n                                                    \"key\": \"last_name\",\n                                                    \"value\": \"Leon Figueroa\"\n                                                },\n                                                {\n                                                    \"type\": \"text\",\n                                                    \"key\": \"originCreate\",\n                                                    \"value\": \"Lamoraleja\"\n                                                },\n                                                {\n                                                    \"type\": \"text\",\n                                                    \"key\": \"source\",\n                                                    \"value\": \"5850de88e22c6d9f51b17719\"\n                                                },\n                                                {\n                                                    \"type\": \"text\",\n                                                    \"key\": \"user\",\n                                                    \"value\": \"68af0c6690c69558be01ebee\"\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/complaint\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_token}}\",\n                                                \"complaint\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"datetime\\\": \\\"2025-12-19T13:51:20+00:00\\\",\\n    \\\"origin_create\\\": \\\"Lamoraleja\\\",\\n    \\\"description\\\": \\\"Prueba\\\",\\n    \\\"email\\\": \\\"diana.leon@gopenux.com\\\",\\n    \\\"first_name\\\": \\\"Diana Lucia\\\",\\n    \\\"follow_request\\\": true,\\n    \\\"id\\\": \\\"69455858618773d55a0a4413\\\",\\n    \\\"last_name\\\": \\\"Leon Figueroa\\\",\\n    \\\"request\\\": {\\n        \\\"following_count\\\": 1,\\n        \\\"reiterations_count\\\": 0,\\n        \\\"complaints_count\\\": 1,\\n        \\\"token\\\": \\\"6903b227498563d72c0ca77e\\\"\\n    },\\n    \\\"source\\\": {\\n        \\\"alias\\\": \\\"Interno (Backoffice)\\\",\\n        \\\"id\\\": \\\"5850de88e22c6d9f51b17719\\\"\\n    },\\n    \\\"user\\\": {\\n        \\\"nickname\\\": \\\"user_70ee9714afc834435c9d\\\",\\n        \\\"id\\\": \\\"68af0c6690c69558be01ebee\\\"\\n    }\\n}\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"ee8bdfff-0666-472e-944c-c3f39868b0d0\"\n                },\n                {\n                    \"name\": \"Request\",\n                    \"item\": [\n                        {\n                            \"name\": \"Requests List\",\n                            \"id\": \"5e8e7d19-c19e-4cca-9269-5b07ef13685e\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/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\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_ids[0]\",\n                                            \"value\": \"es.madrid\",\n                                            \"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 (,).\"\n                                        },\n                                        {\n                                            \"key\": \"service_request_ids[0]\",\n                                            \"value\": \"5c87a4d24e4ea894138b4567\",\n                                            \"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 (,).\"\n                                        },\n                                        {\n                                            \"key\": \"service_ids[0]\",\n                                            \"value\": \"5c87a4d24e4ea894138b4567\",\n                                            \"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 (,).\"\n                                        },\n                                        {\n                                            \"key\": \"start_date\",\n                                            \"value\": \"2025-10-01T00:00:00Z\",\n                                            \"description\": \"Date. [optional]. (2025-10-01T00:00:00Z) Permite realizar la búsqueda de un aviso mediante un rango de fechas (rango inferior)\"\n                                        },\n                                        {\n                                            \"key\": \"end_date\",\n                                            \"value\": \"2025-10-02T00:00:00Z\",\n                                            \"description\": \"Date. [optional]. (2025-10-02T00:00:00Z) Permite realizar la búsqueda de un aviso mediante un rango de fechas (rango superior)\"\n                                        },\n                                        {\n                                            \"key\": \"own\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool. [optional]. (true) Permite realizar la búsqueda de avisos que fuesen reportados por el usuario del contexto (logeado)\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"1.11111\",\n                                            \"description\": \"Float. [optional]. (1.11111) Permite realizar la búsqueda de avisos mediante coordenadas (latitud)\"\n                                        },\n                                        {\n                                            \"key\": \"long\",\n                                            \"value\": \"3.3333\",\n                                            \"description\": \"Float. [optional]. (3.3333) Permite realizar la búsqueda de avisos mediante coordenadas (longitud)\"\n                                        },\n                                        {\n                                            \"key\": \"page\",\n                                            \"value\": \"1\",\n                                            \"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\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"10\",\n                                            \"description\": \"Int [optional]. (10) Permite definir el limite de cada página de resultados\"\n                                        },\n                                        {\n                                            \"key\": \"address_and_service_request_id\",\n                                            \"value\": \"ALC00001\",\n                                            \"description\": \"String [optional]. (ALC00001) Permite realizar búsquedas de avisos a partir de una dirección o identificador de aviso vinculados\"\n                                        },\n                                        {\n                                            \"key\": \"status[0]\",\n                                            \"value\": \"5c87a4d24e4ea894138b4567\",\n                                            \"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 (,).\"\n                                        },\n                                        {\n                                            \"key\": \"typologies[0]\",\n                                            \"value\": \"5c87a4d24e4ea894138b4567\",\n                                            \"description\": \"String [optional]. (5c87a4d24e4ea894138b4567) Permite realizar búsquedas de avisos a partir de la tipologia a la que pertenezcan\"\n                                        },\n                                        {\n                                            \"key\": \"distance\",\n                                            \"value\": \"130\",\n                                            \"description\": \"String [optional]. (130) Permite realizar búsqueda de avisos a partir de una distancia en metros\"\n                                        },\n                                        {\n                                            \"key\": \"following\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. (true) Permite realizar búsqueda de avisos a los que el usuario del contexto esté siguiendo\"\n                                        },\n                                        {\n                                            \"key\": \"order\",\n                                            \"value\": \"ASC\",\n                                            \"description\": \"String [optional]. Permite definir el ordenamiento de los resultados encontrados de manera ascendente o descendente (alfabéticamente)\"\n                                        },\n                                        {\n                                            \"key\": \"complaints\",\n                                            \"value\": \"true\",\n                                            \"description\": \"[optional]. Permite realizar búsqueda de avisos si estos poseen quejas reportadas\"\n                                        },\n                                        {\n                                            \"key\": \"reiterations\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. Permite realizar búsqueda de avisos si estos poseen reiteraciones reportadas\"\n                                        },\n                                        {\n                                            \"key\": \"user_reiterated\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. Permite realizar búsqueda de avisos que el usuario del contexto haya reiterado\"\n                                        },\n                                        {\n                                            \"key\": \"user_complaint\",\n                                            \"value\": \"false\",\n                                            \"description\": \"Bool [optional]. Permite realizar búsqueda de avisos que el usuario del contexto haya denunciado (puesto una queja\"\n                                        },\n                                        {\n                                            \"key\": \"jurisdiction_element_ids[0]\",\n                                            \"value\": \"5c87a4d24e4ea894138b4567\",\n                                            \"description\": \"String [optional]. (5c87a4d24e4ea894138b4567) Permite realiza búsquedas a partir de los elementos de jurisdicción vinculados\"\n                                        },\n                                        {\n                                            \"key\": \"level\",\n                                            \"value\": \"2\",\n                                            \"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.\"\n                                        },\n                                        {\n                                            \"key\": \"polygon[0]\",\n                                            \"value\": \"40.466\",\n                                            \"description\": \"Float [optional]. Ej: [2.1111, 1.0000] - Permite realizar búsqueda de avisos a partir de poligonos o puntos de coordenadas\"\n                                        },\n                                        {\n                                            \"key\": \"polygon[1]\",\n                                            \"value\": \"-3.696\",\n                                            \"description\": \"Float [optional]. Ej: [2.1111, 1.0000] - Permite realizar búsqueda de avisos a partir de poligonos o puntos de coordenadas\"\n                                        },\n                                        {\n                                            \"key\": \"final_ok\",\n                                            \"value\": \"false\",\n                                            \"description\": \"Bool [optional]. Permite realizar la búsqueda de un aviso si su estado final es correcto\"\n                                        },\n                                        {\n                                            \"key\": \"final_not_ok\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. Permite realizar la búsqueda de un aviso si su estado es intermedio (ni nuevo ni finalizado)\"\n                                        },\n                                        {\n                                            \"key\": \"final_status\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional]. Permite realizar la búsqueda de un aviso si su estado es final\"\n                                        },\n                                        {\n                                            \"key\": \"interested\",\n                                            \"value\": \"true\",\n                                            \"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)\"\n                                        }\n                                    ]\n                                },\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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"8949f2f9-85e1-48a1-a775-ec41dceac576\",\n                                    \"name\": \"Requests List With Data\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/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\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids[0]\",\n                                                    \"value\": \"es.madrid\"\n                                                },\n                                                {\n                                                    \"key\": \"service_request_ids[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\"\n                                                },\n                                                {\n                                                    \"key\": \"service_ids[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\"\n                                                },\n                                                {\n                                                    \"key\": \"start_date\",\n                                                    \"value\": \"2025-10-01T00:00:00Z\"\n                                                },\n                                                {\n                                                    \"key\": \"end_date\",\n                                                    \"value\": \"2025-10-02T00:00:00Z\"\n                                                },\n                                                {\n                                                    \"key\": \"own\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"1.11111\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"3.3333\"\n                                                },\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"10\"\n                                                },\n                                                {\n                                                    \"key\": \"address_and_service_request_id\",\n                                                    \"value\": \"20\"\n                                                },\n                                                {\n                                                    \"key\": \"status[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\"\n                                                },\n                                                {\n                                                    \"key\": \"typologies[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\"\n                                                },\n                                                {\n                                                    \"key\": \"distance\",\n                                                    \"value\": \"130\"\n                                                },\n                                                {\n                                                    \"key\": \"following\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"order\",\n                                                    \"value\": \"false\"\n                                                },\n                                                {\n                                                    \"key\": \"complaints\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"reiterations\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"user_reiterated\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"user_complaint\",\n                                                    \"value\": \"false\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_element_ids[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\"\n                                                },\n                                                {\n                                                    \"key\": \"level\",\n                                                    \"value\": \"2\"\n                                                },\n                                                {\n                                                    \"key\": \"polygon[0]\",\n                                                    \"value\": \"40.466\"\n                                                },\n                                                {\n                                                    \"key\": \"polygon[1]\",\n                                                    \"value\": \"-3.696\"\n                                                },\n                                                {\n                                                    \"key\": \"final_ok\",\n                                                    \"value\": \"false\"\n                                                },\n                                                {\n                                                    \"key\": \"final_not_ok\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"final_status\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"interested\",\n                                                    \"value\": \"true\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"96bff95d-98a3-47ad-812e-e7753ea8fb91\",\n                                    \"name\": \"Requests List Empty Response\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/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\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids[0]\",\n                                                    \"value\": \"es.madrid\"\n                                                },\n                                                {\n                                                    \"key\": \"service_request_ids[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\"\n                                                },\n                                                {\n                                                    \"key\": \"service_ids[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\"\n                                                },\n                                                {\n                                                    \"key\": \"start_date\",\n                                                    \"value\": \"2025-10-01T00:00:00Z\"\n                                                },\n                                                {\n                                                    \"key\": \"end_date\",\n                                                    \"value\": \"2025-10-02T00:00:00Z\"\n                                                },\n                                                {\n                                                    \"key\": \"own\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"1.11111\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"3.3333\"\n                                                },\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"10\"\n                                                },\n                                                {\n                                                    \"key\": \"address_and_service_request_id\",\n                                                    \"value\": \"20\"\n                                                },\n                                                {\n                                                    \"key\": \"status[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\"\n                                                },\n                                                {\n                                                    \"key\": \"typologies[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\"\n                                                },\n                                                {\n                                                    \"key\": \"distance\",\n                                                    \"value\": \"130\"\n                                                },\n                                                {\n                                                    \"key\": \"following\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"order\",\n                                                    \"value\": \"false\"\n                                                },\n                                                {\n                                                    \"key\": \"complaints\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"reiterations\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"user_reiterated\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"user_complaint\",\n                                                    \"value\": \"false\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_element_ids[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\"\n                                                },\n                                                {\n                                                    \"key\": \"level\",\n                                                    \"value\": \"2\"\n                                                },\n                                                {\n                                                    \"key\": \"polygon[0]\",\n                                                    \"value\": \"40.466\"\n                                                },\n                                                {\n                                                    \"key\": \"polygon[1]\",\n                                                    \"value\": \"-3.696\"\n                                                },\n                                                {\n                                                    \"key\": \"final_ok\",\n                                                    \"value\": \"false\"\n                                                },\n                                                {\n                                                    \"key\": \"final_not_ok\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"final_status\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"interested\",\n                                                    \"value\": \"true\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{}\"\n                                },\n                                {\n                                    \"id\": \"d71b1bc8-1ffd-4353-add4-944615b48f76\",\n                                    \"name\": \"Error Request Token Not Exist\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/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\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids[0]\",\n                                                    \"value\": \"es.madrid\",\n                                                    \"description\": \"[optional]. Permite realizar búsqueda de avisos a partir del identificador de una jurisdicción vinculada\"\n                                                },\n                                                {\n                                                    \"key\": \"service_request_ids[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\",\n                                                    \"description\": \"[optional]. Permite realizar búsqueda de avisos a partir de los identificadores vinculados a los avisos\"\n                                                },\n                                                {\n                                                    \"key\": \"service_ids[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\",\n                                                    \"description\": \"[optional]. Permite realizar búsqueda de avisos a partir de las categorias relacionadas\"\n                                                },\n                                                {\n                                                    \"key\": \"start_date\",\n                                                    \"value\": \"2025-10-01T00:00:00Z\",\n                                                    \"description\": \"[optional]. Permite realizar la búsqueda de un aviso mediante un rango de fechas (rango inferior)\"\n                                                },\n                                                {\n                                                    \"key\": \"end_date\",\n                                                    \"value\": \"2025-10-02T00:00:00Z\",\n                                                    \"description\": \"[optional]. Permite realizar la búsqueda de un aviso mediante un rango de fechas (rango superior)\"\n                                                },\n                                                {\n                                                    \"key\": \"own\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"[optional]. Permite realizar la búsqueda de avisos que fuesen reportados por el usuario del contexto (logeado)\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"1.11111\",\n                                                    \"description\": \"[optional]. Permite realizar la búsqueda de avisos mediante coordenadas (latitud)\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"3.3333\",\n                                                    \"description\": \"[optional]. Permite realizar la búsqueda de avisos mediante coordenadas (longitud)\"\n                                                },\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"10\",\n                                                    \"description\": \"[optional]. Permite definir el limite de cada página de resultados\"\n                                                },\n                                                {\n                                                    \"key\": \"address_and_service_request_id\",\n                                                    \"value\": \"ALC00001\",\n                                                    \"description\": \"[optional]. Permite realizar búsquedas de avisos a partir de una dirección o identificador de aviso vinculados\"\n                                                },\n                                                {\n                                                    \"key\": \"status[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\",\n                                                    \"description\": \"[optional]. Permite realizar búsquedas de avisos a partir del estado de los mismos\"\n                                                },\n                                                {\n                                                    \"key\": \"typologies[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\",\n                                                    \"description\": \"[optional]. Permite realizar búsquedas de avisos a partir de la tipologia a la que pertenezcan\"\n                                                },\n                                                {\n                                                    \"key\": \"distance\",\n                                                    \"value\": \"130\",\n                                                    \"description\": \"[optional]. Permite realizar búsqueda de avisos a partir de una distancia en metros\"\n                                                },\n                                                {\n                                                    \"key\": \"following\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"[optional]. Permite realizar búsqueda de avisos a los que el usuario del contexto esté siguiendo\"\n                                                },\n                                                {\n                                                    \"key\": \"order\",\n                                                    \"value\": \"ASC\",\n                                                    \"description\": \"[optional]. Permite definir el ordenamiento de los resultados encontrados de manera ascendente o descendente (alfabéticamente)\"\n                                                },\n                                                {\n                                                    \"key\": \"complaints\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"[optional]. Permite realizar búsqueda de avisos si estos poseen quejas reportadas\"\n                                                },\n                                                {\n                                                    \"key\": \"reiterations\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"[optional]. Permite realizar búsqueda de avisos si estos poseen reiteraciones reportadas\"\n                                                },\n                                                {\n                                                    \"key\": \"user_reiterated\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"[optional]. Permite realizar búsqueda de avisos que el usuario del contexto haya reiterado\"\n                                                },\n                                                {\n                                                    \"key\": \"user_complaint\",\n                                                    \"value\": \"false\",\n                                                    \"description\": \"[optional]. Permite realizar búsqueda de avisos que el usuario del contexto haya denunciado (puesto una queja)\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_element_ids[0]\",\n                                                    \"value\": \"5c87a4d24e4ea894138b4567\",\n                                                    \"description\": \"[optional]. Permite realiza búsquedas a partir de los elementos de jurisdicción vinculados\"\n                                                },\n                                                {\n                                                    \"key\": \"level\",\n                                                    \"value\": \"2\",\n                                                    \"description\": \"[optional]. Permite definir el nivel de búsqueda de avisos en los escenarios donde fueron reportados en un edificio que posea varias plantas.\"\n                                                },\n                                                {\n                                                    \"key\": \"polygon[0]\",\n                                                    \"value\": \"40.466\",\n                                                    \"description\": \"[optional]. Ej: [2.1111, 1.0000] - Permite realizar búsqueda de avisos a partir de poligonos o puntos de coordenadas\"\n                                                },\n                                                {\n                                                    \"key\": \"polygon[1]\",\n                                                    \"value\": \"-3.696\",\n                                                    \"description\": \"[optional]. Ej: [2.1111, 1.0000] - Permite realizar búsqueda de avisos a partir de poligonos o puntos de coordenadas\"\n                                                },\n                                                {\n                                                    \"key\": \"final_ok\",\n                                                    \"value\": \"false\",\n                                                    \"description\": \"[optional]. Permite realizar la búsqueda de un aviso si su estado final es correcto\"\n                                                },\n                                                {\n                                                    \"key\": \"final_not_ok\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"[optional]. Permite realizar la búsqueda de un aviso si su estado es intermedio (ni nuevo ni finalizado)\"\n                                                },\n                                                {\n                                                    \"key\": \"final_status\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"[optional]. Permite realizar la búsqueda de un aviso si su estado es final\"\n                                                },\n                                                {\n                                                    \"key\": \"interested\",\n                                                    \"value\": \"true\",\n                                                    \"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)\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"message\\\": \\\"request_token not exist\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Remove Request Follower\",\n                            \"id\": \"a83a647c-fd77-4f6a-bc11-43528dc70f19\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request_stop_follow\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request_stop_follow\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | Descripción |\\n| --- | --- | --- |\\n| jurisdiction_id | String | \\\\[required\\\\] Identificador de la jurisdicción a la que pertenece. |\\n| service_request_id | String | \\\\[required\\\\] Identificador del aviso al que se le removerán los followers. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"122c1d18-3c4a-4eaf-b338-d97110527a5b\",\n                                    \"name\": \"Remove Request Follower OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request_stop_follow\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request_stop_follow\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"b84c0715-cc7d-4836-9dfb-d50d3595e372\",\n                                    \"name\": \"Remove Request Follower without jurisdiction\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request_stop_follow\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request_stop_follow\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Internal Server Error\",\n                                    \"code\": 500,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 500,\\n        \\\"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\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"959a435c-8c75-4d50-ab39-0165706f9a61\",\n                                    \"name\": \"Remove Request Follower without service_request_id\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request_stop_follow\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request_stop_follow\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"service_request_id was not provided\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get Request in final status count\",\n                            \"id\": \"35abacb8-1791-4c3c-9dcf-cbc179bc6b1b\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/count_last_days?jurisdiction_ids=org.alcobendas&last_days=3\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"count_last_days\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_ids\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"description\": \"[optional]. Stirng. Identificador de las jurisdicciones con las cuales se requiere realizar la búsqueda de los avisos separado por comas.\",\n                                            \"type\": \"text\"\n                                        },\n                                        {\n                                            \"key\": \"last_days\",\n                                            \"value\": \"3\",\n                                            \"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).\",\n                                            \"type\": \"text\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"1733de56-8d6a-4391-a85f-a82d1a7f57aa\",\n                                    \"name\": \"Get Request in final status count OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/count_last_days?jurisdiction_ids=org.alcobendas&last_days=3\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"count_last_days\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas\",\n                                                    \"description\": \"[optional]. Stirng. Identificador de las jurisdicciones con las cuales se requiere realizar la búsqueda de los avisos separado por comas.\"\n                                                },\n                                                {\n                                                    \"key\": \"last_days\",\n                                                    \"value\": \"3\",\n                                                    \"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).\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"jurisdiction_ids\\\": \\\"org.alcobendas\\\",\\n    \\\"last_days\\\": 3,\\n    \\\"count\\\": 1\\n}\"\n                                },\n                                {\n                                    \"id\": \"76d0d26a-ee09-429c-9419-7b33834efde3\",\n                                    \"name\": \"Get Request in final status count without jurisdictionId\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/count_last_days?last_days=3\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"count_last_days\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"last_days\",\n                                                    \"value\": \"3\",\n                                                    \"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).\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"jurisdiction_ids\\\": \\\"\\\",\\n    \\\"last_days\\\": 3,\\n    \\\"count\\\": 0\\n}\"\n                                },\n                                {\n                                    \"id\": \"92ad5b4c-d11d-49ad-9567-3ab675ea8d07\",\n                                    \"name\": \"Get Request in final status count without last days value\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/count_last_days?jurisdiction_ids=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"count_last_days\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas\",\n                                                    \"description\": \"[optional]. Stirng. Identificador de las jurisdicciones con las cuales se requiere realizar la búsqueda de los avisos separado por comas.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"jurisdiction_ids\\\": \\\"org.alcobendas\\\",\\n    \\\"last_days\\\": 7,\\n    \\\"count\\\": 2\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get related family\",\n                            \"id\": \"62b303ab-05ae-4b53-9589-afa00344c31b\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/related_family/list\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"{{request_id}}\",\n                                        \"related_family\",\n                                        \"list\"\n                                    ]\n                                },\n                                \"description\": \"| Campo | Tipo | Descripción |\\n| --- | --- | --- |\\n| token | String | \\\\[required\\\\]. Identificador mongo del aviso al cual se le requiere extraer la información sobre otros avisos relacionados. |\\n\\nEste endpoint permite visualizar avisos (tickets) que se encuentren relacionados al aviso especificado en la petición.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"2fa3cd0c-6e9c-4018-aa1f-855439e45a9c\",\n                                    \"name\": \"Get related family OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{token}/related_family/list\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{token}\",\n                                                \"related_family\",\n                                                \"list\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"service_id\\\": \\\"6932f482e4b2768f51039f52\\\",\\n    \\\"service_icon\\\": \\\"https://mtc.vdeveloper.lan/uploads/local/service_icons/5bab6a4c457be.png\\\",\\n    \\\"service_name\\\": \\\"Limpieza\\\",\\n    \\\"requested_datetime\\\": \\\"2025-09-17T14:04:56+00:00\\\",\\n    \\\"address\\\": \\\"Dirección de prueba94\\\",\\n    \\\"reiterations_count\\\": 0,\\n    \\\"complaints_count\\\": 0,\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"status_node_type\\\": \\\"initial_node\\\",\\n    \\\"typology\\\": {\\n      \\\"id\\\": \\\"6932f47fe4b2768f51039edd\\\",\\n      \\\"color\\\": \\\"#337ab7\\\",\\n      \\\"icon\\\": \\\"https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png\\\",\\n      \\\"location_type\\\": \\\"indoor\\\",\\n      \\\"order\\\": 1,\\n      \\\"public\\\": true,\\n      \\\"visible_name\\\": \\\"Avisos Hospital\\\",\\n      \\\"with_description\\\": true,\\n      \\\"with_files\\\": true,\\n      \\\"with_geolocation_data\\\": false,\\n      \\\"with_medias\\\": true,\\n      \\\"with_temporality_data\\\": false\\n    },\\n    \\\"public_visibility\\\": false,\\n    \\\"comments_count\\\": 0,\\n    \\\"complaining\\\": false,\\n    \\\"current_node_estimated_final_datetime\\\": \\\"2025-12-05T20:04:56+00:00\\\",\\n    \\\"current_node_estimated_start_datetime\\\": \\\"2025-12-05T15:04:56+00:00\\\",\\n    \\\"description\\\": \\\"7 - 3 - Madrid - Limpieza\\\",\\n    \\\"estimated_final_datetime\\\": \\\"2025-12-05T20:04:56+00:00\\\",\\n    \\\"estimated_start_datetime\\\": \\\"2025-12-05T15:04:56+00:00\\\",\\n    \\\"evaluation\\\": 0,\\n    \\\"jurisdiction_element\\\": {\\n      \\\"map_layers\\\": [\\n        {\\n          \\\"backend\\\": \\\"OWS\\\",\\n          \\\"endpoint\\\": \\\"https://gis.mejoratuciudad.org/geoserver\\\",\\n          \\\"id\\\": \\\"6932f483e4b2768f51039fe6\\\",\\n          \\\"is_default\\\": false,\\n          \\\"color\\\": \\\"#000000\\\",\\n          \\\"internal_name\\\": \\\"buildings:custom_zones_fixtures\\\",\\n          \\\"name\\\": \\\"FixtureZones\\\",\\n          \\\"description\\\": \\\"Test Layer 5\\\",\\n          \\\"preset\\\": false,\\n          \\\"public\\\": true,\\n          \\\"tags\\\": [],\\n          \\\"token\\\": \\\"489780ae-39e0-40bf-93e3-57565431454a\\\",\\n          \\\"type\\\": \\\"WORK\\\"\\n        }\\n      ],\\n      \\\"extent\\\": [],\\n      \\\"geoserver_perimeter_id\\\": \\\"custom_zones_fixtures.13\\\",\\n      \\\"guided_module\\\": false,\\n      \\\"icon\\\": \\\"https://mtc.vdeveloper.lan/uploads/local/jurisdiction_element/icon_mock.png\\\",\\n      \\\"id\\\": \\\"6932f479e4b2768f51039ea9\\\",\\n      \\\"name\\\": \\\"madrid\\\",\\n      \\\"type\\\": \\\"city\\\",\\n      \\\"visible_name\\\": \\\"Madrid\\\",\\n      \\\"is_main\\\": false\\n    },\\n    \\\"address_string\\\": \\\"Dirección de prueba94\\\",\\n    \\\"lat\\\": 40.419,\\n    \\\"long\\\": -3.674,\\n    \\\"service_request_id\\\": \\\"MAD1110\\\",\\n    \\\"status_node\\\": {\\n      \\\"typology_node_id\\\": \\\"6932f47fe4b2768f51039ede\\\",\\n      \\\"visible_name\\\": \\\"Nuevo\\\",\\n      \\\"id\\\": \\\"6932f482e4b2768f51039f4b\\\",\\n      \\\"order\\\": 1,\\n      \\\"planned\\\": false\\n    },\\n    \\\"supporting\\\": false,\\n    \\\"tags\\\": [],\\n    \\\"token\\\": \\\"6932f498e4b2768f5103a22f\\\",\\n    \\\"user\\\": {\\n      \\\"id\\\": \\\"6932f47ae4b2768f51039eb7\\\"\\n    },\\n    \\\"worknotes_count\\\": 1,\\n    \\\"media_url\\\": \\\"https://mtc.vdeveloper.lan/uploads/local/open010/6932f49880585560875310.jpg\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"62728be2-db52-4395-9dad-eebb011937cf\",\n                                    \"name\": \"Get related family without superparent request related\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{token}/related_family/list\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{token}\",\n                                                \"related_family\",\n                                                \"list\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[]\"\n                                },\n                                {\n                                    \"id\": \"c7198e16-102c-40f9-acdd-fb7e373c1210\",\n                                    \"name\": \"Get related family with invalid token\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{token}/related_family/list\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{token}\",\n                                                \"related_family\",\n                                                \"list\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Object not found\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"230c3c56-5599-4f7e-8f79-8194002f962c\",\n                                    \"name\": \"Get related family without user in request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{token}/related_family/list\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{token}\",\n                                                \"related_family\",\n                                                \"list\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 403,\\n    \\\"description\\\": \\\"Related family list only is available if request was created by the logged user\\\"\\n  }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Check Duplicates\",\n                            \"id\": \"7a472641-96fb-4c4e-a9e0-9bac0b41b1f1\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request_duplicate?service_id=5620ec856aa918b1008b4567&lat=40.54720023441049&lng=-3.6370539665222172\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request_duplicate\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"service_id\",\n                                            \"value\": \"5620ec856aa918b1008b4567\",\n                                            \"description\": \"String [required]. (5620ec856aa918b1008b4567) Permite identificar la categoria a la que pertenece el aviso o ticket\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.54720023441049\",\n                                            \"description\": \"Float [required]. (40.54720023441049) Coordenada de latitud geográfica.\"\n                                        },\n                                        {\n                                            \"key\": \"lng\",\n                                            \"value\": \"-3.6370539665222172\",\n                                            \"description\": \"Float [required]. (-3.6370539665222172) Coordenada de longitud geográfica.\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"3f97642a-449b-4e93-b433-7deee1b0dd1d\",\n                                    \"name\": \"Check Duplicates Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request_duplicate?service_id=5620ec856aa918b1008b4567&lat=40.54720023441049&lng=-3.6370539665222172\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request_duplicate\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"service_id\",\n                                                    \"value\": \"5620ec856aa918b1008b4567\",\n                                                    \"description\": \"[required]. String - Permite identificar la categoria a la que pertenece el aviso o ticket\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.54720023441049\",\n                                                    \"description\": \"[required]. Float - Coordenada de latitud geográfica.\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6370539665222172\",\n                                                    \"description\": \"[required]. Float - Coordenada de longitud geográfica.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"deleted\\\": false,\\n    \\\"jurisdiction\\\": \\\"561e04ed6aa918910c8b4592\\\",\\n    \\\"jurisdiction_name\\\": \\\"Madrid Móvil\\\",\\n    \\\"service_id\\\": \\\"5620ec856aa918b1008b4567\\\",\\n    \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png\\\",\\n    \\\"service_code\\\": \\\"2\\\",\\n    \\\"service_name\\\": \\\"Arquetas de alumbrado\\\",\\n    \\\"requested_datetime\\\": \\\"2025-03-13T16:26:32+00:00\\\",\\n    \\\"supporting_count\\\": 0,\\n    \\\"following_count\\\": 1,\\n    \\\"evaluations_count\\\": 0,\\n    \\\"updated_datetime\\\": \\\"2025-03-13T20:37:45+00:00\\\",\\n    \\\"address_string\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n    \\\"evaluations_avg\\\": -1,\\n    \\\"reiterations_count\\\": 0,\\n    \\\"complaints_count\\\": 0,\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"status_node_type\\\": \\\"initial_node\\\",\\n    \\\"final_status_ok\\\": false,\\n    \\\"final_status_not_ok\\\": false,\\n    \\\"files\\\": [],\\n    \\\"is_evaluable\\\": false,\\n    \\\"typology\\\": {\\n        \\\"hasLocation\\\": true,\\n        \\\"id\\\": \\\"5850dca2e22c6d9f51b00c0f\\\",\\n        \\\"color\\\": \\\"#ebc113\\\",\\n        \\\"description_legend\\\": \\\"Ej: farola fundida\\\",\\n        \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\\\",\\n        \\\"location_type\\\": \\\"geolocation\\\",\\n        \\\"name\\\": \\\"Aviso\\\",\\n        \\\"order\\\": 1,\\n        \\\"public\\\": true,\\n        \\\"typology_description\\\": \\\"Tengo un problema con un elemento en la calle\\\",\\n        \\\"visible_name\\\": \\\"Aviso\\\",\\n        \\\"with_authorized_users\\\": false,\\n        \\\"with_description\\\": true,\\n        \\\"with_files\\\": true,\\n        \\\"with_geolocation_data\\\": true,\\n        \\\"with_medias\\\": true,\\n        \\\"with_temporality_data\\\": true\\n    },\\n    \\\"paused\\\": false,\\n    \\\"creator\\\": {\\n        \\\"hasPassword\\\": true,\\n        \\\"channels\\\": [],\\n        \\\"jurisdiction_element_channels\\\": [],\\n        \\\"id\\\": \\\"67d2f56f887735a7be00f7bb\\\",\\n        \\\"nickname\\\": \\\"witijah950\\\",\\n        \\\"notification_channels\\\": [],\\n        \\\"last_geofences\\\": []\\n    },\\n    \\\"informant\\\": {\\n        \\\"hasPassword\\\": true,\\n        \\\"channels\\\": [],\\n        \\\"jurisdiction_element_channels\\\": [],\\n        \\\"id\\\": \\\"67d2f56f887735a7be00f7bb\\\",\\n        \\\"nickname\\\": \\\"witijah950\\\",\\n        \\\"notification_channels\\\": [],\\n        \\\"last_geofences\\\": []\\n    },\\n    \\\"has_required_assignments\\\": false,\\n    \\\"current_status_assignments\\\": [],\\n    \\\"public_visibility\\\": true,\\n    \\\"user_id\\\": \\\"67d2f56f887735a7be00f7bb\\\",\\n    \\\"accepted\\\": false,\\n    \\\"additional_data\\\": [\\n        {\\n            \\\"type\\\": \\\"singleValueList\\\",\\n            \\\"value\\\": \\\"resp1\\\",\\n            \\\"value_translations\\\": {\\n                \\\"es\\\": \\\"resp1\\\",\\n                \\\"en\\\": \\\"\\\",\\n                \\\"ca\\\": \\\"\\\",\\n                \\\"eu\\\": \\\"\\\",\\n                \\\"fr\\\": \\\"\\\",\\n                \\\"es_MX\\\": \\\"\\\",\\n                \\\"en_AU\\\": \\\"\\\"\\n            },\\n            \\\"question\\\": {\\n                \\\"type\\\": \\\"singleValueList\\\",\\n                \\\"active\\\": true,\\n                \\\"code\\\": \\\"code_lista_simple\\\",\\n                \\\"help_text\\\": \\\"\\\",\\n                \\\"help_text_translations\\\": {\\n                    \\\"es\\\": \\\"\\\",\\n                    \\\"en\\\": \\\"\\\",\\n                    \\\"ca\\\": \\\"\\\",\\n                    \\\"eu\\\": \\\"\\\",\\n                    \\\"fr\\\": \\\"\\\",\\n                    \\\"es_MX\\\": \\\"\\\",\\n                    \\\"en_AU\\\": \\\"\\\"\\n                },\\n                \\\"id\\\": \\\"64706cd7a18ec0136f01dea5\\\",\\n                \\\"question\\\": \\\"pregunta lista\\\",\\n                \\\"question_translations\\\": {\\n                    \\\"es\\\": \\\"pregunta lista\\\",\\n                    \\\"en\\\": \\\"\\\",\\n                    \\\"ca\\\": \\\"\\\",\\n                    \\\"eu\\\": \\\"\\\",\\n                    \\\"fr\\\": \\\"\\\",\\n                    \\\"es_MX\\\": \\\"\\\",\\n                    \\\"en_AU\\\": \\\"\\\"\\n                },\\n                \\\"tags\\\": [],\\n                \\\"possible_answers\\\": [\\n                    {\\n                        \\\"value\\\": \\\"resp1\\\",\\n                        \\\"value_translations\\\": {\\n                            \\\"es\\\": \\\"resp1\\\",\\n                            \\\"en\\\": \\\"\\\",\\n                            \\\"ca\\\": \\\"\\\",\\n                            \\\"eu\\\": \\\"\\\",\\n                            \\\"fr\\\": \\\"\\\",\\n                            \\\"es_MX\\\": \\\"\\\",\\n                            \\\"en_AU\\\": \\\"\\\"\\n                        },\\n                        \\\"next_question_list\\\": {\\n                            \\\"requiredVariables\\\": [],\\n                            \\\"configurable_questions\\\": [\\n                                {\\n                                    \\\"editable\\\": false,\\n                                    \\\"hidden_in_detail\\\": false,\\n                                    \\\"hidden_in_form\\\": false,\\n                                    \\\"hidden_in_open010_detail\\\": false,\\n                                    \\\"hidden_in_open010_form\\\": false,\\n                                    \\\"question\\\": {\\n                                        \\\"type\\\": \\\"text\\\",\\n                                        \\\"active\\\": true,\\n                                        \\\"code\\\": \\\"complejo\\\",\\n                                        \\\"help_text\\\": \\\"\\\",\\n                                        \\\"help_text_translations\\\": {\\n                                            \\\"es\\\": \\\"\\\",\\n                                            \\\"en\\\": \\\"\\\",\\n                                            \\\"ca\\\": \\\"\\\",\\n                                            \\\"eu\\\": \\\"\\\",\\n                                            \\\"fr\\\": \\\"\\\",\\n                                            \\\"es_MX\\\": \\\"\\\",\\n                                            \\\"en_AU\\\": \\\"\\\"\\n                                        },\\n                                        \\\"tags\\\": []\\n                                    },\\n                                    \\\"required\\\": false,\\n                                    \\\"default_value\\\": \\\"\\\"\\n                                }\\n                            ],\\n                            \\\"id\\\": \\\"5d3069e643b387a9018b4568\\\",\\n                            \\\"name\\\": \\\"Localización BBVA\\\",\\n                            \\\"use_cases\\\": [\\n                                {\\n                                    \\\"type\\\": \\\"linked_list\\\",\\n                                    \\\"id\\\": \\\"66ed366037c0c32c020b5372\\\"\\n                                }\\n                            ],\\n                            \\\"description\\\": \\\".\\\"\\n                        }\\n                    }\\n                ]\\n            }\\n        }\\n    ],\\n    \\\"address\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n    \\\"comments_count\\\": 0,\\n    \\\"complaining\\\": false,\\n    \\\"current_node_estimated_final_datetime\\\": \\\"2025-03-15T16:26:45+00:00\\\",\\n    \\\"current_node_estimated_start_datetime\\\": \\\"2025-03-13T16:26:45+00:00\\\",\\n    \\\"description\\\": \\\"sdgsfsdfsdfsd\\\",\\n    \\\"device_type\\\": {\\n        \\\"alias\\\": \\\"Canal Web\\\",\\n        \\\"id\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n        \\\"options\\\": [\\n            \\\"web_channel\\\"\\n        ]\\n    },\\n    \\\"estimated_final_datetime\\\": \\\"2025-03-26T16:26:44+00:00\\\",\\n    \\\"estimated_start_datetime\\\": \\\"2025-03-13T16:26:44+00:00\\\",\\n    \\\"evaluation\\\": 0,\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"following\\\": false,\\n    \\\"jurisdiction_element\\\": {\\n        \\\"map_layers\\\": [\\n            {\\n                \\\"backend\\\": \\\"OWS\\\",\\n                \\\"endpoint\\\": \\\"https://gis-pre.mejoratuciudad.org/geoserver\\\",\\n                \\\"id\\\": \\\"5d9ee7bcde2efef4018b4569\\\",\\n                \\\"is_default\\\": false,\\n                \\\"color\\\": \\\"#000000\\\",\\n                \\\"internal_name\\\": \\\"zones_prod:Alc_Distritos\\\",\\n                \\\"name\\\": \\\"Distritos\\\",\\n                \\\"description\\\": \\\"Distritos\\\",\\n                \\\"preset\\\": false,\\n                \\\"public\\\": true,\\n                \\\"tags\\\": [],\\n                \\\"token\\\": \\\"489780ae-39e0-40bf-93e3-57565431454a\\\",\\n                \\\"type\\\": \\\"ADMINISTRATIVE\\\"\\n            }\\n        ],\\n        \\\"extent\\\": [\\n            -3.70038574,\\n            40.50117283,\\n            -3.55027416,\\n            40.58886137\\n        ],\\n        \\\"guided_module\\\": false,\\n        \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\\\",\\n        \\\"id\\\": \\\"5c9b55579650e67d42985e80\\\",\\n        \\\"location_additional_data\\\": {\\n            \\\"requiredVariables\\\": [],\\n            \\\"configurable_questions\\\": [\\n                {\\n                    \\\"editable\\\": true,\\n                    \\\"hidden_in_detail\\\": false,\\n                    \\\"hidden_in_form\\\": false,\\n                    \\\"hidden_in_open010_detail\\\": false,\\n                    \\\"hidden_in_open010_form\\\": false,\\n                    \\\"question\\\": {\\n                        \\\"type\\\": \\\"text\\\",\\n                        \\\"active\\\": true,\\n                        \\\"code\\\": \\\"distrito_T\\\",\\n                        \\\"help_text\\\": \\\"\\\",\\n                        \\\"help_text_translations\\\": {\\n                            \\\"es\\\": \\\"\\\",\\n                            \\\"en\\\": \\\"\\\",\\n                            \\\"ca\\\": \\\"\\\",\\n                            \\\"eu\\\": \\\"\\\",\\n                            \\\"fr\\\": \\\"\\\",\\n                            \\\"es_MX\\\": \\\"\\\",\\n                            \\\"en_AU\\\": \\\"\\\"\\n                        },\\n                        \\\"id\\\": \\\"5de929ca0007544c098b4578\\\",\\n                        \\\"question\\\": \\\"Distrito\\\",\\n                        \\\"question_translations\\\": {\\n                            \\\"es\\\": \\\"Distrito\\\",\\n                            \\\"en\\\": \\\"\\\",\\n                            \\\"ca\\\": \\\"\\\",\\n                            \\\"eu\\\": \\\"\\\",\\n                            \\\"fr\\\": \\\"\\\",\\n                            \\\"es_MX\\\": \\\"\\\",\\n                            \\\"en_AU\\\": \\\"\\\"\\n                        },\\n                        \\\"tags\\\": [\\n                            {\\n                                \\\"name\\\": \\\"distrito\\\",\\n                                \\\"color\\\": \\\"#000000\\\",\\n                                \\\"id\\\": \\\"distrito\\\"\\n                            }\\n                        ]\\n                    },\\n                    \\\"required\\\": false,\\n                    \\\"response_attribute\\\": \\\"Distrito\\\",\\n                    \\\"default_value\\\": \\\"\\\"\\n                }\\n            ],\\n            \\\"endpoint\\\": \\\"http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data\\\",\\n            \\\"id\\\": \\\"5ea6b00322bce3c7058b45a9\\\",\\n            \\\"name\\\": \\\"Datos Adicionales de Localización ES\\\",\\n            \\\"use_cases\\\": [\\n                {\\n                    \\\"type\\\": \\\"linked_list\\\",\\n                    \\\"id\\\": \\\"675738c67470888ae20cc926\\\",\\n                    \\\"description\\\": \\\"Prueba 01\\\"\\n                }\\n            ],\\n            \\\"description\\\": \\\"Datos adicionales1\\\"\\n        },\\n        \\\"name\\\": \\\"es.madrid\\\",\\n        \\\"type\\\": \\\"city\\\",\\n        \\\"visible_name\\\": \\\"madrid\\\",\\n        \\\"is_main\\\": false\\n    },\\n    \\\"last_name\\\": \\\"Perez\\\",\\n    \\\"medias\\\": [],\\n    \\\"observers\\\": [],\\n    \\\"phone\\\": \\\"5551234\\\",\\n    \\\"lat\\\": 40.54720023441,\\n    \\\"long\\\": -3.6370539665222,\\n    \\\"location_additional_data\\\": [],\\n    \\\"priority\\\": {},\\n    \\\"public\\\": true,\\n    \\\"seen\\\": false,\\n    \\\"service\\\": {\\n        \\\"deleted\\\": false,\\n        \\\"parent_service_name\\\": \\\"Alumbrado público\\\",\\n        \\\"group\\\": \\\"5620e9176aa91815008b4567\\\",\\n        \\\"jurisdiction_id\\\": \\\"est.madrid\\\",\\n        \\\"visible_name\\\": \\\"Arquetas de alumbrado (Aviso)\\\",\\n        \\\"id\\\": \\\"5620ec856aa918b1008b4567\\\",\\n        \\\"additionalData\\\": {\\n            \\\"requiredVariables\\\": [],\\n            \\\"configurable_questions\\\": [\\n                {\\n                    \\\"editable\\\": true,\\n                    \\\"hidden_in_detail\\\": false,\\n                    \\\"hidden_in_form\\\": false,\\n                    \\\"hidden_in_open010_detail\\\": false,\\n                    \\\"hidden_in_open010_form\\\": false,\\n                    \\\"question\\\": {\\n                        \\\"type\\\": \\\"datetime\\\",\\n                        \\\"active\\\": true,\\n                        \\\"code\\\": \\\"code_date\\\",\\n                        \\\"help_text\\\": \\\"texto ayuda\\\",\\n                        \\\"help_text_translations\\\": {\\n                            \\\"es\\\": \\\"texto ayuda\\\",\\n                            \\\"en\\\": \\\"\\\",\\n                            \\\"ca\\\": \\\"\\\",\\n                            \\\"eu\\\": \\\"\\\",\\n                            \\\"fr\\\": \\\"\\\",\\n                            \\\"es_MX\\\": \\\"\\\",\\n                            \\\"en_AU\\\": \\\"\\\"\\n                        },\\n                        \\\"id\\\": \\\"64706c8ad0e52544940c4156\\\",\\n                        \\\"question\\\": \\\"pregunta fecha\\\",\\n                        \\\"question_translations\\\": {\\n                            \\\"es\\\": \\\"pregunta fecha\\\",\\n                            \\\"en\\\": \\\"\\\",\\n                            \\\"ca\\\": \\\"\\\",\\n                            \\\"eu\\\": \\\"\\\",\\n                            \\\"fr\\\": \\\"\\\",\\n                            \\\"es_MX\\\": \\\"\\\",\\n                            \\\"en_AU\\\": \\\"\\\"\\n                        },\\n                        \\\"tags\\\": []\\n                    },\\n                    \\\"required\\\": false,\\n                    \\\"default_value\\\": \\\"\\\"\\n                }\\n            ],\\n            \\\"id\\\": \\\"64706cdad70caf226b01ff66\\\",\\n            \\\"name\\\": \\\"lista prueba multi\\\",\\n            \\\"use_cases\\\": [\\n                {\\n                    \\\"type\\\": \\\"crm_extended_detail_internal\\\",\\n                    \\\"id\\\": \\\"66e95e5f83ec90ea650b1a12\\\"\\n                }\\n            ]\\n        },\\n        \\\"social\\\": true,\\n        \\\"evaluation\\\": true,\\n        \\\"color\\\": \\\"#FBC02D\\\",\\n        \\\"description\\\": \\\"Tapas arquetas de farolas deterioradas o inexistentes\\\",\\n        \\\"hideEstimatedDate\\\": false,\\n        \\\"mandatory_description\\\": true,\\n        \\\"mandatory_files\\\": false,\\n        \\\"mandatory_informant_config\\\": [\\n            {\\n                \\\"field\\\": \\\"first_name\\\",\\n                \\\"message\\\": \\\"\\\",\\n                \\\"required\\\": true\\n            }\\n        ],\\n        \\\"mandatory_medias\\\": false,\\n        \\\"max_upload_files\\\": 5,\\n        \\\"max_upload_medias\\\": 5,\\n        \\\"public\\\": true,\\n        \\\"public_requests\\\": true,\\n        \\\"service_code\\\": \\\"2\\\",\\n        \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png\\\",\\n        \\\"service_name\\\": \\\"Arquetas de alumbrado\\\",\\n        \\\"sponsoring_info\\\": {\\n            \\\"display\\\": false\\n        },\\n        \\\"status_node\\\": [],\\n        \\\"typology\\\": {\\n            \\\"hasLocation\\\": true,\\n            \\\"id\\\": \\\"5850dca2e22c6d9f51b00c0f\\\",\\n            \\\"color\\\": \\\"#ebc113\\\",\\n            \\\"description_legend\\\": \\\"Ej: farola fundida\\\",\\n            \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\\\",\\n            \\\"location_type\\\": \\\"geolocation\\\",\\n            \\\"name\\\": \\\"Aviso\\\",\\n            \\\"order\\\": 1,\\n            \\\"public\\\": true,\\n            \\\"typology_description\\\": \\\"Tengo un problema con un elemento en la calle\\\",\\n            \\\"visible_name\\\": \\\"Aviso\\\",\\n            \\\"with_authorized_users\\\": false,\\n            \\\"with_description\\\": true,\\n            \\\"with_files\\\": true,\\n            \\\"with_geolocation_data\\\": true,\\n            \\\"with_medias\\\": true,\\n            \\\"with_temporality_data\\\": true\\n        },\\n        \\\"with_informant\\\": true,\\n        \\\"with_internal_informant\\\": true\\n    },\\n    \\\"service_request_id\\\": \\\"ALC43684\\\",\\n    \\\"status_assignments\\\": [],\\n    \\\"status_node\\\": {\\n        \\\"status_node_type\\\": \\\"initial_node\\\",\\n        \\\"name\\\": \\\"Nuevo\\\",\\n        \\\"color\\\": \\\"#f1c40f\\\",\\n        \\\"typology_node_id\\\": \\\"5850dca2e22c6d9f51b00c59\\\",\\n        \\\"visible_name\\\": \\\"Nuevo\\\",\\n        \\\"id\\\": \\\"5850dd1ee22c6d9f51b0157b\\\",\\n        \\\"order\\\": 1,\\n        \\\"planned\\\": false\\n    },\\n    \\\"supporting\\\": false,\\n    \\\"tags\\\": [],\\n    \\\"token\\\": \\\"67d307454e10cee6cc011a37\\\",\\n    \\\"user\\\": {\\n        \\\"hasPassword\\\": true,\\n        \\\"channels\\\": [],\\n        \\\"jurisdiction_element_channels\\\": [],\\n        \\\"id\\\": \\\"67d2f56f887735a7be00f7bb\\\",\\n        \\\"nickname\\\": \\\"witijah950\\\",\\n        \\\"notification_channels\\\": [],\\n        \\\"last_geofences\\\": []\\n    },\\n    \\\"zones\\\": [\\n        {}\\n    ],\\n    \\\"worknotes_count\\\": 0\\n}\"\n                                },\n                                {\n                                    \"id\": \"22e5cc49-710b-482b-b470-9c3273c7dcfb\",\n                                    \"name\": \"Check Duplicates Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request_duplicate?service_id=5620ec856aa918b1008b4567&lat=40.54720023441049&lng=-3.6370539665222172\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request_duplicate\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"service_id\",\n                                                    \"value\": \"5620ec856aa918b1008b4567\",\n                                                    \"description\": \"[required]. String - Permite identificar la categoria a la que pertenece el aviso o ticket\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.54720023441049\",\n                                                    \"description\": \"[required]. Float - Coordenada de latitud geográfica.\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6370539665222172\",\n                                                    \"description\": \"[required]. Float - Coordenada de longitud geográfica.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{}\"\n                                },\n                                {\n                                    \"id\": \"2e0f03de-5845-4363-8cb4-d73eaefc221d\",\n                                    \"name\": \"Check Duplicates Service Not Configured\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request_duplicate?service_id=5620ec856aa918b1008b4567&lat=40.54720023441049&lng=-3.6370539665222172\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request_duplicate\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"service_id\",\n                                                    \"value\": \"5620ec856aa918b1008b4567\",\n                                                    \"description\": \"[required]. String - Permite identificar la categoria a la que pertenece el aviso o ticket\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.54720023441049\",\n                                                    \"description\": \"[required]. Float - Coordenada de latitud geográfica.\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6370539665222172\",\n                                                    \"description\": \"[required]. Float - Coordenada de longitud geográfica.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Service not configured\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"8ce7f7fd-50de-4eae-ad96-889792982f8d\",\n                                    \"name\": \"Check Duplicates Without Coordinates\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request_duplicate?service_id=5620ec856aa918b1008b4567&lat=40.54720023441049\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request_duplicate\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"service_id\",\n                                                    \"value\": \"5620ec856aa918b1008b4567\",\n                                                    \"description\": \"[required]. String - Permite identificar la categoria a la que pertenece el aviso o ticket\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.54720023441049\",\n                                                    \"description\": \"[required]. Float - Coordenada de latitud geográfica.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Lat and lng required\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Request Detail\",\n                            \"id\": \"de79a8bb-ddb1-4f3f-99e9-59b044d0a862\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests/{{request_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests\",\n                                        \"{{request_id}}\"\n                                    ]\n                                },\n                                \"description\": \"**Request param**\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| request_id | String | \\\\[required\\\\]. ID de la request sobre la cual se requiere obtener el detalle correspondiente. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"fbb57c0d-7b29-4b7f-9b80-985d75dbbacb\",\n                                    \"name\": \"Request Detail Ok\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests/{{request_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\",\n                                                \"{{request_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"}\"\n                                },\n                                {\n                                    \"id\": \"8b0568d2-dc50-4f71-837a-0fe0da7706b2\",\n                                    \"name\": \"Request Detail Empty\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests/{{request_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\",\n                                                \"{{request_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Request was not found\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get Request Media\",\n                            \"id\": \"88b0896d-51c4-4c30-b63c-553323ba0d40\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/medias\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"{{request_token}}\",\n                                        \"medias\"\n                                    ]\n                                },\n                                \"description\": \"**Request param**\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| request_token | String | \\\\[required\\\\].ID de la request de la cual se desean obtener las imágenes asociadas. (Ej. 690502a24e28f2eca706ecde) |\\n\\nEste 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\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"8489353a-cb0d-4fdb-be52-d20c66212bef\",\n                                    \"name\": \"Get Request Media Ok\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/medias\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_token}}\",\n                                                \"medias\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"fa43495d-9fa5-4f9a-903b-39cf3afae6b8\",\n                                    \"name\": \"Get Request Media Empty\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/medias\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_token}}\",\n                                                \"medias\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"request_token not exist\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get Request By Coordinates\",\n                            \"id\": \"117276dd-842a-48aa-8a7a-2734c5bf41c0\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [\n                                    {\n                                        \"key\": \"User-Agent\",\n                                        \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:145.0) Gecko/20100101 Firefox/145.0\"\n                                    },\n                                    {\n                                        \"key\": \"Accept\",\n                                        \"value\": \"application/json\"\n                                    },\n                                    {\n                                        \"key\": \"Accept-Language\",\n                                        \"value\": \"es\"\n                                    },\n                                    {\n                                        \"key\": \"Accept-Encoding\",\n                                        \"value\": \"gzip, deflate, br, zstd\"\n                                    },\n                                    {\n                                        \"key\": \"Content-Type\",\n                                        \"value\": \"application/json\"\n                                    },\n                                    {\n                                        \"key\": \"X-Client-Id\",\n                                        \"value\": \"4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg\"\n                                    },\n                                    {\n                                        \"key\": \"Authorization\",\n                                        \"value\": \"Bearer Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg\"\n                                    },\n                                    {\n                                        \"key\": \"Origin\",\n                                        \"value\": \"https://mapa-pre.mejoratuciudad.org\"\n                                    },\n                                    {\n                                        \"key\": \"Connection\",\n                                        \"value\": \"keep-alive\"\n                                    },\n                                    {\n                                        \"key\": \"Referer\",\n                                        \"value\": \"https://mapa-pre.mejoratuciudad.org/\"\n                                    },\n                                    {\n                                        \"key\": \"Sec-Fetch-Dest\",\n                                        \"value\": \"empty\"\n                                    },\n                                    {\n                                        \"key\": \"Sec-Fetch-Mode\",\n                                        \"value\": \"cors\"\n                                    },\n                                    {\n                                        \"key\": \"Sec-Fetch-Site\",\n                                        \"value\": \"same-site\"\n                                    },\n                                    {\n                                        \"key\": \"Priority\",\n                                        \"value\": \"u=0\"\n                                    },\n                                    {\n                                        \"key\": \"TE\",\n                                        \"value\": \"trailers\"\n                                    },\n                                    {\n                                        \"key\": \"Cookie\",\n                                        \"value\": \"lunetics_locale=es\"\n                                    }\n                                ],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests/coordinates?jurisdiction_ids=org.alcobendas%2C%20es.madrid&limit=90&own=true&lat=40.52528265385&long=-3.62548828125\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests\",\n                                        \"coordinates\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_ids\",\n                                            \"value\": \"org.alcobendas%2C%20es.madrid\",\n                                            \"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.\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"90\",\n                                            \"description\": \"Int [optional]. Permite limitar la cantidad de resultados obtenidos por página.\"\n                                        },\n                                        {\n                                            \"key\": \"own\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Boolean [optional]. Permite limitar la búsqueda de avisos para que solo se obtengan los que pertenecen al usuario del contexto (logueado).\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.52528265385\",\n                                            \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (latitud).\"\n                                        },\n                                        {\n                                            \"key\": \"long\",\n                                            \"value\": \"-3.62548828125\",\n                                            \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (longitud).\"\n                                        }\n                                    ]\n                                },\n                                \"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).\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"78b2c5ad-9453-4c50-af15-8db8f6f61930\",\n                                    \"name\": \"Get Request By Coordinates OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"User-Agent\",\n                                                \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:145.0) Gecko/20100101 Firefox/145.0\"\n                                            },\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Language\",\n                                                \"value\": \"es\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Encoding\",\n                                                \"value\": \"gzip, deflate, br, zstd\"\n                                            },\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"X-Client-Id\",\n                                                \"value\": \"4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg\"\n                                            },\n                                            {\n                                                \"key\": \"Origin\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org\"\n                                            },\n                                            {\n                                                \"key\": \"Connection\",\n                                                \"value\": \"keep-alive\"\n                                            },\n                                            {\n                                                \"key\": \"Referer\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org/\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Dest\",\n                                                \"value\": \"empty\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Mode\",\n                                                \"value\": \"cors\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Site\",\n                                                \"value\": \"same-site\"\n                                            },\n                                            {\n                                                \"key\": \"Priority\",\n                                                \"value\": \"u=0\"\n                                            },\n                                            {\n                                                \"key\": \"TE\",\n                                                \"value\": \"trailers\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests/coordinates?jurisdiction_ids=org.alcobendas%2C%20es.madrid&limit=90&own=true&lat=40.52528265385&long=-3.62548828125\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\",\n                                                \"coordinates\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas%2C%20es.madrid\",\n                                                    \"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.\",\n                                                    \"uuid\": \"ffe17b5e-c803-4d33-9611-2315731b3dfd\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"90\",\n                                                    \"description\": \"Int [optional]. Permite limitar la cantidad de resultados obtenidos por página.\",\n                                                    \"uuid\": \"f8424e8d-0ca0-482a-836c-b87e60d0d62e\"\n                                                },\n                                                {\n                                                    \"key\": \"own\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"Boolean [optional]. Permite limitar la búsqueda de avisos para que solo se obtengan los que pertenecen al usuario del contexto (logueado).\",\n                                                    \"uuid\": \"3c555d16-6bab-4fc4-b7dd-f78bc2215831\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.52528265385\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (latitud).\",\n                                                    \"uuid\": \"7f3e0733-b5ca-4967-909f-bb8ab05fbce2\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"-3.62548828125\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (longitud).\",\n                                                    \"uuid\": \"bc947d53-d3b8-4e8a-a500-4fb98dda0879\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\\\",\\n        \\\"address_string\\\": \\\"C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid, Spain\\\",\\n        \\\"lat\\\": 40.52528265385,\\n        \\\"long\\\": -3.62548828125,\\n        \\\"token\\\": \\\"6931a26b70d10e94e8098d15\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"b80fa381-c1e2-4306-b672-0ff9c3301ca0\",\n                                    \"name\": \"Get Request By Coordinates OK without jurisdiction\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"User-Agent\",\n                                                \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:145.0) Gecko/20100101 Firefox/145.0\"\n                                            },\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Language\",\n                                                \"value\": \"es\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Encoding\",\n                                                \"value\": \"gzip, deflate, br, zstd\"\n                                            },\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"X-Client-Id\",\n                                                \"value\": \"4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg\"\n                                            },\n                                            {\n                                                \"key\": \"Origin\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org\"\n                                            },\n                                            {\n                                                \"key\": \"Connection\",\n                                                \"value\": \"keep-alive\"\n                                            },\n                                            {\n                                                \"key\": \"Referer\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org/\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Dest\",\n                                                \"value\": \"empty\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Mode\",\n                                                \"value\": \"cors\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Site\",\n                                                \"value\": \"same-site\"\n                                            },\n                                            {\n                                                \"key\": \"Priority\",\n                                                \"value\": \"u=0\"\n                                            },\n                                            {\n                                                \"key\": \"TE\",\n                                                \"value\": \"trailers\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests/coordinates?limit=90&own=true&lat=40.52528265385&long=-3.62548828125\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\",\n                                                \"coordinates\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"90\",\n                                                    \"description\": \"Int [optional]. Permite limitar la cantidad de resultados obtenidos por página.\",\n                                                    \"uuid\": \"a48e6db6-1729-4e99-a7ea-dce39af8c17c\"\n                                                },\n                                                {\n                                                    \"key\": \"own\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"Boolean [optional]. Permite limitar la búsqueda de avisos para que solo se obtengan los que pertenecen al usuario del contexto (logueado).\",\n                                                    \"uuid\": \"72469eca-3df1-4b6c-86fb-e695abffe6cd\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.52528265385\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (latitud).\",\n                                                    \"uuid\": \"edf1c838-f86e-4b76-93a0-e589813fbb20\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"-3.62548828125\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (longitud).\",\n                                                    \"uuid\": \"0ea2065c-0c27-4b7a-9823-93c5aded386f\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\\\",\\n        \\\"address_string\\\": \\\"C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid, Spain\\\",\\n        \\\"lat\\\": 40.52528265385,\\n        \\\"long\\\": -3.62548828125,\\n        \\\"token\\\": \\\"6931a26b70d10e94e8098d15\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"69436a44-d369-4143-9bc8-d69a3ecd161f\",\n                                    \"name\": \"Get Request By Coordinates OK with OWN false\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"User-Agent\",\n                                                \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:145.0) Gecko/20100101 Firefox/145.0\"\n                                            },\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Language\",\n                                                \"value\": \"es\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Encoding\",\n                                                \"value\": \"gzip, deflate, br, zstd\"\n                                            },\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"X-Client-Id\",\n                                                \"value\": \"4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg\"\n                                            },\n                                            {\n                                                \"key\": \"Origin\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org\"\n                                            },\n                                            {\n                                                \"key\": \"Connection\",\n                                                \"value\": \"keep-alive\"\n                                            },\n                                            {\n                                                \"key\": \"Referer\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org/\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Dest\",\n                                                \"value\": \"empty\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Mode\",\n                                                \"value\": \"cors\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Site\",\n                                                \"value\": \"same-site\"\n                                            },\n                                            {\n                                                \"key\": \"Priority\",\n                                                \"value\": \"u=0\"\n                                            },\n                                            {\n                                                \"key\": \"TE\",\n                                                \"value\": \"trailers\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests/coordinates?jurisdiction_ids=org.alcobendas%2C%20es.madrid&limit=90&own=false&lat=40.52528265385&long=-3.62548828125\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\",\n                                                \"coordinates\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas%2C%20es.madrid\",\n                                                    \"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.\",\n                                                    \"uuid\": \"3b3d331e-c99d-45eb-bd8a-45774631e80e\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"90\",\n                                                    \"description\": \"Int [optional]. Permite limitar la cantidad de resultados obtenidos por página.\",\n                                                    \"uuid\": \"ffdd4802-c8e0-421c-bd55-bbcf453914b0\"\n                                                },\n                                                {\n                                                    \"key\": \"own\",\n                                                    \"value\": \"false\",\n                                                    \"description\": \"Boolean [optional]. Permite limitar la búsqueda de avisos para que solo se obtengan los que pertenecen al usuario del contexto (logueado).\",\n                                                    \"uuid\": \"f0929cd3-8629-437b-846a-69da1fd29ead\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.52528265385\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (latitud).\",\n                                                    \"uuid\": \"a399e5ba-ddb1-4b0d-a45e-6c03cc4d2cc9\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"-3.62548828125\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (longitud).\",\n                                                    \"uuid\": \"c22728a4-9d82-48de-b6a4-f8112412a813\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"8da67f42-3000-4e95-863a-75dd09d2456b\",\n                                    \"name\": \"Get Request By Coordinates only lat and lng\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"User-Agent\",\n                                                \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:145.0) Gecko/20100101 Firefox/145.0\"\n                                            },\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Language\",\n                                                \"value\": \"es\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Encoding\",\n                                                \"value\": \"gzip, deflate, br, zstd\"\n                                            },\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"X-Client-Id\",\n                                                \"value\": \"4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg\"\n                                            },\n                                            {\n                                                \"key\": \"Origin\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org\"\n                                            },\n                                            {\n                                                \"key\": \"Connection\",\n                                                \"value\": \"keep-alive\"\n                                            },\n                                            {\n                                                \"key\": \"Referer\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org/\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Dest\",\n                                                \"value\": \"empty\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Mode\",\n                                                \"value\": \"cors\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Site\",\n                                                \"value\": \"same-site\"\n                                            },\n                                            {\n                                                \"key\": \"Priority\",\n                                                \"value\": \"u=0\"\n                                            },\n                                            {\n                                                \"key\": \"TE\",\n                                                \"value\": \"trailers\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests/coordinates?limit=90&lat=40.52528265385&long=-3.62548828125\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\",\n                                                \"coordinates\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"90\",\n                                                    \"description\": \"Int [optional]. Permite limitar la cantidad de resultados obtenidos por página.\",\n                                                    \"uuid\": \"dcc987ea-970f-44c3-b915-e90f66f82bb0\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.52528265385\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (latitud).\",\n                                                    \"uuid\": \"6a208371-76c5-496c-aa20-95259ff6b3aa\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"-3.62548828125\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (longitud).\",\n                                                    \"uuid\": \"f18ba989-c798-42d2-9baa-b56b8cb1a626\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"762e77f8-05cf-43a2-92a7-8bfc6a534309\",\n                                    \"name\": \"Get Request By Coordinates Error\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"User-Agent\",\n                                                \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:145.0) Gecko/20100101 Firefox/145.0\"\n                                            },\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Language\",\n                                                \"value\": \"es\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Encoding\",\n                                                \"value\": \"gzip, deflate, br, zstd\"\n                                            },\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"X-Client-Id\",\n                                                \"value\": \"4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg\"\n                                            },\n                                            {\n                                                \"key\": \"Origin\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org\"\n                                            },\n                                            {\n                                                \"key\": \"Connection\",\n                                                \"value\": \"keep-alive\"\n                                            },\n                                            {\n                                                \"key\": \"Referer\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org/\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Dest\",\n                                                \"value\": \"empty\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Mode\",\n                                                \"value\": \"cors\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Site\",\n                                                \"value\": \"same-site\"\n                                            },\n                                            {\n                                                \"key\": \"Priority\",\n                                                \"value\": \"u=0\"\n                                            },\n                                            {\n                                                \"key\": \"TE\",\n                                                \"value\": \"trailers\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests/coordinates?jurisdiction_ids=org.alcobendas%2C%20es.madrid&limit=90&own=true&lat=&long=-3.62548828125\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\",\n                                                \"coordinates\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas%2C%20es.madrid\",\n                                                    \"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.\",\n                                                    \"uuid\": \"17b72877-a051-40d1-abac-414978d1eec7\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"90\",\n                                                    \"description\": \"Int [optional]. Permite limitar la cantidad de resultados obtenidos por página.\",\n                                                    \"uuid\": \"2e6e13f9-2509-464c-a931-c22cccd94877\"\n                                                },\n                                                {\n                                                    \"key\": \"own\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"Boolean [optional]. Permite limitar la búsqueda de avisos para que solo se obtengan los que pertenecen al usuario del contexto (logueado).\",\n                                                    \"uuid\": \"f059bb42-f19b-4491-9d36-22f6967b41f8\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (latitud).\",\n                                                    \"uuid\": \"09cf7cfa-6df8-4f6e-8645-af5ddb62ae73\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"-3.62548828125\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (longitud).\",\n                                                    \"uuid\": \"a47772b2-d557-4d57-a5d5-26be8b381d58\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"ERROR: lat or long was not found\\\\n\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"1138ce2f-3858-49e0-a28a-4485ad61b4ce\",\n                                    \"name\": \"Get Request By Coordinates Empty response\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"User-Agent\",\n                                                \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:145.0) Gecko/20100101 Firefox/145.0\"\n                                            },\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Language\",\n                                                \"value\": \"es\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Encoding\",\n                                                \"value\": \"gzip, deflate, br, zstd\"\n                                            },\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"X-Client-Id\",\n                                                \"value\": \"4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg\"\n                                            },\n                                            {\n                                                \"key\": \"Origin\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org\"\n                                            },\n                                            {\n                                                \"key\": \"Connection\",\n                                                \"value\": \"keep-alive\"\n                                            },\n                                            {\n                                                \"key\": \"Referer\",\n                                                \"value\": \"https://mapa-pre.mejoratuciudad.org/\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Dest\",\n                                                \"value\": \"empty\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Mode\",\n                                                \"value\": \"cors\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Site\",\n                                                \"value\": \"same-site\"\n                                            },\n                                            {\n                                                \"key\": \"Priority\",\n                                                \"value\": \"u=0\"\n                                            },\n                                            {\n                                                \"key\": \"TE\",\n                                                \"value\": \"trailers\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests/coordinates?jurisdiction_ids=org.alcobendas%2C%20es.madrid&limit=90&own=true&lat=0.0000&long=0.0000\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\",\n                                                \"coordinates\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas%2C%20es.madrid\",\n                                                    \"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.\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"90\",\n                                                    \"description\": \"Int [optional]. Permite limitar la cantidad de resultados obtenidos por página.\"\n                                                },\n                                                {\n                                                    \"key\": \"own\",\n                                                    \"value\": \"true\",\n                                                    \"description\": \"Boolean [optional]. Permite limitar la búsqueda de avisos para que solo se obtengan los que pertenecen al usuario del contexto (logueado).\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"0.0000\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (latitud).\"\n                                                },\n                                                {\n                                                    \"key\": \"long\",\n                                                    \"value\": \"0.0000\",\n                                                    \"description\": \"Float [optional]. Permite establecer la búsqueda de avisos a partir de coordenadas especificadas (longitud).\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Requests Owns\",\n                            \"id\": \"b0f69891-8891-49cb-9a28-e7ff1855af50\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [\n                                    {\n                                        \"key\": \"Authorization\",\n                                        \"value\": \"Bearer MzEwNjIyNTlhMGMyZjBkYjNkZTExOGI5MTdiNWYxYjU5YmUxMzBlMWVhNTVkMGNmZTkyYzBiMjBiNDc1OGZlZg\"\n                                    },\n                                    {\n                                        \"key\": \"Cookie\",\n                                        \"value\": \"lunetics_locale=en\"\n                                    }\n                                ],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests_owns?app_key=1234555\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests_owns\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"app_key\",\n                                            \"value\": \"1234555\",\n                                            \"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.\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nObtiene 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"03fe5255-525f-42d7-ae65-f248c0de799c\",\n                                    \"name\": \"Response OK Requests Owns\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer MzEwNjIyNTlhMGMyZjBkYjNkZTExOGI5MTdiNWYxYjU5YmUxMzBlMWVhNTVkMGNmZTkyYzBiMjBiNDc1OGZlZg\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=en\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_owns?app_key=1234555\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_owns\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"app_key\",\n                                                    \"value\": \"1234555\",\n                                                    \"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.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"8473a563-a28b-4832-a639-c4dec09467dd\",\n                                    \"name\": \"Not Found Requests Owns\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer MzEwNjIyNTlhMGMyZjBkYjNkZTExOGI5MTdiNWYxYjU5YmUxMzBlMWVhNTVkMGNmZTkyYzBiMjBiNDc1OGZlZg\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=en\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_owns?app_key=1234555\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_owns\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"app_key\",\n                                                    \"value\": \"1234555\",\n                                                    \"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.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 403,\\n        \\\"description\\\": \\\"user was not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Requests Follows\",\n                            \"id\": \"385a4f67-c9a2-4a6d-94e2-f0e8f549ae97\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"MDIxYmY1YzFiNWMwMTQ1ZDljNmU2OTViMTRlNGY5YTQ3ZjBjZWQzZTJkYTJkZTRlZDVjNTZjMTM2Y2ZjNjZhYQ\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests_follows?app_key=1\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests_follows\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"app_key\",\n                                            \"value\": \"1\",\n                                            \"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.\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nObtiene la lista de peticiones (requests) que el usuario autenticado está siguiendo.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"2f9a91d4-daf5-4448-892c-1941b21766de\",\n                                    \"name\": \"Response Ok Requests Follows\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"\"\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"deleted\\\": false,\\n    \\\"jurisdiction_name\\\": \\\"Alcobendas\\\",\\n    \\\"service_id\\\": \\\"570b55b26aa918db008b4567\\\",\\n    \\\"service_code\\\": \\\"60\\\",\\n    \\\"service_name\\\": \\\"Ascensor calle Granada\\\",\\n    \\\"requested_datetime\\\": \\\"2025-11-04T16:02:51+00:00\\\",\\n    \\\"supporting_count\\\": 0,\\n    \\\"following_count\\\": 1,\\n    \\\"evaluations_count\\\": 0,\\n    \\\"address\\\": \\\"P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain\\\",\\n    \\\"updated_datetime\\\": \\\"2025-12-12T21:25:53+00:00\\\",\\n    \\\"evaluations_avg\\\": -1,\\n    \\\"reiterations_count\\\": 0,\\n    \\\"complaints_count\\\": 0,\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"status_node_type\\\": \\\"initial_node\\\",\\n    \\\"files\\\": [],\\n    \\\"is_evaluable\\\": false,\\n    \\\"typology\\\": {\\n    \\\"hasLocation\\\": true,\\n    \\\"id\\\": \\\"5850dca2e22c6d9f51b00c0f\\\",\\n    \\\"color\\\": \\\"#ebc113\\\",\\n    \\\"description_legend\\\": \\\"Ej: farola fundida\\\",\\n    \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\\\",\\n    \\\"location_type\\\": \\\"geolocation\\\",\\n    \\\"name\\\": \\\"Aviso\\\",\\n    \\\"order\\\": 1,\\n    \\\"public\\\": true,\\n    \\\"typology_description\\\": \\\"Tengo un problema con un elemento en la calle\\\",\\n    \\\"visible_name\\\": \\\"Aviso\\\",\\n    \\\"with_authorized_users\\\": true,\\n    \\\"with_description\\\": true,\\n    \\\"with_files\\\": true,\\n    \\\"with_geolocation_data\\\": true,\\n    \\\"with_medias\\\": true,\\n    \\\"with_temporality_data\\\": true\\n    },\\n    \\\"current_status_assignments\\\": [],\\n    \\\"public_visibility\\\": false,\\n    \\\"accepted\\\": false,\\n    \\\"additional_data\\\": [],\\n    \\\"comments_count\\\": 0,\\n    \\\"complaining\\\": false,\\n    \\\"current_node_estimated_final_datetime\\\": \\\"2025-11-06T16:02:52+00:00\\\",\\n    \\\"current_node_estimated_start_datetime\\\": \\\"2025-11-04T16:02:52+00:00\\\",\\n    \\\"description\\\": \\\"prueba\\\",\\n    \\\"estimated_final_datetime\\\": \\\"2025-11-17T16:02:52+00:00\\\",\\n    \\\"estimated_start_datetime\\\": \\\"2025-11-04T16:02:52+00:00\\\",\\n    \\\"evaluation\\\": 0,\\n    \\\"following\\\": {\\n    \\\"isFollowing\\\": true,\\n    \\\"channels\\\": {\\n        \\\"email\\\": false,\\n        \\\"push\\\": false\\n    }\\n    },\\n    \\\"medias\\\": [],\\n    \\\"address_string\\\": \\\"P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain\\\",\\n    \\\"lat\\\": 40.54628714504,\\n    \\\"long\\\": -3.6569023132324,\\n    \\\"priority\\\": {\\n    \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png\\\"\\n    },\\n    \\\"public\\\": true,\\n    \\\"seen\\\": false,\\n    \\\"service\\\": {\\n    \\\"deleted\\\": false,\\n    \\\"parent_service_name\\\": \\\"Ascensores en vía pública\\\",\\n    \\\"group\\\": \\\"570b50756aa918d6008b4567\\\",\\n    \\\"visible_name\\\": \\\"Ascensor calle Granada (Aviso)\\\",\\n    \\\"id\\\": \\\"570b55b26aa918db008b4567\\\",\\n    \\\"service_code\\\": \\\"60\\\",\\n    \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db194ce9e815.png\\\"\\n    },\\n    \\\"service_request_id\\\": \\\"ALC44145\\\",\\n    \\\"status_node\\\": {\\n    \\\"status_node_type\\\": \\\"initial_node\\\",\\n    \\\"name\\\": \\\"Nuevo\\\",\\n    \\\"color\\\": \\\"#f1c40f\\\",\\n    \\\"typology_node_id\\\": \\\"5850dca2e22c6d9f51b00c59\\\",\\n    \\\"visible_name\\\": \\\"Nuevo\\\",\\n    \\\"id\\\": \\\"5850dd34e22c6d9f51b016ef\\\",\\n    \\\"order\\\": 1,\\n    \\\"planned\\\": false\\n    },\\n    \\\"supporting\\\": false,\\n    \\\"tags\\\": [],\\n    \\\"token\\\": \\\"690a23ac4e4e725ed4022cf5\\\",\\n    \\\"user\\\": {\\n    \\\"hasPassword\\\": false,\\n    \\\"nickname\\\": \\\"user_cf6b655f8bdc6b8ce17c\\\",\\n    \\\"avatar\\\": \\\"https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600\\\",\\n    \\\"id\\\": \\\"68b064f122eb8e9dcf08aad6\\\"\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"72cf3725-8da8-415a-9fe2-4f6559442aff\",\n                                    \"name\": \"Not Found Requests Follows\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_follows\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_follows\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 403,\\n        \\\"description\\\": \\\"user was not found\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"454479a8-f39b-4ce5-bed5-71fe616b5025\",\n                                    \"name\": \"Not app_key Requests Follows\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_follows\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_follows\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Create Request\",\n                            \"id\": \"6603e506-ff7c-4490-82dc-78e801d11aa6\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"additionalData\\\": [\\n        {\\n            \\\"question\\\": \\\"64706cd7a18ec0136f01dea5\\\",\\n            \\\"value\\\": \\\"resp1\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d30696fc5f2f3ac018b4568\\\",\\n            \\\"value\\\": \\\"fgfdg\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d3069ba9e0d8faa018b4571\\\",\\n            \\\"value\\\": \\\"sdfsdf\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d3069dac5f2f3aa018b4567\\\",\\n            \\\"value\\\": \\\"1\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"6674818e3e995542e9017df3\\\",\\n            \\\"value\\\": [\\n                \\\"vbvcbvb\\\"\\n            ]\\n        }\\n    ],\\n    \\\"address_string\\\": \\\"Calle Padilla, 17 , Salamanca, Castellana\\\",\\n    \\\"description\\\": \\\"sdgsfsdfsdfsd\\\",\\n    \\\"device_id\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"device_type\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"email\\\": \\\"witijah950@erapk.com\\\",\\n    \\\"email_notification\\\": true,\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_element\\\": \\\"5c9b55579650e67d42985e80\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"last_name\\\": \\\"Perez\\\",\\n    \\\"lat\\\": 40.54720023441049,\\n    \\\"long\\\": -3.6370539665222172,\\n    \\\"phone\\\": \\\"5551234\\\",\\n    \\\"public\\\": true,\\n    \\\"push_notification\\\": true,\\n    \\\"service_id\\\": \\\"5620ec856aa918b1008b4567\\\",\\n    \\\"sms_notification\\\": true\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests?jurisdiction_id=es.madrid\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_id\",\n                                            \"value\": \"es.madrid\",\n                                            \"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.\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nEste 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.\\n\\n**Body**\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| additionalData | Array | \\\\[required\\\\] Lista de objetos que contienen preguntas y respuestas asociadas. |\\n| address_string | String | \\\\[required\\\\] Dirección física en formato de texto. |\\n| description | String | \\\\[required\\\\] Descripción del servicio o entidad asociada. |\\n| device_id | String | \\\\[required\\\\] Identificador único del dispositivo que realiza la solicitud. |\\n| device_type | String | \\\\[required\\\\] Tipo de dispositivo desde el cual se realiza la solicitud. |\\n| email | String | \\\\[required\\\\] Dirección de correo electrónico del usuario. |\\n| email_notification | Bool | \\\\[required\\\\] Indica si el usuario ha habilitado las notificaciones por correo electrónico. |\\n| first_name | String | \\\\[required\\\\] Nombre del usuario. |\\n| jurisdiction_element | String | \\\\[required\\\\] Identificador del elemento dentro de la jurisdicción. |\\n| jurisdiction_id | String | \\\\[required\\\\] Identificador de la jurisdicción a la que pertenece. |\\n| last_name | String | \\\\[required\\\\] Apellido del usuario. |\\n| lat | Float | \\\\[required\\\\] Coordenada de latitud geográfica. |\\n| long | Float | \\\\[required\\\\] Coordenada de longitud geográfica. |\\n| phone | String | \\\\[required\\\\] Número de teléfono del usuario. |\\n| public | Bool | \\\\[required\\\\] Indica si la información es pública o privada. |\\n| push_notification | Bool | \\\\[required\\\\] Indica si el usuario ha habilitado las notificaciones push. |\\n| service_id | String | \\\\[required\\\\] Identificador único del servicio asociado. |\\n| sms_notification | Bool | \\\\[required\\\\] Indica si el usuario ha habilitado las notificaciones por SMS. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"dac9e20e-e978-4485-bcba-04526e4c7af0\",\n                                    \"name\": \"Create Request OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"additionalData\\\": [\\n        {\\n            \\\"question\\\": \\\"64706cd7a18ec0136f01dea5\\\",\\n            \\\"value\\\": \\\"resp1\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d30696fc5f2f3ac018b4568\\\",\\n            \\\"value\\\": \\\"fgfdg\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d3069ba9e0d8faa018b4571\\\",\\n            \\\"value\\\": \\\"sdfsdf\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d3069dac5f2f3aa018b4567\\\",\\n            \\\"value\\\": \\\"1\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"6674818e3e995542e9017df3\\\",\\n            \\\"value\\\": [\\n                \\\"vbvcbvb\\\"\\n            ]\\n        }\\n    ],\\n    \\\"address_string\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n    \\\"description\\\": \\\"sdgsfsdfsdfsd\\\",\\n    \\\"device_id\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"device_type\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"email\\\": \\\"witijah950@erapk.com\\\",\\n    \\\"email_notification\\\": true,\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_element\\\": \\\"5c9b55579650e67d42985e80\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"last_name\\\": \\\"Perez\\\",\\n    \\\"lat\\\": 40.54720023441049,\\n    \\\"long\\\": -3.6370539665222172,\\n    \\\"phone\\\": \\\"5551234\\\",\\n    \\\"public\\\": true,\\n    \\\"push_notification\\\": true,\\n    \\\"service_id\\\": \\\"5620ec856aa918b1008b4567\\\",\\n    \\\"sms_notification\\\": true\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests?jurisdiction_id=es.madrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"es.madrid\",\n                                                    \"description\": \"[required]. String. Identificador de proyecto para individualizar el origen del aviso o ticket\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"service_request_id\\\": \\\"ALC43688\\\",\\n        \\\"status_node\\\": {\\n            \\\"name\\\": \\\"Nuevo\\\",\\n            \\\"color\\\": \\\"#f1c40f\\\",\\n            \\\"visible_name\\\": \\\"Nuevo\\\",\\n            \\\"id\\\": \\\"5850dd1ee22c6d9f51b0157b\\\"\\n        },\\n        \\\"token\\\": \\\"67d423553596bff44f0a79c5\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"ecaa2906-e49b-49c9-8be9-892c301df7b9\",\n                                    \"name\": \"Create Request with service name\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"additionalData\\\": [\\n        {\\n            \\\"question\\\": \\\"64706cd7a18ec0136f01dea5\\\",\\n            \\\"value\\\": \\\"resp1\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d30696fc5f2f3ac018b4568\\\",\\n            \\\"value\\\": \\\"fgfdg\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d3069ba9e0d8faa018b4571\\\",\\n            \\\"value\\\": \\\"sdfsdf\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d3069dac5f2f3aa018b4567\\\",\\n            \\\"value\\\": \\\"1\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"6674818e3e995542e9017df3\\\",\\n            \\\"value\\\": [\\n                \\\"vbvcbvb\\\"\\n            ]\\n        }\\n    ],\\n    \\\"address_string\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n    \\\"description\\\": \\\"sdgsfsdfsdfsd\\\",\\n    \\\"device_id\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"device_type\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"email\\\": \\\"witijah950@erapk.com\\\",\\n    \\\"email_notification\\\": true,\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_element\\\": \\\"5c9b55579650e67d42985e80\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"last_name\\\": \\\"Perez\\\",\\n    \\\"lat\\\": 40.54720023441049,\\n    \\\"long\\\": -3.6370539665222172,\\n    \\\"phone\\\": \\\"5551234\\\",\\n    \\\"public\\\": true,\\n    \\\"push_notification\\\": true,\\n    \\\"service_id\\\": \\\"Armarios de alumbrado en vía pública\\\",\\n    \\\"sms_notification\\\": true\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests?jurisdiction_id=es.madrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"es.madrid\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"service_request_id\\\": \\\"ALC43688\\\",\\n        \\\"status_node\\\": {\\n            \\\"name\\\": \\\"Nuevo\\\",\\n            \\\"color\\\": \\\"#f1c40f\\\",\\n            \\\"visible_name\\\": \\\"Nuevo\\\",\\n            \\\"id\\\": \\\"5850dd1ee22c6d9f51b0157b\\\"\\n        },\\n        \\\"token\\\": \\\"67d423553596bff44f0a79c5\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"1fd16b4a-947a-4c15-b4be-83e5207e5376\",\n                                    \"name\": \"Create Request Annonymous User\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"additionalData\\\": [\\n        {\\n            \\\"question\\\": \\\"64706cd7a18ec0136f01dea5\\\",\\n            \\\"value\\\": \\\"resp1\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d30696fc5f2f3ac018b4568\\\",\\n            \\\"value\\\": \\\"fgfdg\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d3069ba9e0d8faa018b4571\\\",\\n            \\\"value\\\": \\\"sdfsdf\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d3069dac5f2f3aa018b4567\\\",\\n            \\\"value\\\": \\\"1\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"6674818e3e995542e9017df3\\\",\\n            \\\"value\\\": [\\n                \\\"vbvcbvb\\\"\\n            ]\\n        }\\n    ],\\n    \\\"address_string\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n    \\\"description\\\": \\\"sdgsfsdfsdfsd\\\",\\n    \\\"device_id\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"device_type\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"email\\\": \\\"witijah950@erapk.com\\\",\\n    \\\"email_notification\\\": true,\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_element\\\": \\\"5c9b55579650e67d42985e80\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"last_name\\\": \\\"Perez\\\",\\n    \\\"lat\\\": 40.54720023441049,\\n    \\\"long\\\": -3.6370539665222172,\\n    \\\"phone\\\": \\\"5551234\\\",\\n    \\\"public\\\": true,\\n    \\\"push_notification\\\": true,\\n    \\\"service_id\\\": \\\"5620ec856aa918b1008b4567\\\",\\n    \\\"sms_notification\\\": true\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests?jurisdiction_id=es.madrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"es.madrid\",\n                                                    \"description\": \"[required]. String. Identificador de proyecto para individualizar el origen del aviso o ticket\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 403,\\n        \\\"description\\\": \\\"Jurisdiction does NOT allow Anonymous Users to create a Request\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"66faf7d6-7fa2-4bf0-9b89-c26ddfe662cf\",\n                                    \"name\": \"Create Request Failed\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"additionalData\\\": [\\n        {\\n            \\\"question\\\": \\\"64706cd7a18ec0136f01dea5\\\",\\n            \\\"value\\\": \\\"resp1\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d30696fc5f2f3ac018b4568\\\",\\n            \\\"value\\\": \\\"fgfdg\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d3069ba9e0d8faa018b4571\\\",\\n            \\\"value\\\": \\\"sdfsdf\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"5d3069dac5f2f3aa018b4567\\\",\\n            \\\"value\\\": \\\"1\\\"\\n        },\\n        {\\n            \\\"question\\\": \\\"6674818e3e995542e9017df3\\\",\\n            \\\"value\\\": [\\n                \\\"vbvcbvb\\\"\\n            ]\\n        }\\n    ],\\n    \\\"address_string\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n    \\\"description\\\": \\\"sdgsfsdfsdfsd\\\",\\n    \\\"device_id\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"device_type\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"email\\\": \\\"witijah950@erapk.com\\\",\\n    \\\"email_notification\\\": true,\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_element\\\": \\\"5c9b55579650e67d42985e80\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"last_name\\\": \\\"Perez\\\",\\n    \\\"lat\\\": 40.54720023441049,\\n    \\\"long\\\": -3.6370539665222172,\\n    \\\"phone\\\": \\\"5551234\\\",\\n    \\\"public\\\": true,\\n    \\\"push_notification\\\": true,\\n    \\\"service_id\\\": \\\"5620ec856aa918b1008b4567\\\",\\n    \\\"sms_notification\\\": true\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests?jurisdiction_id=es.madrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"es.madrid\",\n                                                    \"description\": \"[required]. String. Identificador de proyecto para individualizar el origen del aviso o ticket\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"\\\"\\n    }\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Create Request Media\",\n                            \"id\": \"3acd1912-4ccb-4563-856a-46d2477a8f3f\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"formdata\",\n                                    \"formdata\": [\n                                        {\n                                            \"key\": \"media\",\n                                            \"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'\",\n                                            \"type\": \"file\",\n                                            \"uuid\": \"2a1ca954-2d92-4553-a295-f5035508b20f\",\n                                            \"src\": \"postman-cloud:///1effec76-eba3-49e0-9423-0e4d5ee93721\"\n                                        },\n                                        {\n                                            \"key\": \"type\",\n                                            \"value\": \"1\",\n                                            \"description\": \"[optional]. String. Permite establecer el tipo de elemento multimedia a adjuntar en el aviso (FILE_TYPE = 1)\",\n                                            \"type\": \"text\",\n                                            \"uuid\": \"d5c41213-664b-4e5e-9357-e80947f7d881\"\n                                        }\n                                    ]\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests_medias?token=6564b1d0e00dc8a92a0d3597&jurisdiction_id=org.alcobendas\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests_medias\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"6564b1d0e00dc8a92a0d3597\",\n                                            \"description\": \"String [required]. (6564b1d0e00dc8a92a0d3597) Identificador del aviso o ticket al cual se le va a ajuntar el archivo multimedia.\"\n                                        },\n                                        {\n                                            \"key\": \"jurisdiction_id\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"description\": \"String [required]. (org.alcobendas) Identificador de jurisdicción que permite filtrar la búsqueda del aviso a su jurisdicción asociada\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"1e16465d-a786-4514-8b77-9ddaf0608394\",\n                                    \"name\": \"Create Request Media Ok\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"media\",\n                                                    \"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'\",\n                                                    \"type\": \"file\",\n                                                    \"uuid\": \"2a1ca954-2d92-4553-a295-f5035508b20f\",\n                                                    \"src\": [\n                                                        \"/home/radmas/Pictures/Selection_001.png\"\n                                                    ]\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"1\",\n                                                    \"description\": \"[optional]. String. Permite establecer el tipo de elemento multimedia a adjuntar en el aviso (FILE_TYPE = 1)\",\n                                                    \"type\": \"text\",\n                                                    \"uuid\": \"d5c41213-664b-4e5e-9357-e80947f7d881\"\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_medias?token=6564b1d0e00dc8a92a0d3597&jurisdiction_id=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_medias\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"token\",\n                                                    \"value\": \"6564b1d0e00dc8a92a0d3597\",\n                                                    \"description\": \"[required]. String. Identificador del aviso o ticket al cual se le va a ajuntar el archivo multimedia.\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\",\n                                                    \"description\": \"[required]. String. Identificador de jurisdicción que permite filtrar la búsqueda del aviso a su jurisdicción asociada\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"type\\\": \\\"1\\\",\\n    \\\"media_url\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/67d0b73dcaeda232574653.png\\\",\\n    \\\"created_datetime\\\": \\\"2025-03-11T22:20:45+00:00\\\",\\n    \\\"media_code\\\": \\\"67d0b73fc78ebbfae40bb1b2\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"a93e9858-2448-4b30-a761-2364ce1c2367\",\n                                    \"name\": \"Create Request Media Invalid Format\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"media\",\n                                                    \"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'\",\n                                                    \"type\": \"file\",\n                                                    \"uuid\": \"2a1ca954-2d92-4553-a295-f5035508b20f\",\n                                                    \"src\": [\n                                                        \"/home/radmas/Downloads/RAD-8626.js\"\n                                                    ]\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"1\",\n                                                    \"description\": \"[optional]. String. Permite establecer el tipo de elemento multimedia a adjuntar en el aviso (FILE_TYPE = 1)\",\n                                                    \"type\": \"text\",\n                                                    \"uuid\": \"d5c41213-664b-4e5e-9357-e80947f7d881\"\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_medias?token=6564b1d0e00dc8a92a0d3597&jurisdiction_id=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_medias\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"token\",\n                                                    \"value\": \"6564b1d0e00dc8a92a0d3597\",\n                                                    \"description\": \"[required]. String. Identificador del aviso o ticket al cual se le va a ajuntar el archivo multimedia.\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\",\n                                                    \"description\": \"[required]. String. Identificador de jurisdicción que permite filtrar la búsqueda del aviso a su jurisdicción asociada\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 403,\\n    \\\"description\\\": \\\"Media format js not allowed\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"95c7955f-4646-48a1-aa34-90ea4ad2ae8b\",\n                                    \"name\": \"Create Request Media Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"media\",\n                                                    \"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'\",\n                                                    \"type\": \"file\",\n                                                    \"uuid\": \"2a1ca954-2d92-4553-a295-f5035508b20f\",\n                                                    \"src\": [\n                                                        \"postman-cloud:///1effec76-eba3-49e0-9423-0e4d5ee93721\"\n                                                    ]\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"1\",\n                                                    \"description\": \"[optional]. String. Permite establecer el tipo de elemento multimedia a adjuntar en el aviso (FILE_TYPE = 1)\",\n                                                    \"type\": \"text\",\n                                                    \"uuid\": \"d5c41213-664b-4e5e-9357-e80947f7d881\"\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_medias?jurisdiction_id=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_medias\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\",\n                                                    \"description\": \"[required]. String. Identificador de jurisdicción que permite filtrar la búsqueda del aviso a su jurisdicción asociada\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"token was not provided\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"b3ebb9ef-36a6-4992-86ab-e917654e4f7f\",\n                                    \"name\": \"Create Request Media Not found Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"media\",\n                                                    \"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'\",\n                                                    \"type\": \"file\",\n                                                    \"uuid\": \"2a1ca954-2d92-4553-a295-f5035508b20f\",\n                                                    \"src\": [\n                                                        \"postman-cloud:///1effec76-eba3-49e0-9423-0e4d5ee93721\"\n                                                    ]\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"1\",\n                                                    \"description\": \"[optional]. String. Permite establecer el tipo de elemento multimedia a adjuntar en el aviso (FILE_TYPE = 1)\",\n                                                    \"type\": \"text\",\n                                                    \"uuid\": \"d5c41213-664b-4e5e-9357-e80947f7d881\"\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_medias?token=6564b1d0e00dc8a92a0d3597&jurisdiction_id=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_medias\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"token\",\n                                                    \"value\": \"6564b1d0e00dc8a92a0d3597\",\n                                                    \"description\": \"[required]. String. Identificador del aviso o ticket al cual se le va a ajuntar el archivo multimedia.\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\",\n                                                    \"description\": \"[required]. String. Identificador de jurisdicción que permite filtrar la búsqueda del aviso a su jurisdicción asociada\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"token was not found\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Search Request By Query\",\n                            \"id\": \"526799af-4db4-42a4-b931-70e45461e966\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"jurisdiction_element_ids\\\": [\\\"es.madrid\\\"],\\n    \\\"service_ids\\\": [\\\"Arquetas de alumbrado\\\", \\\"Cableado aéreo de alumbrado público\\\"],\\n    \\\"status\\\": [\\\"Nuevo\\\"],\\n    \\\"typologies\\\": [\\\"Reporte\\\", \\\"Aviso\\\"]\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests-list\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests-list\"\n                                    ]\n                                },\n                                \"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.\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\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. |\\n| 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. |\\n| 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. |\\n| 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. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"5594b1fe-540e-49c3-9de8-9d452e33ef22\",\n                                    \"name\": \"Search Request By ServiceName\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"service_ids\\\": [\\\"Arquetas de alumbrado\\\", \\\"Cableado aéreo de alumbrado público\\\"]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests-list\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests-list\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"service_id\\\": \\\"5620ed7e6aa918b1008b456e\\\",\\n        \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\\\",\\n        \\\"service_name\\\": \\\"Cableado aéreo de alumbrado público\\\",\\n        \\\"requested_datetime\\\": \\\"2025-03-05T12:41:48+00:00\\\",\\n        \\\"reiterations_count\\\": 0,\\n        \\\"complaints_count\\\": 0,\\n        \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n        \\\"status_node_type\\\": \\\"initial_node\\\",\\n        \\\"typology\\\": {\\n            \\\"id\\\": \\\"5850dca2e22c6d9f51b00c0f\\\",\\n            \\\"color\\\": \\\"#ebc113\\\",\\n            \\\"description_legend\\\": \\\"Ej: farola fundida\\\",\\n            \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\\\",\\n            \\\"location_type\\\": \\\"geolocation\\\",\\n            \\\"order\\\": 1,\\n            \\\"public\\\": true,\\n            \\\"typology_description\\\": \\\"Tengo un problema con un elemento en la calle\\\",\\n            \\\"visible_name\\\": \\\"Aviso\\\",\\n            \\\"with_authorized_users\\\": false,\\n            \\\"with_description\\\": true,\\n            \\\"with_files\\\": true,\\n            \\\"with_geolocation_data\\\": true,\\n            \\\"with_medias\\\": true,\\n            \\\"with_temporality_data\\\": true\\n        },\\n        \\\"public_visibility\\\": true,\\n        \\\"address\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n        \\\"comments_count\\\": 2,\\n        \\\"complaining\\\": false,\\n        \\\"current_node_estimated_final_datetime\\\": \\\"2025-03-08T12:40:22+00:00\\\",\\n        \\\"current_node_estimated_start_datetime\\\": \\\"2025-03-05T12:40:22+00:00\\\",\\n        \\\"description\\\": \\\"Prueba\\\",\\n        \\\"estimated_final_datetime\\\": \\\"2025-03-18T12:40:22+00:00\\\",\\n        \\\"estimated_start_datetime\\\": \\\"2025-03-05T12:40:22+00:00\\\",\\n        \\\"evaluation\\\": 0,\\n        \\\"jurisdiction_element\\\": {\\n            \\\"map_layers\\\": [\\n                {\\n                    \\\"backend\\\": \\\"OWS\\\",\\n                    \\\"endpoint\\\": \\\"https://gis-pre.mejoratuciudad.org/geoserver\\\",\\n                    \\\"id\\\": \\\"5d9ee7bcde2efef4018b4569\\\",\\n                    \\\"is_default\\\": false,\\n                    \\\"color\\\": \\\"#000000\\\",\\n                    \\\"internal_name\\\": \\\"zones_prod:Alc_Distritos\\\",\\n                    \\\"name\\\": \\\"Distritos\\\",\\n                    \\\"description\\\": \\\"Distritos\\\",\\n                    \\\"preset\\\": false,\\n                    \\\"public\\\": true,\\n                    \\\"tags\\\": [],\\n                    \\\"token\\\": \\\"489780ae-39e0-40bf-93e3-57565431454a\\\",\\n                    \\\"type\\\": \\\"ADMINISTRATIVE\\\"\\n                }\\n            ],\\n            \\\"extent\\\": [\\n                -3.70038574,\\n                40.50117283,\\n                -3.55027416,\\n                40.58886137\\n            ],\\n            \\\"guided_module\\\": false,\\n            \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\\\",\\n            \\\"id\\\": \\\"5c9b55579650e67d42985e80\\\",\\n            \\\"location_additional_data\\\": {},\\n            \\\"name\\\": \\\"es.madrid\\\",\\n            \\\"type\\\": \\\"city\\\",\\n            \\\"visible_name\\\": \\\"madrid\\\",\\n            \\\"is_main\\\": false\\n        },\\n        \\\"address_string\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n        \\\"lat\\\": 40.518565156005,\\n        \\\"long\\\": -3.6294673401779,\\n        \\\"service_request_id\\\": \\\"ALC43677\\\",\\n        \\\"status_node\\\": {\\n            \\\"typology_node_id\\\": \\\"5850dca2e22c6d9f51b00c59\\\",\\n            \\\"visible_name\\\": \\\"Nuevo\\\",\\n            \\\"id\\\": \\\"5850dd1ee22c6d9f51b0157b\\\",\\n            \\\"order\\\": 1,\\n            \\\"planned\\\": false\\n        },\\n        \\\"supporting\\\": false,\\n        \\\"tags\\\": [],\\n        \\\"token\\\": \\\"67c8468d2c6336655f0044f7\\\",\\n        \\\"worknotes_count\\\": 1\\n    }\"\n                                },\n                                {\n                                    \"id\": \"686205c9-ae59-4141-be2b-3648a0d4a5de\",\n                                    \"name\": \"Search Request By Status Name\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"status\\\": [\\\"Nuevo\\\"]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests-list\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests-list\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"service_id\\\": \\\"5620ed7e6aa918b1008b456e\\\",\\n        \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png\\\",\\n        \\\"service_name\\\": \\\"Cableado aéreo de alumbrado público\\\",\\n        \\\"requested_datetime\\\": \\\"2025-03-05T12:41:48+00:00\\\",\\n        \\\"reiterations_count\\\": 0,\\n        \\\"complaints_count\\\": 0,\\n        \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n        \\\"status_node_type\\\": \\\"initial_node\\\",\\n        \\\"typology\\\": {\\n            \\\"id\\\": \\\"5850dca2e22c6d9f51b00c0f\\\",\\n            \\\"color\\\": \\\"#ebc113\\\",\\n            \\\"description_legend\\\": \\\"Ej: farola fundida\\\",\\n            \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png\\\",\\n            \\\"location_type\\\": \\\"geolocation\\\",\\n            \\\"order\\\": 1,\\n            \\\"public\\\": true,\\n            \\\"typology_description\\\": \\\"Tengo un problema con un elemento en la calle\\\",\\n            \\\"visible_name\\\": \\\"Aviso\\\",\\n            \\\"with_authorized_users\\\": false,\\n            \\\"with_description\\\": true,\\n            \\\"with_files\\\": true,\\n            \\\"with_geolocation_data\\\": true,\\n            \\\"with_medias\\\": true,\\n            \\\"with_temporality_data\\\": true\\n        },\\n        \\\"public_visibility\\\": true,\\n        \\\"address\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n        \\\"comments_count\\\": 2,\\n        \\\"complaining\\\": false,\\n        \\\"current_node_estimated_final_datetime\\\": \\\"2025-03-08T12:40:22+00:00\\\",\\n        \\\"current_node_estimated_start_datetime\\\": \\\"2025-03-05T12:40:22+00:00\\\",\\n        \\\"description\\\": \\\"Prueba\\\",\\n        \\\"estimated_final_datetime\\\": \\\"2025-03-18T12:40:22+00:00\\\",\\n        \\\"estimated_start_datetime\\\": \\\"2025-03-05T12:40:22+00:00\\\",\\n        \\\"evaluation\\\": 0,\\n        \\\"jurisdiction_element\\\": {\\n            \\\"map_layers\\\": [\\n                {\\n                    \\\"backend\\\": \\\"OWS\\\",\\n                    \\\"endpoint\\\": \\\"https://gis-pre.mejoratuciudad.org/geoserver\\\",\\n                    \\\"id\\\": \\\"5d9ee7bcde2efef4018b4569\\\",\\n                    \\\"is_default\\\": false,\\n                    \\\"color\\\": \\\"#000000\\\",\\n                    \\\"internal_name\\\": \\\"zones_prod:Alc_Distritos\\\",\\n                    \\\"name\\\": \\\"Distritos\\\",\\n                    \\\"description\\\": \\\"Distritos\\\",\\n                    \\\"preset\\\": false,\\n                    \\\"public\\\": true,\\n                    \\\"tags\\\": [],\\n                    \\\"token\\\": \\\"489780ae-39e0-40bf-93e3-57565431454a\\\",\\n                    \\\"type\\\": \\\"ADMINISTRATIVE\\\"\\n                }\\n            ],\\n            \\\"extent\\\": [\\n                -3.70038574,\\n                40.50117283,\\n                -3.55027416,\\n                40.58886137\\n            ],\\n            \\\"guided_module\\\": false,\\n            \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png\\\",\\n            \\\"id\\\": \\\"5c9b55579650e67d42985e80\\\",\\n            \\\"location_additional_data\\\": {},\\n            \\\"name\\\": \\\"es.madrid\\\",\\n            \\\"type\\\": \\\"city\\\",\\n            \\\"visible_name\\\": \\\"madrid\\\",\\n            \\\"is_main\\\": false\\n        },\\n        \\\"address_string\\\": \\\"Calle Alcala, 200 A, Salamanca, Fuente Del Berro\\\",\\n        \\\"lat\\\": 40.518565156005,\\n        \\\"long\\\": -3.6294673401779,\\n        \\\"service_request_id\\\": \\\"ALC43677\\\",\\n        \\\"status_node\\\": {\\n            \\\"typology_node_id\\\": \\\"5850dca2e22c6d9f51b00c59\\\",\\n            \\\"visible_name\\\": \\\"Nuevo\\\",\\n            \\\"id\\\": \\\"5850dd1ee22c6d9f51b0157b\\\",\\n            \\\"order\\\": 1,\\n            \\\"planned\\\": false\\n        },\\n        \\\"supporting\\\": false,\\n        \\\"tags\\\": [],\\n        \\\"token\\\": \\\"67c8468d2c6336655f0044f7\\\",\\n        \\\"worknotes_count\\\": 1\\n    }\"\n                                },\n                                {\n                                    \"id\": \"64ec70b9-887f-4211-8392-3d1ab12ff3e1\",\n                                    \"name\": \"Search Request By Jurisdiction Element Name\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_element_ids\\\": [\\\"es.madrid\\\"]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests-list\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests-list\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"b34c8574-669c-4bf9-9192-cc6846945eb6\",\n                                    \"name\": \"Search Request By Typology Name\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"typologies\\\": [\\\"Reporte\\\", \\\"Aviso\\\"]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests-list\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests-list\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"51cfa1e5-c2dd-4e14-9f0d-91ce6f57698e\",\n                                    \"name\": \"Error Lat or Long Was Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_element_ids\\\": [\\\"es.madrid\\\"],\\n    \\\"service_ids\\\": [\\\"Arquetas de alumbrado\\\", \\\"Cableado aéreo de alumbrado público\\\"],\\n    \\\"status\\\": [\\\"Nuevo\\\"],\\n    \\\"typologies\\\": [\\\"Reporte\\\", \\\"Aviso\\\"]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests-list\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests-list\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"message\\\": \\\"lat or long was not found\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Support Request\",\n                            \"id\": \"f0b05da3-4c36-4c28-903f-022b7a4d2cf0\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests_supports\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests_supports\"\n                                    ]\n                                },\n                                \"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.\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| jurisdiction_id | String | \\\\[required\\\\]. Identificador de la jurisdicción a la que pertenece. |\\n| service_request_id | String | \\\\[required\\\\] Identificador del aviso al que se dará aṕoyo. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"1270e859-6ab3-4d65-9c75-1b5f9d9ff280\",\n                                    \"name\": \"Support Request OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/public-api/requests_supports\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"requests_supports\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"70cb0bec-dffd-4564-81ac-c83f5dd3b530\",\n                                    \"name\": \"Support Request without service_request_id\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/public-api/requests_supports\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"requests_supports\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"service_request_id was not provided\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"005a3506-4642-4ac9-b9df-23987c4392a0\",\n                                    \"name\": \"Support Request already\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_supports\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_supports\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Already supported request\\\"\\n  }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Complaint Request\",\n                            \"id\": \"bbfc89cb-b97e-4309-a030-c673822f0c0d\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests_complaints\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests_complaints\"\n                                    ]\n                                },\n                                \"description\": \"Este endpoint permite instaurar quejas por parte del usuario hacía un aviso (ticket) específico.\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| jurisdiction_id | String | \\\\[required\\\\]. Identificador de la jurisdicción a la que pertenece. |\\n| service_request_id | String | \\\\[required\\\\] Identificador del aviso al que se le asignará la queja. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"35e6d454-66aa-4c97-9dee-4f5e0f9b3b54\",\n                                    \"name\": \"Complaint Request OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/public-api/requests_complaints\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"requests_complaints\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"deleted\\\": false,\\n  \\\"jurisdiction_name\\\": \\\"Madrid\\\",\\n  \\\"service_id\\\": \\\"69332a4331a53edef30755e8\\\",\\n  \\\"service_code\\\": \\\"1\\\",\\n  \\\"service_name\\\": \\\"Limpieza y Residuos\\\",\\n  \\\"created_date\\\": \\\"27/11/2025\\\",\\n  \\\"requested_datetime\\\": \\\"2025-11-27T18:54:19+00:00\\\",\\n  \\\"created_time\\\": \\\"19:54\\\",\\n  \\\"supporting_count\\\": 0,\\n  \\\"following_count\\\": 0,\\n  \\\"repeated\\\": false,\\n  \\\"evaluations_count\\\": 0,\\n  \\\"address\\\": \\\"Dirección de prueba48\\\",\\n  \\\"updated_datetime\\\": \\\"2025-12-05T18:54:43+00:00\\\",\\n  \\\"evaluations_avg\\\": -1,\\n  \\\"reiterations_count\\\": 0,\\n  \\\"complaints_count\\\": 0,\\n  \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n  \\\"status_node_type\\\": \\\"initial_node\\\",\\n  \\\"typology\\\": {\\n    \\\"id\\\": \\\"69332a3a31a53edef30755b1\\\",\\n    \\\"color\\\": \\\"#337ab7\\\",\\n    \\\"icon\\\": \\\"https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png\\\",\\n    \\\"name\\\": \\\"avisos\\\",\\n    \\\"visible_name\\\": \\\"Avisos\\\"\\n  },\\n  \\\"accepted\\\": false,\\n  \\\"comments_count\\\": 0,\\n  \\\"complaining\\\": false,\\n  \\\"current_node_estimated_final_datetime\\\": \\\"2025-12-05T19:54:19+00:00\\\",\\n  \\\"current_node_estimated_start_datetime\\\": \\\"2025-12-05T18:54:19+00:00\\\",\\n  \\\"description\\\": \\\"0 - 0 - Madrid - Limpieza y Residuos\\\",\\n  \\\"estimated_final_datetime\\\": \\\"2025-12-05T19:54:19+00:00\\\",\\n  \\\"estimated_start_datetime\\\": \\\"2025-12-05T18:54:19+00:00\\\",\\n  \\\"evaluation\\\": 0,\\n  \\\"following\\\": false,\\n  \\\"address_string\\\": \\\"Dirección de prueba48\\\",\\n  \\\"lat\\\": 40.371,\\n  \\\"long\\\": -3.643,\\n  \\\"priority\\\": {\\n    \\\"icon\\\": \\\"https://mtc.vdeveloper.lan/uploads/local/priority_icons/5bab796235896.png\\\"\\n  },\\n  \\\"public\\\": true,\\n  \\\"seen\\\": false,\\n  \\\"service_request_id\\\": \\\"MAD1001\\\",\\n  \\\"status_node\\\": {\\n    \\\"name\\\": \\\"nuevo\\\",\\n    \\\"color\\\": \\\"#7da038\\\",\\n    \\\"typology_node_id\\\": \\\"69332a3a31a53edef30755b2\\\",\\n    \\\"visible_name\\\": \\\"Nuevo\\\",\\n    \\\"id\\\": \\\"69332a4331a53edef30755e1\\\",\\n    \\\"manual_actions\\\": [\\n      \\\"assign\\\",\\n      \\\"reassign\\\",\\n      \\\"auto_assign\\\",\\n      \\\"comment\\\",\\n      \\\"change_status\\\",\\n      \\\"mark_as_duplicated\\\",\\n      \\\"reiterate\\\",\\n      \\\"complaint\\\",\\n      \\\"generate_work_order\\\",\\n      \\\"edit\\\",\\n      \\\"pause_resume\\\",\\n      \\\"evaluate\\\"\\n    ],\\n    \\\"medias_config\\\": {\\n      \\\"arrival\\\": {\\n        \\\"comment\\\": {\\n          \\\"image\\\": false\\n        },\\n        \\\"note_internal\\\": {\\n          \\\"image\\\": false\\n        }\\n      },\\n      \\\"exit\\\": {\\n        \\\"comment\\\": {\\n          \\\"image\\\": false\\n        },\\n        \\\"note_internal\\\": {\\n          \\\"image\\\": false\\n        }\\n      }\\n    },\\n    \\\"order\\\": 1,\\n    \\\"planned\\\": false,\\n    \\\"status_data_config\\\": {\\n      \\\"answer\\\": false,\\n      \\\"cancellation_reason\\\": false\\n    },\\n    \\\"status_options_config\\\": {},\\n    \\\"worklog_configuration\\\": {}\\n  },\\n  \\\"supporting\\\": false,\\n  \\\"token\\\": \\\"69332a5b31a53edef30756f8\\\",\\n  \\\"user\\\": {\\n    \\\"nickname\\\": \\\"hely.suarez\\\",\\n    \\\"id\\\": \\\"69332a3a31a53edef30755ab\\\"\\n  },\\n  \\\"media_url\\\": \\\"https://mtc.vdeveloper.lan/uploads/local/open010/69332a5b1b13b565139824.jpg\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"f24239e2-6afa-434a-906d-02f1166ef770\",\n                                    \"name\": \"Complaint Request without user\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_complaints\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_complaints\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Internal Server Error\",\n                                    \"code\": 500,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 500,\\n    \\\"description\\\": \\\"Call to a member function getEmail() on null\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"36840db9-1b0a-43b6-b383-8df9698985a5\",\n                                    \"name\": \"Complaint Request without jurisdictionId\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_complaints\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_complaints\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Internal Server Error\",\n                                    \"code\": 500,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 500,\\n    \\\"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\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"8e6ebb35-c4a3-4570-ac82-2bf30e38ca3e\",\n                                    \"name\": \"Complaint Request without service_request_id\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_complaints\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_complaints\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"service_request_id was not provided\\\"\\n  }\\n]\"\n                                },\n                                {\n                                    \"id\": \"623ce224-655b-4816-b750-135190b83c12\",\n                                    \"name\": \"Complaint Request with existent complaint\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"service_request_id\\\": \\\"ALC12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_complaints\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_complaints\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n  {\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Already complainted request\\\"\\n  }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Requests follows\",\n                            \"id\": \"72bee7b4-42ef-484d-8cda-a1536caa0a62\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [\n                                    {\n                                        \"key\": \"Authorization\",\n                                        \"value\": \"Bearer YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg\"\n                                    },\n                                    {\n                                        \"key\": \"Cookie\",\n                                        \"value\": \"lunetics_locale=es\"\n                                    }\n                                ],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests_follows?jurisdiction_id=org.alcobendas&service_request_id=ALC44145&email_notification=true&push_notification=true&sms_notification=true\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests_follows\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_id\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"description\": \"String (required) Identificador de la jurisdicción a la que pertenece la solicitud\"\n                                        },\n                                        {\n                                            \"key\": \"service_request_id\",\n                                            \"value\": \"ALC44145\",\n                                            \"description\": \"String (required) Identificador de la solicitud que se desea seguir\"\n                                        },\n                                        {\n                                            \"key\": \"email_notification\",\n                                            \"value\": \"true\",\n                                            \"description\": \"bool (opcional)  Activar notificaciones por email (default: false)\",\n                                            \"type\": \"text\"\n                                        },\n                                        {\n                                            \"key\": \"push_notification\",\n                                            \"value\": \"true\",\n                                            \"description\": \"bool (opcional) Activar notificaciones push (default: false) \",\n                                            \"type\": \"text\"\n                                        },\n                                        {\n                                            \"key\": \"sms_notification\",\n                                            \"value\": \"true\",\n                                            \"description\": \"bool (opcional) Activar notificaciones SMS (default: false)\",\n                                            \"type\": \"text\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Description**\\n\\nRegistra 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"40433374-3198-4690-9428-a61e5cccbbe1\",\n                                    \"name\": \"Response OK Requests follows\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_follows?jurisdiction_id=org.alcobendas&service_request_id=ALC44145\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_follows\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\",\n                                                    \"uuid\": \"488f2af4-9165-4267-abd3-0ce2b1252c85\"\n                                                },\n                                                {\n                                                    \"key\": \"service_request_id\",\n                                                    \"value\": \"ALC44145\",\n                                                    \"uuid\": \"92399b5c-3917-4f4f-97e9-afd91810338e\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"57883655-c9e2-40aa-bbd7-3a54a655006a\",\n                                    \"name\": \"Requests follows\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_follows.json\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_follows.json\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Internal Server Error\",\n                                    \"code\": 500,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 500,\\n        \\\"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\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"192beb5e-50b1-4da5-939a-f98ebf8895db\",\n                                    \"name\": \"Not Service Request ID Requests follows\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_follows?jurisdiction_id=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_follows\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"service_request_id was not provided\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"2ff28b50-776f-4ba5-b95d-ed9c12915c44\",\n                    \"description\": \" \"\n                },\n                {\n                    \"name\": \"Request Evaluation\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get Request Evaluations\",\n                            \"id\": \"8b8a6c2f-997b-46cb-bb3b-e96b869b5135\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests_evaluations/{{request_token}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests_evaluations\",\n                                        \"{{request_token}}\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| request_token | String | ID de la request sobre la cual se desea consultar. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"de9e442a-5872-46d5-8722-8fde1db6f25d\",\n                                    \"name\": \"Get Request Evaluations OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_evaluations/{{request_token}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_evaluations\",\n                                                \"{{request_token}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"evaluation\\\": 3,\\n        \\\"id\\\": \\\"6930a3be811b8ea85f061fc7\\\",\\n        \\\"user\\\": {\\n            \\\"nickname\\\": \\\"user_16806e2ff266a479e61f\\\",\\n            \\\"id\\\": \\\"672a1a9a12c5ab351b07c644\\\"\\n        }\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Post Request Evaluations\",\n                            \"id\": \"069f6dc7-13ac-4c08-b709-20cc41b39891\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"token\\\": \\\"685f09d1f5d925be3d0d5af7\\\",\\n    \\\"evaluation\\\": 3\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests_evaluations\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests_evaluations\"\n                                    ]\n                                },\n                                \"description\": \"**Body**\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| evaluation | Int | \\\\[required\\\\] Valor de la evaluación asignada a la solicitud. |\\n| token | String | \\\\[required\\\\] Token único que identifica la solicitud (request) a evaluar. |\\n\\n**Description**\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"cf683850-363c-4777-9493-6a22d6ec517a\",\n                                    \"name\": \"Post Request Evaluations OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"token\\\": \\\"685f09d1f5d925be3d0d5af7\\\",\\n    \\\"evaluation\\\": 3\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_evaluations\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_evaluations\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"evaluation\\\": \\\"3\\\",\\n    \\\"id\\\": \\\"694465cec869708db10c5cf3\\\",\\n    \\\"user\\\": {\\n        \\\"hasPassword\\\": true,\\n        \\\"nickname\\\": \\\"user_ea05d696b1e00926d803\\\",\\n        \\\"avatar\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/avatars/686dded53b0a9.jpg\\\",\\n        \\\"channels\\\": [\\n            {\\n                \\\"external\\\": true,\\n                \\\"id\\\": \\\"673c50e7f9de27ecb80e5cc2\\\",\\n                \\\"name\\\": \\\"Test\\\"\\n            }\\n        ],\\n        \\\"id\\\": \\\"685efd3de403e56420059cb8\\\",\\n        \\\"notification_channels\\\": [\\n            {\\n                \\\"external\\\": true,\\n                \\\"id\\\": \\\"673c50e7f9de27ecb80e5cc2\\\",\\n                \\\"name\\\": \\\"Test\\\"\\n            }\\n        ],\\n        \\\"last_geofences\\\": [],\\n        \\\"jurisdiction_element_channels\\\": []\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"4d11f530-0990-4ea9-bb6f-6d3314927f58\",\n                                    \"name\": \"Post Request Evaluations Request Evaluated\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"token\\\": \\\"685f09d1f5d925be3d0d5af7\\\",\\n    \\\"evaluation\\\": 3\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_evaluations\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_evaluations\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 403,\\n        \\\"description\\\": \\\"Request has already been evaluated\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"3516c74c-adb3-4e5e-8cc2-94ba77a5f20c\",\n                                    \"name\": \"Post Request Evaluations Not Provided\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"token\\\": \\\"685f09d1f5d925be3d0d5af7\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_evaluations\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_evaluations\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 403,\\n        \\\"description\\\": \\\"Request has already been evaluated\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"3e8fd0f0-6d7b-4eb7-a0c0-0d0c8ce48ba1\",\n                                    \"name\": \"Post Request Evaluations Token Not Provided\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"evaluation\\\": 3\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_evaluations\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_evaluations\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"token was not provided\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"e65a6e5f-1392-471b-8f46-42113670184f\"\n                },\n                {\n                    \"name\": \"Request File\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get Request Files\",\n                            \"id\": \"932ebd80-ece8-43b0-a434-38a10b16e491\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/files\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"{{request_token}}\",\n                                        \"files\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| request_token | String | ID de la request sobre la cual se desea consultar los archivos asociados. (Ej. 690368126e14fe090900d728) |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"0dc45125-f393-48ab-aa8a-7a756d532eb5\",\n                                    \"name\": \"Response OK Get Request Files\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"created_at\\\": \\\"2023-11-24T13:35:16+00:00\\\",\\n    \\\"id\\\": \\\"6560a694fb3a56c096076992\\\",\\n    \\\"public\\\": false,\\n    \\\"type\\\": \\\"1\\\",\\n    \\\"url\\\": \\\"https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf\\\",\\n    \\\"description\\\": \\\"documento de prueba.pdf\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"32298c05-8c1b-42eb-a19a-e990621a9c8f\",\n                                    \"name\": \"Error Request Access Module Not Active\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"code\\\": 403,\\n  \\\"message\\\": \\\"REQUESTS_ACCESS_MODULE not active\\\"\\n}\\n\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Add Request File\",\n                            \"id\": \"d6e1edec-43c9-4ad7-98d0-38295ab87d35\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"formdata\",\n                                    \"formdata\": [\n                                        {\n                                            \"key\": \"files[0]\",\n                                            \"type\": \"file\",\n                                            \"description\": \"Array. [optional].  Archivos adjuntos a la nota.\",\n                                            \"src\": \"/home/radmas/Downloads/CURSO Y MANUAL RGPD.pdf\"\n                                        },\n                                        {\n                                            \"key\": \"descriptions[0]\",\n                                            \"value\": \"CURSO Y MANUAL RGPD.pdf\",\n                                            \"type\": \"text\",\n                                            \"description\": \"String. [optional] (CURSO Y MANUAL RGPD.pdf). Texto que describe el archivo.\"\n                                        }\n                                    ]\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/files\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"{{request_token}}\",\n                                        \"files\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| request_token | String | Es el ID que se utiliza para identificar una solicitud específica en el sistema. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"b6a2e224-590c-460d-86b9-ce834259bf94\",\n                                    \"name\": \"Response OK Add Request File\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"files[0]\",\n                                                    \"type\": \"file\",\n                                                    \"src\": [\n                                                        \"/home/radmas/Downloads/CURSO Y MANUAL RGPD.pdf\"\n                                                    ]\n                                                },\n                                                {\n                                                    \"key\": \"descriptions[0]\",\n                                                    \"value\": \"CURSO Y MANUAL RGPD.pdf\",\n                                                    \"type\": \"text\"\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"created_at\\\": \\\"2024-11-13T15:30:54+00:00\\\",\\n    \\\"id\\\": \\\"6734c62ebe78a901cb04b655\\\",\\n    \\\"public\\\": false,\\n    \\\"type\\\": \\\"1\\\",\\n    \\\"url\\\": \\\"https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf\\\",\\n    \\\"description\\\": \\\"CURSO Y MANUAL RGPD.pdf\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"32434d73-2dcd-4967-8091-d0e291398d5e\",\n                                    \"name\": \"Add Request File Format Not Allowed\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"files[0]\",\n                                                    \"type\": \"file\",\n                                                    \"description\": \"Array. [optional].  Archivos adjuntos a la nota.\",\n                                                    \"src\": [\n                                                        \"/home/radmas/Pictures/Selection_571.png\"\n                                                    ]\n                                                },\n                                                {\n                                                    \"key\": \"descriptions[0]\",\n                                                    \"value\": \"CURSO Y MANUAL RGPD.pdf\",\n                                                    \"type\": \"text\",\n                                                    \"description\": \"String. [optional] (CURSO Y MANUAL RGPD.pdf). Texto que describe el archivo.\"\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 403,\\n    \\\"description\\\": \\\"File format not allowed\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"a55afc9b-4d5b-49b0-9ce5-e8d6ccde514a\",\n                                    \"name\": \"Add Request File invalid Content\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"files[0]\",\n                                                    \"type\": \"file\",\n                                                    \"description\": \"Array. [optional].  Archivos adjuntos a la nota.\",\n                                                    \"src\": [\n                                                        \"/home/radmas/Pictures/Selection_571.png\"\n                                                    ]\n                                                },\n                                                {\n                                                    \"key\": \"descriptions[0]\",\n                                                    \"value\": \"CURSO Y MANUAL RGPD.pdf\",\n                                                    \"type\": \"text\",\n                                                    \"description\": \"String. [optional] (CURSO Y MANUAL RGPD.pdf). Texto que describe el archivo.\"\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"An error ocurred while uploading the files\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Edit Request File\",\n                            \"id\": \"268bae4c-bcf8-4721-810f-ae35721fb5d2\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"PATCH\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"public\\\": true\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/files/{{file_id}}/edit\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"{{request_token}}\",\n                                        \"files\",\n                                        \"{{file_id}}\",\n                                        \"edit\"\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"fb6ea050-3f60-4a0f-a2fd-cdfcaa584038\",\n                                    \"name\": \"Response OK Edit Request File\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"public\\\": true\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files/{{file_id}}/edit\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\",\n                                                \"{{file_id}}\",\n                                                \"edit\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"created_at\\\": \\\"2024-11-13T16:00:22+00:00\\\",\\n    \\\"id\\\": \\\"6734cd167933b741750f8794\\\",\\n    \\\"public\\\": true,\\n    \\\"type\\\": \\\"1\\\",\\n    \\\"url\\\": \\\"https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf\\\",\\n    \\\"description\\\": \\\"CURSO Y MANUAL RGPD.pdf\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"9cf29384-e67b-4c20-b4fd-3039507ce5fd\",\n                                    \"name\": \"Edit Request File Not RequestFile Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"public\\\": true\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files/{{file_id}}/edit\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\",\n                                                \"{{file_id}}\",\n                                                \"edit\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\":404,\\n    \\\"description\\\":\\\"File not found\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"7d253a9d-261d-4f56-8388-3ea01bae3e56\",\n                                    \"name\": \"Edit Request Invalid File Content\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"file\",\n                                                    \"type\": \"file\",\n                                                    \"src\": [\n                                                        \"/home/radmas/Pictures/Selection_571.png\"\n                                                    ]\n                                                }\n                                            ],\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files/{{file_id}}/edit\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\",\n                                                \"{{file_id}}\",\n                                                \"edit\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\":403,\\n    \\\"description\\\":\\\"File format not allowed\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"f8060812-85ba-4ece-87b9-ec93d6cfb6d3\",\n                                    \"name\": \"Edit Request File Edit File\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"file\",\n                                                    \"type\": \"file\",\n                                                    \"src\": [\n                                                        \"/home/radmas/Pictures/Selection_571.png\"\n                                                    ]\n                                                }\n                                            ],\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files/{{file_id}}/edit\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\",\n                                                \"{{file_id}}\",\n                                                \"edit\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\":400,\\n    \\\"description\\\":\\\"Error to edit RequestFile\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Delete Request File\",\n                            \"id\": \"015aa61a-770d-4eed-ad68-59f0c5a83095\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"DELETE\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"formdata\",\n                                    \"formdata\": []\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/files/{{file_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"{{request_token}}\",\n                                        \"files\",\n                                        \"{{file_id}}\"\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"25b76e9b-c44d-4a26-a872-d80837159316\",\n                                    \"name\": \"Response OK Delete Request File\",\n                                    \"originalRequest\": {\n                                        \"method\": \"DELETE\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files/{{file_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\",\n                                                \"{{file_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"No Content\",\n                                    \"code\": 204,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"c1b85861-f84d-44cc-90b7-24d3860c3b31\",\n                                    \"name\": \"Delete Request File Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"DELETE\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"file\",\n                                                    \"value\": \"\",\n                                                    \"type\": \"text\"\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files/{{file_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\",\n                                                \"{{file_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\":404,\\n    \\\"description\\\":\\\"File not found\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"28adde83-641e-4869-96ff-c586186a890c\",\n                                    \"name\": \"Delete Request File Media Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"DELETE\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"file\",\n                                                    \"value\": \"\",\n                                                    \"type\": \"text\"\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files/{{file_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\",\n                                                \"{{file_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\":404,\\n    \\\"description\\\":\\\"File not found\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"c5581171-a61f-41f8-9e49-8ac2613169bd\",\n                                    \"name\": \"Delete Request File Fail\",\n                                    \"originalRequest\": {\n                                        \"method\": \"DELETE\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"key\": \"file\",\n                                                    \"type\": \"file\",\n                                                    \"src\": [\n                                                        \"/home/radmas/Downloads/message(12).txt\"\n                                                    ]\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/files/{{file_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_id}}\",\n                                                \"files\",\n                                                \"{{file_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\":400,\\n    \\\"description\\\":\\\"File could not be deleted\\\"\\n}\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"297f970f-de9f-471a-a116-1793fb5d6383\",\n                    \"description\": \" \"\n                },\n                {\n                    \"name\": \"Request Reiteration\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get Request Reiterations\",\n                            \"id\": \"c4984959-bbe7-47f0-aa87-79a2f0c414f6\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/reiterations\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"{{request_token}}\",\n                                        \"reiterations\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| request_token | String | ID de la request sobre la cual se desea consultar. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"8aff77a9-d8c1-4f8c-b677-afa2013c4990\",\n                                    \"name\": \"Get Request Reiterations OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/{{request_token}}/reiterations\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"{{request_token}}\",\n                                                \"reiterations\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"datetime\\\": \\\"2025-11-30T17:52:26+00:00\\\",\\n        \\\"id\\\": \\\"692c845a9d906168ea03cd4b\\\",\\n        \\\"source\\\": {\\n            \\\"alias\\\": \\\"Workapp (Android)\\\",\\n            \\\"id\\\": \\\"5850de88e22c6d9f51b17718\\\"\\n        }\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Request Reiteration\",\n                            \"id\": \"4adda1ec-28ec-4a95-aed1-4988f57c2ac7\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [\n                                    {\n                                        \"key\": \"User-Agent\",\n                                        \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0\"\n                                    },\n                                    {\n                                        \"key\": \"Accept\",\n                                        \"value\": \"application/json\"\n                                    },\n                                    {\n                                        \"key\": \"Accept-Language\",\n                                        \"value\": \"es\"\n                                    },\n                                    {\n                                        \"key\": \"Accept-Encoding\",\n                                        \"value\": \"gzip, deflate, br, zstd\"\n                                    },\n                                    {\n                                        \"key\": \"Content-Type\",\n                                        \"value\": \"application/json\"\n                                    },\n                                    {\n                                        \"key\": \"X-Client-Id\",\n                                        \"value\": \"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\"\n                                    },\n                                    {\n                                        \"key\": \"Authorization\",\n                                        \"value\": \"Bearer Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA\"\n                                    },\n                                    {\n                                        \"key\": \"Origin\",\n                                        \"value\": \"https://mapa-canary.mejoratuciudad.org\"\n                                    },\n                                    {\n                                        \"key\": \"Connection\",\n                                        \"value\": \"keep-alive\"\n                                    },\n                                    {\n                                        \"key\": \"Referer\",\n                                        \"value\": \"https://mapa-canary.mejoratuciudad.org/\"\n                                    },\n                                    {\n                                        \"key\": \"Sec-Fetch-Dest\",\n                                        \"value\": \"empty\"\n                                    },\n                                    {\n                                        \"key\": \"Sec-Fetch-Mode\",\n                                        \"value\": \"cors\"\n                                    },\n                                    {\n                                        \"key\": \"Sec-Fetch-Site\",\n                                        \"value\": \"same-site\"\n                                    },\n                                    {\n                                        \"key\": \"Priority\",\n                                        \"value\": \"u=0\"\n                                    },\n                                    {\n                                        \"key\": \"TE\",\n                                        \"value\": \"trailers\"\n                                    }\n                                ],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"description\\\": \\\"Muy buen aviso\\\",\\n    \\\"email_notification\\\": \\\"true\\\",\\n    \\\"follow_request\\\": \\\"true\\\",\\n    \\\"push_notification\\\": \\\"true\\\",\\n    \\\"sms_notification\\\": \\\"true\\\",\\n    \\\"source\\\": \\\"5850de88e22c6d9f51b17721\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/request/{{request_id}}/reiteration\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"request\",\n                                        \"{{request_id}}\",\n                                        \"reiteration\"\n                                    ]\n                                },\n                                \"description\": \"| Campo | Tipo |  |\\n| --- | --- | --- |\\n| request_id | String | \\\\[required\\\\] ID de la solicitud (request) a la cual se desea realizar la reiteración |\\n\\nEste 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.\\n\\n| Campo | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| description | String | \\\\[required\\\\] Mensaje descriptivo sobre el aviso. |\\n| email_notification | Bool | \\\\[required\\\\] Indica si se enviará una notificación por correo electrónico. |\\n| follow_request | Bool | \\\\[required\\\\] Indica si se debe realizar una solicitud de seguimiento. |\\n| push_notification | Bool | \\\\[required\\\\] Indica si se enviará una notificación push al usuario. |\\n| sms_notification | Bool | \\\\[required\\\\] Indica si se enviará una notificación por SMS. |\\n| source | String | \\\\[required\\\\] Identificador de la fuente (dispositivo de origen) que apoya el aviso. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"0f20dda1-ae6c-49e0-92db-cc5cdf4ef9a3\",\n                                    \"name\": \"Request Reiteration OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"User-Agent\",\n                                                \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0\"\n                                            },\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Language\",\n                                                \"value\": \"es\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Encoding\",\n                                                \"value\": \"gzip, deflate, br, zstd\"\n                                            },\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"X-Client-Id\",\n                                                \"value\": \"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA\"\n                                            },\n                                            {\n                                                \"key\": \"Origin\",\n                                                \"value\": \"https://mapa-canary.mejoratuciudad.org\"\n                                            },\n                                            {\n                                                \"key\": \"Connection\",\n                                                \"value\": \"keep-alive\"\n                                            },\n                                            {\n                                                \"key\": \"Referer\",\n                                                \"value\": \"https://mapa-canary.mejoratuciudad.org/\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Dest\",\n                                                \"value\": \"empty\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Mode\",\n                                                \"value\": \"cors\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Site\",\n                                                \"value\": \"same-site\"\n                                            },\n                                            {\n                                                \"key\": \"Priority\",\n                                                \"value\": \"u=0\"\n                                            },\n                                            {\n                                                \"key\": \"TE\",\n                                                \"value\": \"trailers\"\n                                            }\n                                        ],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"description\\\": \\\"Muy buen aviso\\\",\\n    \\\"email_notification\\\": \\\"true\\\",\\n    \\\"follow_request\\\": \\\"true\\\",\\n    \\\"push_notification\\\": \\\"true\\\",\\n    \\\"sms_notification\\\": \\\"true\\\",\\n    \\\"source\\\": \\\"5850de88e22c6d9f51b17722\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/675854bccb214872520b3bfc/reiteration\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"675854bccb214872520b3bfc\",\n                                                \"reiteration\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"datetime\\\": \\\"2025-03-13T21:55:25+00:00\\\",\\n    \\\"description\\\": \\\"Muy buen aviso\\\",\\n    \\\"email\\\": \\\"witijah950@erapk.com\\\",\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"follow_request\\\": \\\"true\\\",\\n    \\\"id\\\": \\\"67d3544d4e10cee6cc011a3f\\\",\\n    \\\"last_name\\\": \\\"Perez\\\",\\n    \\\"phone\\\": \\\"5551234\\\",\\n    \\\"request\\\": {\\n        \\\"following_count\\\": 1,\\n        \\\"reiterations_count\\\": 1,\\n        \\\"complaints_count\\\": 0,\\n        \\\"token\\\": \\\"675854bccb214872520b3bfc\\\"\\n    },\\n    \\\"source\\\": {\\n        \\\"alias\\\": \\\"Canal Web\\\",\\n        \\\"id\\\": \\\"5850de88e22c6d9f51b17722\\\"\\n    },\\n    \\\"user\\\": {\\n        \\\"id\\\": \\\"67d2f56f887735a7be00f7bb\\\",\\n        \\\"nickname\\\": \\\"witijah950\\\"\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"910dbfe1-8871-4855-a9f9-96736313217f\",\n                                    \"name\": \"Request Reiteration Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"User-Agent\",\n                                                \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0\"\n                                            },\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Language\",\n                                                \"value\": \"es\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Encoding\",\n                                                \"value\": \"gzip, deflate, br, zstd\"\n                                            },\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"X-Client-Id\",\n                                                \"value\": \"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA\"\n                                            },\n                                            {\n                                                \"key\": \"Origin\",\n                                                \"value\": \"https://mapa-canary.mejoratuciudad.org\"\n                                            },\n                                            {\n                                                \"key\": \"Connection\",\n                                                \"value\": \"keep-alive\"\n                                            },\n                                            {\n                                                \"key\": \"Referer\",\n                                                \"value\": \"https://mapa-canary.mejoratuciudad.org/\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Dest\",\n                                                \"value\": \"empty\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Mode\",\n                                                \"value\": \"cors\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Site\",\n                                                \"value\": \"same-site\"\n                                            },\n                                            {\n                                                \"key\": \"Priority\",\n                                                \"value\": \"u=0\"\n                                            },\n                                            {\n                                                \"key\": \"TE\",\n                                                \"value\": \"trailers\"\n                                            }\n                                        ],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"description\\\": \\\"Muy buen aviso\\\",\\n    \\\"email_notification\\\": \\\"true\\\",\\n    \\\"follow_request\\\": \\\"true\\\",\\n    \\\"push_notification\\\": \\\"true\\\",\\n    \\\"sms_notification\\\": \\\"true\\\",\\n    \\\"source\\\": \\\"5850de88e22c6d9f51b17722\\\",\\n    \\\"extra_field\\\": \\\"example\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/675854bccb214872520b3bfc/reiteration\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"675854bccb214872520b3bfc\",\n                                                \"reiteration\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"ERROR: Este formulario no debería contener campos adicionales.\\\\n\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"f6b87a6a-cc38-4c1c-a3a2-72d939840ade\",\n                                    \"name\": \"Request Reiteration Without Permissions\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"User-Agent\",\n                                                \"value\": \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0\"\n                                            },\n                                            {\n                                                \"key\": \"Accept\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Language\",\n                                                \"value\": \"es\"\n                                            },\n                                            {\n                                                \"key\": \"Accept-Encoding\",\n                                                \"value\": \"gzip, deflate, br, zstd\"\n                                            },\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"value\": \"application/json\"\n                                            },\n                                            {\n                                                \"key\": \"X-Client-Id\",\n                                                \"value\": \"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\"\n                                            },\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA\"\n                                            },\n                                            {\n                                                \"key\": \"Origin\",\n                                                \"value\": \"https://mapa-canary.mejoratuciudad.org\"\n                                            },\n                                            {\n                                                \"key\": \"Connection\",\n                                                \"value\": \"keep-alive\"\n                                            },\n                                            {\n                                                \"key\": \"Referer\",\n                                                \"value\": \"https://mapa-canary.mejoratuciudad.org/\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Dest\",\n                                                \"value\": \"empty\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Mode\",\n                                                \"value\": \"cors\"\n                                            },\n                                            {\n                                                \"key\": \"Sec-Fetch-Site\",\n                                                \"value\": \"same-site\"\n                                            },\n                                            {\n                                                \"key\": \"Priority\",\n                                                \"value\": \"u=0\"\n                                            },\n                                            {\n                                                \"key\": \"TE\",\n                                                \"value\": \"trailers\"\n                                            }\n                                        ],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"description\\\": \\\"Muy buen aviso\\\",\\n    \\\"email_notification\\\": \\\"true\\\",\\n    \\\"follow_request\\\": \\\"true\\\",\\n    \\\"push_notification\\\": \\\"true\\\",\\n    \\\"sms_notification\\\": \\\"true\\\",\\n    \\\"source\\\": \\\"5850de88e22c6d9f51b17722\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/request/675854bccb214872520b3bfc/reiteration\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"request\",\n                                                \"675854bccb214872520b3bfc\",\n                                                \"reiteration\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 403,\\n        \\\"description\\\": \\\"REQUESTS_ACCESS_MODULE not active\\\"\\n    }\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"68d5acdd-0b30-4f0a-a625-bccc96bbacf8\"\n                }\n            ],\n            \"id\": \"cdabafc9-44b6-40cf-9688-f3356733a42a\",\n            \"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.\"\n        },\n        {\n            \"name\": \"RequestComment\",\n            \"item\": [\n                {\n                    \"name\": \"Comment\",\n                    \"item\": [\n                        {\n                            \"name\": \"Requests Comments\",\n                            \"id\": \"f832520f-e8c9-4925-bd60-88b205ac8672\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/requests_comments/{{request_token}}?jurisdiction_id=org.alcobendas\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"requests_comments\",\n                                        \"{{request_token}}\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_id\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"description\": \"String. [opcional]. Es el identificador de la jurisdicción que permitira filtrar las categorias por área geográfica.\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| request_token | String | ID de la request sobre la cual se desea consultar. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"f148c3de-9cd8-45a0-817e-160b6a5ba2df\",\n                                    \"name\": \"Requests Comments OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/requests_comments/{{request_token}}?jurisdiction_id=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"requests_comments\",\n                                                \"{{request_token}}\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"created_datetime\\\": \\\"2025-12-02T15:01:56+00:00\\\",\\n        \\\"comment_code\\\": \\\"692eff645f8583139f0a1ea1\\\",\\n        \\\"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!\\\",\\n        \\\"medias_urls\\\": []\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"a33b805d-e5a3-411c-a1ca-f53b31920121\"\n                }\n            ],\n            \"id\": \"149a530b-f88c-4413-b9cc-5fb7a115137f\"\n        },\n        {\n            \"name\": \"SearchEngine\",\n            \"item\": [\n                {\n                    \"name\": \"SearchEngine\",\n                    \"item\": [\n                        {\n                            \"name\": \"Config\",\n                            \"id\": \"5eccb239-6dcc-4e2f-8a78-17ae0ec9debc\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/search_engine/config\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"search_engine\",\n                                        \"config\"\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"19746c80-77ce-492f-a984-a825bab81510\",\n                                    \"name\": \"Config OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/search_engine/config\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"search_engine\",\n                                                \"config\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"available_types\\\": [\\n        \\\"backofficeUser\\\",\\n        \\\"release\\\",\\n        \\\"request\\\",\\n        \\\"service\\\",\\n        \\\"user\\\",\\n        \\\"predeterminedResponse\\\"\\n    ]\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Search\",\n                            \"id\": \"fe39471c-9301-4321-a565-ab1402d9c427\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/search_engine/search?jurisdictionIds[]=org.alcobendas&limit=10&own=false&page=1&q=prueba&types[]=request,service&typologyIds[]=67157912d6fb285be7042e43\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"search_engine\",\n                                        \"search\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdictionIds[]\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"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.\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"10\",\n                                            \"description\": \"Int [optional]. Resultados por página.\"\n                                        },\n                                        {\n                                            \"key\": \"own\",\n                                            \"value\": \"false\",\n                                            \"description\": \"Bool [optional]. Si va en true, filtra por usuario autenticado.\"\n                                        },\n                                        {\n                                            \"key\": \"page\",\n                                            \"value\": \"1\",\n                                            \"description\": \"Int [optional]. Página.\"\n                                        },\n                                        {\n                                            \"key\": \"q\",\n                                            \"value\": \"prueba\",\n                                            \"description\": \"String [optional]. Parámetro de búsqueda opcional utilizado para filtrar las rutas de POIs por una palabra clave o frase.\"\n                                        },\n                                        {\n                                            \"key\": \"types[]\",\n                                            \"value\": \"request,service\",\n                                            \"description\": \"String. [optional]. Especifica el tipo de configuracion personalizada de la consulta.\"\n                                        },\n                                        {\n                                            \"key\": \"typologyIds[]\",\n                                            \"value\": \"67157912d6fb285be7042e43\",\n                                            \"description\": \"String [optional]. Permite realizar búsquedas de avisos a partir de la tipologia a la que pertenezcan.\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"3b398978-7d9f-433d-9856-4c82c5d7f56f\",\n                                    \"name\": \"Search OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/search_engine/search?jurisdictionIds[]=org.alcobendas&limit=10&own=false&page=1&q=prueba&types[]=request,service&typologyIds[]=67157912d6fb285be7042e43\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"search_engine\",\n                                                \"search\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdictionIds[]\",\n                                                    \"value\": \"org.alcobendas\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"10\"\n                                                },\n                                                {\n                                                    \"key\": \"own\",\n                                                    \"value\": \"false\"\n                                                },\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\"\n                                                },\n                                                {\n                                                    \"key\": \"q\",\n                                                    \"value\": \"prueba\"\n                                                },\n                                                {\n                                                    \"key\": \"types[]\",\n                                                    \"value\": \"request,service\"\n                                                },\n                                                {\n                                                    \"key\": \"typologyIds[]\",\n                                                    \"value\": \"67157912d6fb285be7042e43\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"services\\\": [\\n        {\\n            \\\"service_id\\\": \\\"67157a0fedc96f822e06ce0d\\\",\\n            \\\"description\\\": \\\"Prueba\\\",\\n            \\\"jurisdiction\\\": {\\n                \\\"id\\\": \\\"561e04ed6aa918910c8b4592\\\",\\n                \\\"name\\\": \\\"Alcobendas\\\",\\n                \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\\\"\\n            },\\n            \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/67157ae8b5622248310935.png\\\",\\n            \\\"service_name\\\": \\\"Categoría A2\\\",\\n            \\\"typology\\\": {\\n                \\\"id\\\": \\\"67157912d6fb285be7042e43\\\",\\n                \\\"visible_name\\\": \\\"Tipología de pruebas\\\"\\n            }\\n        }\\n    ],\\n    \\\"requests\\\": [\\n        {\\n            \\\"description\\\": \\\"PRUEBA PAQUI\\\",\\n            \\\"service\\\": {\\n                \\\"service_id\\\": \\\"56fbc8296aa918ee008b4567\\\",\\n                \\\"description\\\": \\\"Esta categoría es solamente para hacer encargos del Departamento de Vías Públicas\\\",\\n                \\\"jurisdiction\\\": {\\n                    \\\"id\\\": \\\"561e04ed6aa918910c8b4592\\\",\\n                    \\\"name\\\": \\\"Alcobendas\\\",\\n                    \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\\\"\\n                },\\n                \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/5db2be2787fe3.png\\\",\\n                \\\"service_name\\\": \\\"Encargos a Seromal del Dpto. de Vías Públicas\\\",\\n                \\\"typology\\\": {\\n                    \\\"id\\\": \\\"5850dca2e22c6d9f51b00c0f\\\",\\n                    \\\"visible_name\\\": \\\"Aviso\\\",\\n                    \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/typology_icons/6729ec91b9764447503445.png\\\"\\n                }\\n            },\\n            \\\"service_request_id\\\": \\\"ALC1510\\\",\\n            \\\"token\\\": \\\"57d8f44c6aa918861b8b4c44\\\"\\n        }\\n    ],\\n    \\\"users\\\": [\\n        {\\n            \\\"full_name\\\": \\\"pruebatestloginradmas \\\",\\n            \\\"avatar\\\": \\\"https://lh3.googleusercontent.com/a/ACg8ocL1pSnwuE-30ycqboOla78olRl3nZJ2GThgmNRoVkZZjZtR3w=s96-c?sz=600\\\",\\n            \\\"email\\\": \\\"pruebatestloginradmas@gmail.com\\\",\\n            \\\"first_name\\\": \\\"pruebatestloginradmas\\\",\\n            \\\"id\\\": \\\"6745ed9ffaf87f5227001f83\\\",\\n            \\\"last_name\\\": \\\"\\\",\\n            \\\"username\\\": \\\"user_381cc6dedb41c804bdf1\\\"\\n        }\\n    ],\\n    \\\"predeterminedResponses\\\": [\\n        {\\n            \\\"enquiry\\\": {\\n                \\\"company\\\": {\\n                    \\\"name\\\": \\\"ALC_UPruebas01\\\"\\n                }\\n            },\\n            \\\"id\\\": \\\"66e60e7103db7073be0996e9\\\",\\n            \\\"body\\\": \\\"Prueba qA 01\\\",\\n            \\\"title\\\": \\\"Prueba de respuesta predefinida\\\"\\n        }\\n    ],\\n    \\\"backofficeUsers\\\": [\\n        {\\n            \\\"id\\\": \\\"66f31aab3c74bf2587090267\\\",\\n            \\\"full_name\\\": \\\"Pruebas Permisos\\\",\\n            \\\"first_name\\\": \\\"Pruebas\\\",\\n            \\\"last_name\\\": \\\"Permisos\\\",\\n            \\\"avatar\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png\\\"\\n        }\\n    ],\\n    \\\"releases\\\": [\\n        {\\n            \\\"company\\\": {\\n                \\\"avatar_url\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/company/68639e2b6a1c88.56054492.png\\\",\\n                \\\"name\\\": \\\"ALC_ADDA_OPS\\\"\\n            },\\n            \\\"description\\\": \\\"Prueba de comunicación\\\",\\n            \\\"id\\\": \\\"692ca2d59d25f20f8602793f\\\",\\n            \\\"name\\\": \\\"Comunicado de prueba III\\\"\\n        }\\n    ]\\n}\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"94f306f4-06d4-417c-b16a-f7233637d167\"\n                }\n            ],\n            \"id\": \"51909a0f-e75e-424e-a87d-d3acaa12834b\"\n        },\n        {\n            \"name\": \"Security\",\n            \"item\": [\n                {\n                    \"name\": \"Security\",\n                    \"item\": [\n                        {\n                            \"name\": \"Login Through External\",\n                            \"id\": \"297b364b-9e0e-413d-8303-3174895f1cda\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"facebook_token\\\": \\\"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\\\",\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"google_token\\\": \\\"ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"lasr_name\\\": \\\"Perez\\\",\\n    \\\"legal_terms_Accepted\\\": true,\\n    \\\"origin_device\\\": \\\"5850de88e22c6d9f51b17715\\\",\\n    \\\"password\\\": \\\"Radmas*2025\\\",\\n    \\\"register\\\": true,\\n    \\\"user_id\\\": \\\"530dcc3251bbe7f27a702dc6\\\",\\n    \\\"username\\\": \\\"pepito@example.com\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login/{{jurisdiction_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login\",\n                                        \"{{jurisdiction_id}}\"\n                                    ]\n                                },\n                                \"description\": \"| Campo | Tipo | **Descripcion** |\\n| --- | --- | --- |\\n| jurisdiction_id | String | \\\\[Required\\\\] jurisdiction_id de mongo de la jurisdiccion correspondiente. |\\n\\nEste 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.\\n\\n| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\n| 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. |\\n| first_name | String | \\\\[optional\\\\]. En caso de registro de User permite especificar el nombre que tendrá el mismo |\\n| 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 |\\n| jurisdiction_id | String | \\\\[optional\\\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\\n| last_name | String | \\\\[optional\\\\]. En caso de registro de User permite especificar el apellido que tendrá el mismo |\\n| 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 |\\n| origin_device | String | \\\\[optional\\\\]. Sirve para identificar el dispositivo desde el cual se está realizando la solicitud de autenticación |\\n| password | String | \\\\[required\\\\]. Se debe ingresar la contraseña concerniente al User deseado o en caso de registro, asignar una contraseña |\\n| register | Boolean | \\\\[required\\\\]. Permite identificar si el User está realizando login o un registro nuevo |\\n| user_id | String | \\\\[optional\\\\]. Permite ingresar el identificador del User para logins externos |\\n| username | String | \\\\[required\\\\]. Permite ingresar el email del User que desea realizar un login a la plataforma |\\n| 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 |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"3331c3fd-1197-43c1-b827-379cfa05dec3\",\n                                    \"name\": \"Login Through External Session\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"username\\\": \\\"pepito\\\",\\n    \\\"password\\\": \\\"mock_12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login/es.madrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login\",\n                                                \"es.madrid\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"1388ddcd-a7b9-4ac9-968e-37730826c5c2\",\n                                    \"name\": \"Login Through External User Register\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"lasr_name\\\": \\\"Perez\\\",\\n    \\\"legal_terms_Accepted\\\": true,\\n    \\\"password\\\": \\\"mock_12345!\\\",\\n    \\\"register\\\": true,\\n    \\\"username\\\": \\\"pepito\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login/es.madrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login\",\n                                                \"es.madrid\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"MzZlZWU2ZDU0MjJkZDIzYTA3YjBhMTA4OTM4MzQ2ZDVkMTExMDJjOTA2ODNmMDljODBmZGQ0NGQ0OGNmNzM2Mg\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"MmUwYjBiZTk2NGExZDllNTkzY2RlNTMwNzg1OTZjMzY1ODA2MDI3MjM2MmM2MDE5YjU2NTk3NDBiZTAxOGY2ZA\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"4691f935-958a-4d65-a961-1967071f68ca\",\n                                    \"name\": \"Login Through External Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"password\\\": \\\"PruebaCambio-20244!\\\",\\n    \\\"username\\\": \\\"pepito_2@mock.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login/es.madrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login\",\n                                                \"es.madrid\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Username or password are invalid\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"8e9883aa-b6e4-4a24-9494-d7ce68dc6b11\",\n                                    \"name\": \"Login Through Blocked Login\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"username\\\": \\\"pepito\\\",\\n    \\\"password\\\": \\\"mock_123451\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login/es.madrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login\",\n                                                \"es.madrid\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Too Many Requests\",\n                                    \"code\": 429,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 429,\\n        \\\"description\\\": \\\"error.login.blocked\\\"\\n    }\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Login\",\n                            \"id\": \"91aa93da-10c9-4f3f-8b5b-29e187a5623b\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"facebook_token\\\": \\\"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\\\",\\n    \\\"google_token\\\": \\\"ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"legal_terms_accepted\\\": true,\\n    \\\"origin_device\\\": \\\"5850de88e22c6d9f51b17715\\\",\\n    \\\"password\\\": \\\"Radmas*2025\\\",\\n    \\\"register\\\": true,\\n    \\\"user_id\\\": \\\"530dcc3251bbe7f27a702dc6\\\",\\n    \\\"username\\\": \\\"pepito@example.com\\\"\\n}\\n\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\n| 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. |\\n| first_name | String | \\\\[optional\\\\]. En caso de registro de User permite especificar el nombre que tendrá el mismo |\\n| 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 |\\n| jurisdiction_id | String | \\\\[optional\\\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\\n| last_name | String | \\\\[optional\\\\]. En caso de registro de User permite especificar el apellido que tendrá el mismo |\\n| 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 |\\n| origin_device | String | \\\\[optional\\\\]. Sirve para identificar el dispositivo desde el cual se está realizando la solicitud de autenticación |\\n| password | String | \\\\[required\\\\]. Se debe ingresar la contraseña concerniente al User deseado o en caso de registro, asignar una contraseña |\\n| register | Boolean | \\\\[required\\\\]. Permite identificar si el User está realizando login o un registro nuevo |\\n| user_id | String | \\\\[optional\\\\]. Permite ingresar el identificador del User para logins externos |\\n| username | String | \\\\[required\\\\]. Permite ingresar el email del User que desea realizar un login a la plataforma |\\n| device | Object | \\\\[optional\\\\]. Permite realizar login a un User mediante un dispositivo móvil |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"9eefd8e0-acc3-477f-b831-8f177ded64bf\",\n                                    \"name\": \"Login OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"username\\\": \\\"pepito\\\",\\n    \\\"password\\\": \\\"mock_12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"c6d18f4f-f35b-4794-8b04-44495fb81e30\",\n                                    \"name\": \"Login User Register\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"lasr_name\\\": \\\"Perez\\\",\\n    \\\"legal_terms_Accepted\\\": true,\\n    \\\"password\\\": \\\"mock_12345!\\\",\\n    \\\"register\\\": true,\\n    \\\"username\\\": \\\"pepito\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"7b2f6961-19ba-4544-839c-580da5dd1053\",\n                                    \"name\": \"Login Register without LegalTerms accepted\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"lasr_name\\\": \\\"Perez\\\",\\n    \\\"legal_terms_Accepted\\\": false,\\n    \\\"password\\\": \\\"mock_12345!\\\",\\n    \\\"register\\\": true,\\n    \\\"username\\\": \\\"pepito\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"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\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"2e09a22a-ed47-45db-8e76-838a2b2a401b\",\n                                    \"name\": \"Login Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"username\\\": \\\"pepito\\\",\\n    \\\"password\\\": \\\"mock_123451\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Username or password are invalid\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"a7cd5c7e-36c8-4871-ac89-c094faaf3dd4\",\n                                    \"name\": \"Login Blocked Login\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"username\\\": \\\"pepito\\\",\\n    \\\"password\\\": \\\"mock_123451\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Too Many Requests\",\n                                    \"code\": 429,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 429,\\n        \\\"description\\\": \\\"error.login.blocked\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"4229b8c9-58be-415c-b842-dfb55986d0ec\",\n                                    \"name\": \"Login Two Factor Auth Fail\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"lasr_name\\\": \\\"Perez\\\",\\n    \\\"legal_terms_Accepted\\\": true,\\n    \\\"password\\\": \\\"mock_12345!\\\",\\n    \\\"register\\\": false,\\n    \\\"username\\\": \\\"pepito\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error\\\": \\\"Two factor authentication disabled\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Login Process\",\n                            \"id\": \"c948c580-7531-4c6e-ad81-1022c7358543\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"facebook_token\\\": \\\"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\\\",\\n    \\\"google_token\\\": \\\"ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"legal_terms_accepted\\\": true,\\n    \\\"origin_device\\\": \\\"5850de88e22c6d9f51b17715\\\",\\n    \\\"password\\\": \\\"Radmas*2025\\\",\\n    \\\"register\\\": true,\\n    \\\"user_id\\\": \\\"530dcc3251bbe7f27a702dc6\\\",\\n    \\\"username\\\": \\\"pepito@example.com\\\"\\n}\\n\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login_process\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login_process\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\n| 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. |\\n| first_name | String | \\\\[optional\\\\]. En caso de registro de User permite especificar el nombre que tendrá el mismo |\\n| 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 |\\n| jurisdiction_id | String | \\\\[optional\\\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\\n| last_name | String | \\\\[optional\\\\]. En caso de registro de User permite especificar el apellido que tendrá el mismo |\\n| 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 |\\n| origin_device | String | \\\\[optional\\\\]. Sirve para identificar el dispositivo desde el cual se está realizando la solicitud de autenticación |\\n| password | String | \\\\[required\\\\]. Se debe ingresar la contraseña concerniente al User deseado o en caso de registro, asignar una contraseña |\\n| register | Boolean | \\\\[required\\\\]. Permite identificar si el User está realizando login o un registro nuevo |\\n| user_id | String | \\\\[optional\\\\]. Permite ingresar el identificador del User para logins externos |\\n| username | String | \\\\[required\\\\]. Permite ingresar el email del User que desea realizar un login a la plataforma |\\n| device | Object | \\\\[optional\\\\]. Permite realizar login a un User mediante un dispositivo móvil |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"4d6a2552-c80a-4b29-8aff-5dc547c412c1\",\n                                    \"name\": \"Login Process OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"username\\\": \\\"pepito\\\",\\n    \\\"password\\\": \\\"mock_12345\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_process\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_process\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"5362945e-5577-43e7-bbf6-17c06d263d61\",\n                                    \"name\": \"Login Process User Register\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"lasr_name\\\": \\\"Perez\\\",\\n    \\\"legal_terms_Accepted\\\": true,\\n    \\\"password\\\": \\\"mock_12345!\\\",\\n    \\\"register\\\": true,\\n    \\\"username\\\": \\\"pepito\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_process\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_process\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"c9b9b4b3-c5b0-4036-bef2-40cfa11d7ae7\",\n                                    \"name\": \"Login Process Register without LegalTerms accepted\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"lasr_name\\\": \\\"Perez\\\",\\n    \\\"legal_terms_Accepted\\\": false,\\n    \\\"password\\\": \\\"mock_12345!\\\",\\n    \\\"register\\\": true,\\n    \\\"username\\\": \\\"pepito\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_process\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_process\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"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\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"3136c04f-f3e8-4c52-b120-b4478aeaf62d\",\n                                    \"name\": \"Login Process Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"username\\\": \\\"pepito\\\",\\n    \\\"password\\\": \\\"mock_123451\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_process\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_process\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Username or password are invalid\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"9c015a83-4cac-4deb-a2c2-3e8e23b85bc9\",\n                                    \"name\": \"Login Process Blocked Login\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"username\\\": \\\"pepito\\\",\\n    \\\"password\\\": \\\"mock_123451\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_process\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_process\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Too Many Requests\",\n                                    \"code\": 429,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 429,\\n        \\\"description\\\": \\\"error.login.blocked\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"44c97ed2-f797-42b5-9d4d-06e2042751fe\",\n                                    \"name\": \"Login Process Two Factor Auth Fail\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"first_name\\\": \\\"Pepito\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"lasr_name\\\": \\\"Perez\\\",\\n    \\\"legal_terms_Accepted\\\": true,\\n    \\\"password\\\": \\\"mock_12345!\\\",\\n    \\\"register\\\": false,\\n    \\\"username\\\": \\\"pepito\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_process\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_process\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error\\\": \\\"Two factor authentication disabled\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Two factor auth confirmation\",\n                            \"id\": \"fae35c87-dec5-49fe-ac4b-54eb5cb485db\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"code\\\": \\\"7333\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"hash\\\": \\\"a2215fe1c8a17984d33aac9fe80b5660\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/security/2fa-confirmation\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"security\",\n                                        \"2fa-confirmation\"\n                                    ]\n                                },\n                                \"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.\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\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 |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los BackofficeUser son manager_client |\\n| 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. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"c7608223-d2d5-4ad9-baf9-0e37ad5edf3b\",\n                                    \"name\": \"Two factor auth confirmation OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"code\\\": \\\"7333\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"hash\\\": \\\"a2215fe1c8a17984d33aac9fe80b5660\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/2fa-confirmation\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"2fa-confirmation\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"access_token\\\" : \\\"YTljZjkzZDU5ZjA2NmE3MjgxZWIwYzRlYzNiYTRhMjY3ODY1NmRjYmI0MmY3OTdhNjMzNjU2M2ZlN2Q0ODg1ZA\\\",\\n  \\\"expires_in\\\" : 2592000,\\n  \\\"token_type\\\" : \\\"bearer\\\",\\n  \\\"scope\\\" : null,\\n  \\\"refresh_token\\\" : \\\"NmI0YzgwYjcwNzczMmNmNWFmODExMDg1MjI5ZjUyZjJjMjZhMGY5NDliZGY5YTcxOGI3ZmIxODE5ZDRkODUwNw\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"c818e8a0-db10-4ad9-8741-5c7e58625370\",\n                                    \"name\": \"Two factor auth confirmation invalid hash\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"code\\\": \\\"7333\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"hash\\\": \\\"a2215fe1c8a17984d33aac9fe80b5660\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/2fa-confirmation\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"2fa-confirmation\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Unauthorized\",\n                                    \"code\": 401,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"code\\\": 401,\\n  \\\"message\\\": \\\"Hash sent does not exists or has expired!\\\"\\n}\\n\"\n                                },\n                                {\n                                    \"id\": \"66126be8-a4b4-4ca0-85d8-36faad04e100\",\n                                    \"name\": \"Two factor auth confirmation invalid client id\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"code\\\": \\\"7333\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg41\\\",\\n    \\\"hash\\\": \\\"a2215fe1c8a17984d33aac9fe80b5660\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/2fa-confirmation\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"2fa-confirmation\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Unauthorized\",\n                                    \"code\": 401,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"description\\\": \\\"Client_id is invalid\\\",\\n    \\\"error_code\\\": 1058\\n}\"\n                                },\n                                {\n                                    \"id\": \"a9a0eaa7-aabe-4484-955e-1b8c7cbedf86\",\n                                    \"name\": \"Two factor auth confirmation invalid code\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"code\\\": \\\"7313\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"hash\\\": \\\"a2215fe1c8a17984d33aac9fe80b5660\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/2fa-confirmation\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"2fa-confirmation\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Conflict\",\n                                    \"code\": 409,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"description\\\": \\\"Code sent does not match. Recheck your email\\\",\\n    \\\"error_code\\\": 1201\\n}\"\n                                },\n                                {\n                                    \"id\": \"acae3141-1ba3-4ff2-99c3-f92c05072b84\",\n                                    \"name\": \"Two factor auth confirmation\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"code\\\": \\\"7333\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"hash\\\": \\\"a2215fe1c8a17984d33aac9fe80b5660\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/2fa-confirmation\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"2fa-confirmation\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Unauthorized\",\n                                    \"code\": 401,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"description\\\": \\\"Code sent does not match. You ran out of retries. You must restart the whole login process\\\",\\n    \\\"error_code\\\": 1200\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Logout\",\n                            \"id\": \"4474d093-9032-4731-afc1-99b75e36c549\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"device_id\\\": \\\"5b5c5ef0e6b72aa8018b4569\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/logout\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"logout\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| 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 |\\n| 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. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"c03c2af3-33b9-4061-bf20-d2916aa9c4ee\",\n                                    \"name\": \"Logout OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"device_id\\\": \\\"5b5c5ef0e6b72aa8018b4569\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/logout\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"logout\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\":200,\\n    \\\"description\\\":\\\"successfully logged out\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"63020f8d-33b2-4635-a515-1eac23359cdf\",\n                                    \"name\": \"Logout without login\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"device_id\\\": \\\"5b5c5ef0e6b72aa8018b4569\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/logout\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"logout\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Unauthorized\",\n                                    \"code\": 401,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"message\\\": \\\"No API token provided\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"7251bfe8-dd4e-4737-aabe-6b008f59c66a\",\n                                    \"name\": \"Logout failed\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"device_id\\\": \\\"5b5c5ef0e6b72aa8018b4569\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/logout\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"logout\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"message\\\": \\\"logout failed\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Login Google\",\n                            \"id\": \"1736d53f-7628-4346-a776-1562133df621\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"google_token\\\": \\\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"remote_access_token\\\": \\\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\\\",\\n    \\\"user_id\\\": \\\"530dcc3251bbe7f27a702dc6\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login_google\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login_google\"\n                                    ]\n                                },\n                                \"description\": \"| Campo | Tipo | Descripcion |\\n| --- | --- | --- |\\n| 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 |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\n| 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 |\\n| jurisdiction_id | String | \\\\[optional\\\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\\n| remote_access_token | String | \\\\[optional\\\\]. Token que se enviará a Google para validarlo (mismo valor de google_token). |\\n| user_id | String | \\\\[optional\\\\]. Permite ingresar el identificador del User para logins externos |\\n\\nEste endpoint permite realizar el acceso a la plataforma a través de una cuenta de Google previamente registrada en dicha plataforma.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"f4dad527-08cd-4b1c-9587-c1f6638496fb\",\n                                    \"name\": \"Login Google OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"google_token\\\": \\\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"remote_access_token\\\": \\\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\\\",\\n    \\\"user_id\\\": \\\"530dcc3251bbe7f27a702dc6\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_google\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_google\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"access_token\\\" : \\\"MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw\\\",\\n  \\\"expires_in\\\" : 2592000,\\n  \\\"token_type\\\" : \\\"bearer\\\",\\n  \\\"scope\\\" : null,\\n  \\\"refresh_token\\\" : \\\"ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"2c2c32bc-2f22-4210-a060-bf27c3713530\",\n                                    \"name\": \"Login Google Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"user_id\\\": \\\"530dcc3251bbe7f27a702dc6\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_google\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_google\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\":400,\\n    \\\"description\\\":\\\"remote_access_token:\\\\n    ERROR: remote access token was not provided\\\\n\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Login Google Process\",\n                            \"id\": \"d877cbd5-c17e-4645-a641-ceffa39562f1\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"google_token\\\": \\\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"remote_access_token\\\": \\\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\\\",\\n    \\\"user_id\\\": \\\"530dcc3251bbe7f27a702dc6\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login_google_process\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login_google_process\"\n                                    ]\n                                },\n                                \"description\": \"| Campo | Tipo | Descripcion |\\n| --- | --- | --- |\\n| 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 |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\n| 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 |\\n| jurisdiction_id | String | \\\\[optional\\\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\\n| remote_access_token | String | \\\\[optional\\\\]. Token que se enviará a Google para validarlo (mismo valor de google_token). |\\n| user_id | String | \\\\[optional\\\\]. Permite ingresar el identificador del User para logins externos |\\n\\nEste endpoint permite **iniciar sesión usando Google OAuth**, procesando el `id_token` enviado por el cliente.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"ae55190e-c48b-4e5d-85f2-286f8809999c\",\n                                    \"name\": \"Login Google Process OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"google_token\\\": \\\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"remote_access_token\\\": \\\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ\\\",\\n    \\\"user_id\\\": \\\"530dcc3251bbe7f27a702dc6\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_google_process\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_google_process\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"access_token\\\" : \\\"MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw\\\",\\n  \\\"expires_in\\\" : 2592000,\\n  \\\"token_type\\\" : \\\"bearer\\\",\\n  \\\"scope\\\" : null,\\n  \\\"refresh_token\\\" : \\\"ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"88c2579f-9504-4672-9457-67b49e1d80f7\",\n                                    \"name\": \"Login Google Process Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"user_id\\\": \\\"530dcc3251bbe7f27a702dc6\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_google_process\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_google_process\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\":400,\\n    \\\"description\\\":\\\"remote_access_token:\\\\n    ERROR: remote access token was not provided\\\\n\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Login Apple\",\n                            \"id\": \"e0800a6c-dd07-4af5-a418-1978a114d17d\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"avatar\\\": \\\"http://moock_images.com/123456.jpg\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"origin_device\\\": \\\"5850de88e22c6d9f51b17715\\\",\\n    \\\"remote_access_token\\\": \\\"eyJraWQiOiJFRUQ4TzVDNDkiLCJhbGciOiJFUzI1NiJ9.eyJzdWIiOiIwMDExMjM0NTY3ODkwIiwiaXNzIjoiY29tLmFwcGxlLmlkIiwiaWF0IjoxNjAwMDU2MjAwLCJleHAiOjE2MDAwNjAyMDB9.ASFHXJdjw5EfV5t0EPEv9H2L2O9pZyoqaJq0kV1nJJoQOehwCtfMFuz9B3\\\",\\n    \\\"username\\\": \\\"pepito@mock.com\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login_apple\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login_apple\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| 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 |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\n| origin_device | String | \\\\[optional\\\\]. Sirve para identificar el dispositivo desde el cual se está realizando la solicitud de autenticación |\\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 |\\n| username | String | \\\\[optional\\\\]. Permite ingresar el username o email del User que desea realizar un login a la plataforma |\\n\\nEste endpoint permite realizar el acceso a la plataforma a través de una cuenta de Apple previamente registrada en dicha plataforma.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"4b07cc02-b05b-4112-97c2-a95c1b7ee478\",\n                                    \"name\": \"Login Apple OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"avatar\\\": \\\"http://moock_images.com/123456.jpg\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"origin_device\\\": \\\"5850de88e22c6d9f51b17715\\\",\\n    \\\"remote_access_token\\\": \\\"eyJraWQiOiJFRUQ4TzVDNDkiLCJhbGciOiJFUzI1NiJ9.eyJzdWIiOiIwMDExMjM0NTY3ODkwIiwiaXNzIjoiY29tLmFwcGxlLmlkIiwiaWF0IjoxNjAwMDU2MjAwLCJleHAiOjE2MDAwNjAyMDB9.ASFHXJdjw5EfV5t0EPEv9H2L2O9pZyoqaJq0kV1nJJoQOehwCtfMFuz9B3\\\",\\n    \\\"username\\\": \\\"pepito@mock.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_apple\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_apple\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"55d5bd1d-7995-4d76-8278-e0219f3a6470\",\n                                    \"name\": \"Login Apple Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"avatar\\\": \\\"http://moock_images.com/123456.jpg\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"origin_device\\\": \\\"5850de88e22c6d9f51b17715\\\",\\n    \\\"username\\\": \\\"pepito@mock.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_apple\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_apple\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"remote_access_token:\\\\n    ERROR: remote access token was not provided\\\\n\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"6a823b2f-6a5e-4529-a47b-b8670428fa78\",\n                                    \"name\": \"Login Apple Not Logged\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"avatar\\\": \\\"http://moock_images.com/123456.jpg\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"origin_device\\\": \\\"5850de88e22c6d9f51b17715\\\",\\n    \\\"remote_access_token\\\": \\\"eyJraWQiOiJFRUQ4TzVDNDkiLCJhbGciOiJFUzI1NiJ9.eyJzdWIiOiIwMDExMjM0NTY3ODkwIiwiaXNzIjoiY29tLmFwcGxlLmlkIiwiaWF0IjoxNjAwMDU2MjAwLCJleHAiOjE2MDAwNjAyMDB9.ASFHXJdjw5EfV5t0EPEv9H2L2O9pZyoqaJq0kV1nJJoQOehwCtfMFuz9B3\\\",\\n    \\\"username\\\": \\\"pepito@mock.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_apple\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_apple\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"not logged\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Login Facebook\",\n                            \"id\": \"6d1f2cf4-e1fe-4465-b87d-55bda5ca7266\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"remote_access_token\\\": \\\"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\\\",\\n    \\\"user_id\\\": \\\"66fc095b2fbcedfe5e0c8ff6\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login_facebook\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login_facebook\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| 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 |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\n| jurisdiction_id | String | \\\\[optional\\\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\\n| 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. |\\n| user_id | String | \\\\[optional\\\\]. Permite ingresar el identificador del User para logins externos |\\n\\nEste endpoint permite realizar el acceso a la plataforma a través de una cuenta de Facebook previamente registrada en dicha plataforma.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"d6907fdf-8c5b-4313-8319-f23a1f297744\",\n                                    \"name\": \"Login Facebook OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"remote_access_token\\\": \\\"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\\\",\\n    \\\"user_id\\\": \\\"66fc095b2fbcedfe5e0c8ff6\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_facebook\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_facebook\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"649ed04f-91d5-4760-9aad-285532fa8002\",\n                                    \"name\": \"Login Facebook without token\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"user_id\\\": \\\"66fc095b2fbcedfe5e0c8ff6\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_facebook\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_facebook\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 403,\\n    \\\"description\\\": \\\"facebook credentials not provided\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"e79dc255-c0c7-41cc-874b-66c74ee5799b\",\n                                    \"name\": \"Login Facebook Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"remote_access_token\\\": \\\"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\\\",\\n    \\\"user_id\\\": \\\"66fc095b2fbcedfe5e0c8ff6\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_facebook\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_facebook\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"facebook does not provide email\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"308f5c42-ec12-4dae-b0cd-5f0bc517ea02\",\n                                    \"name\": \"Login Facebook Request Error\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"remote_access_token\\\": \\\"EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA\\\",\\n    \\\"user_id\\\": \\\"66fc095b2fbcedfe5e0c8ff6\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login_facebook\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login_facebook\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Request error\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Login JWT\",\n                            \"id\": \"43c398db-652f-4bd8-abdc-65eb9f97b24b\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"token\\\": \\\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ3aGF0c2FwcF9pZCI6IndoYXRzYXBwOis1MjEzMzI0OTA1ODQ4In0.0f7YWZUamhmvzgbodKNylN9s98RgVO5hc2m5zfjT9GQ\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login-jwt\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login-jwt\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\n| 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 |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"d615f537-5bfb-4c77-92df-d0d393d5190e\",\n                                    \"name\": \"Login JWT OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"token\\\": \\\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ3aGF0c2FwcF9pZCI6IndoYXRzYXBwOis1MjEzMzI0OTA1ODQ4In0.0f7YWZUamhmvzgbodKNylN9s98RgVO5hc2m5zfjT9GQ\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/login-jwt\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"login-jwt\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"09b9c12d-97d8-47db-ad2d-cda1f187d273\",\n                                    \"name\": \"Login JWT Client Id null\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"token\\\": \\\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ3aGF0c2FwcF9pZCI6IndoYXRzYXBwOis1MjEzMzI0OTA1ODQ4In0.0f7YWZUamhmvzgbodKNylN9s98RgVO5hc2m5zfjT9GQ\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login-jwt\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login-jwt\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"client_id required\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"a877a6ce-00fb-4065-a33d-19b2204426d6\",\n                                    \"name\": \"Login JWT Token null\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login-jwt\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login-jwt\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Request error\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Reset Password\",\n                            \"id\": \"59c3149b-997d-4e2f-b52b-1442a85a2890\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"app_key\\\": \\\"53982173e940f6d7408b4568\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"username\\\": \\\"mock@correo.com\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/reset_password\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"reset_password\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| 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 |\\n| jurisdiction_id | String | \\\\[optional\\\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\\n| username | String | \\\\[required\\\\]. Permite ingresar el username o email del User que desea realizar un login a la plataforma |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"bb91bf54-1f9b-44bc-bc51-0ee8c8e347d6\",\n                                    \"name\": \"Reset Password OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"username\\\": \\\"mock@correo.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/reset_password\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"reset_password\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 200,\\n    \\\"description\\\": \\\"E-mail sent to user\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"b96c7fd5-6384-4570-a5fc-f86533811709\",\n                                    \"name\": \"Reset Password user not found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"username\\\": \\\"mock@correo.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/reset_password\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"reset_password\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"User mock@correo.com was not found\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"76ff179d-99a0-4b45-8ee0-95f913291776\",\n                                    \"name\": \"Reset Password email not send\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"username\\\": \\\"mock_user\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/reset_password\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"reset_password\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Unprocessable Content\",\n                                    \"code\": 422,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 422,\\n    \\\"description\\\": \\\"Cant send an email to User mock_user since he/she has no email!\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"793ee055-f3b9-470d-b855-6cdaa4e4a4bb\",\n                                    \"name\": \"Reset Password Invalid Form\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": 2,\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"username\\\": \\\"mock@correo.com\\\",\\n    \\\"mock_field\\\": \\\"asd\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/reset_password\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"reset_password\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"ERROR: This form should not contain extra fields.\\\\n\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Recover Password\",\n                            \"id\": \"2d8167e9-8650-4877-b40f-468e6d54a4c0\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"app_key\\\": \\\"68c194511794bfe7fa02734a\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"username\\\": \\\"michael.martinez@gopenux.com\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/recover_password\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"recover_password\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| 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 |\\n| jurisdiction_id | String | \\\\[optional\\\\]. Permite especificar la jurisdicción a la que pertenecerá el User |\\n| username | String | \\\\[required\\\\]. Permite ingresar el username o email del User que desea realizar un login a la plataforma |\\n\\nEste 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`.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"e4698f7a-d19e-4dcd-beb1-ad7a647804e8\",\n                                    \"name\": \"Recover Password OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": \\\"68c194511794bfe7fa02734a\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"username\\\": \\\"michael.martinez@gopenux.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/recover_password\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"recover_password\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 200,\\n    \\\"description\\\": \\\"E-mail sent to user\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"d4dd9afb-c730-407d-b557-c75ea6c654f0\",\n                                    \"name\": \"Recover Password user not found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": \\\"68c194511794bfe7fa02734a\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"username\\\": \\\"mock@correo.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/recover_password\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"recover_password\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"User mock@correo.com was not found\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"87915d4b-0ab8-477a-86fa-d83fd1e84501\",\n                                    \"name\": \"Recover Password email not send\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": \\\"68c194511794bfe7fa02734a\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"username\\\": \\\"mock_user\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/recover_password\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"recover_password\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"User mock_user was not found\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"d101be4b-a5f5-4ffa-8b28-0a3f1e5e0fb9\",\n                                    \"name\": \"Recover Password Invalid Form\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"app_key\\\": \\\"68c194511794bfe7fa02734a\\\",\\n    \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n    \\\"username\\\": \\\"michael.martinez@gopenux.com\\\",\\n    \\\"mock_field\\\": \\\"asd\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/recover_password\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"recover_password\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"ERROR: Este formulario no debería contener campos adicionales.\\\\n\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"LegalTerms\",\n                            \"id\": \"97ca1404-c13b-4139-a9d5-6689b9df611f\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/accept_terms\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"accept_terms\"\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"63466035-261f-4c18-8a1a-982ebc7693d2\",\n                                    \"name\": \"LegalTerms OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/accept_terms\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"accept_terms\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"description\\\": \\\"Legal Terms Accepted\\\",\\n    \\\"code\\\": 200\\n}\"\n                                },\n                                {\n                                    \"id\": \"0e6f5214-f1bd-4791-9f61-ac5ee0d18e0d\",\n                                    \"name\": \"LegalTerms Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/accept_terms\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"accept_terms\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"There was an error accepting the legal terms\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Generate Biotoken\",\n                            \"id\": \"602035ff-1076-4bad-bd34-46356bdb8692\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"device_id\\\": \\\"9fc2029079531695\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/generate-biotoken\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"generate-biotoken\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| device_id | String | \\\\[required\\\\]. Valor del identificador del dispositivo vinculado a un User |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"d9400fec-248d-4c8e-9245-ffbafed9aeac\",\n                                    \"name\": \"Generate Biotoken OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"device_id\\\": \\\"9fc2029079531695\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/generate-biotoken\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"generate-biotoken\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"biotoken\\\": \\\"a4bda5e96116622271709484e36db31eefc35a7c7092f73b22d60dcf60862b47dc79b6a7564e59ac37c75326543797b8b6a8b9c36216b68c22b2467a8072aada\\\",\\n    \\\"greeting\\\": \\\"Pepito \\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"be241c4e-e65f-4498-b91b-a3712163785c\",\n                                    \"name\": \"Generate Biotoken Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"device_id\\\": \\\"9fc2029079531695\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/generate-biotoken\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"generate-biotoken\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Request error\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Login Biotoken\",\n                            \"id\": \"9e1c9bf0-bea2-44c3-bd25-f6289f99b21c\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"biotoken\\\": \\\"a4bda5e96116622271709484e36db31eefc35a7c7092f73b22d60dcf60862b47dc79b6a7564e59ac37c75326543797b8b6a8b9c36216b68c22b2467a8072aada\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"device_id\\\": \\\"9fc2029079531695\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login-biotoken\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login-biotoken\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| 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 |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\n| device_id | String | \\\\[required\\\\]. Valor del identificador del dispositivo vinculado a un User |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"96760687-6c3e-4c05-8351-ff5ef165d1b0\",\n                                    \"name\": \"Login Biotoken OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"biotoken\\\": \\\"a4bda5e96116622271709484e36db31eefc35a7c7092f73b22d60dcf60862b47dc79b6a7564e59ac37c75326543797b8b6a8b9c36216b68c22b2467a8072aada\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"device_id\\\": \\\"9fc2029079531695\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/login-biotoken\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"login-biotoken\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"oauth\\\": {\\n        \\\"access_token\\\": \\\"MjE4M2I5YTdiNzhhZmU0ZjZmNDY1MGYxNWNkZTIzNGYzNjM3YzYzMjhmMGFkMGFkMzI2Y2NiNTA1NTAzMjdhMA\\\",\\n        \\\"expires_in\\\": 2592000,\\n        \\\"token_type\\\": \\\"bearer\\\",\\n        \\\"scope\\\": null,\\n        \\\"refresh_token\\\": \\\"OGFmYTExM2JhMTM3YTBiNjBiNTAwYjQzMDEzOWU3ZjY0M2RmN2NkOGFkMzY0N2NiYjdmZjk2Yjk4Y2Y0Mzg3Mw\\\"\\n    },\\n    \\\"bioauth\\\": {\\n        \\\"biotoken\\\": \\\"ffb3cfef97dfdb38f7aa0ad09f1f0c35da50c1bfd90a444a2f80b5853d8e612cc8f8ab2a2b88bf4ce95cb71ffd26d80c070b81cb501a9c70e05effff82e3d790\\\",\\n        \\\"greeting\\\": \\\"Pepito \\\"\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"f304268e-6290-40ec-b6d1-486b135efd84\",\n                                    \"name\": \"Login Biotoken Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"device_id\\\": \\\"9fc2029079531695\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login-biotoken\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login-biotoken\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"3f3a346c-f9d5-476e-829d-b46a8dc9af5e\",\n                                    \"name\": \"Login Biotoken Invalid DeviceID\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"biotoken\\\": \\\"a4bda5e96116622271709484e36db31eefc35a7c7092f73b22d60dcf60862b47dc79b6a7564e59ac37c75326543797b8b6a8b9c36216b68c22b2467a8072aada\\\",\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"device_id\\\": \\\"9fc20290795316951\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login-biotoken\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login-biotoken\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Login Anonymous\",\n                            \"id\": \"c044f731-b614-4c24-8f88-b8abae1518c0\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"device_id\\\": \\\"9fc20290795316951\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login-anonymous\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login-anonymous\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\n| device_id | String | \\\\[required\\\\]. Valor del identificador del dispositivo vinculado a un User |\\n\\nPermite 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"f99c9072-cd78-4a06-aa1c-abbfd1909fc8\",\n                                    \"name\": \"Login Anonymous OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"device_id\\\": \\\"9fc20290795316951\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/login-anonymous\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"login-anonymous\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"OGNlOWIyMzI5OWNmMzlmMzA2YjVkODgxNzdjNGIyNWIzN2FiNDYwMjVhYjgxZDBlMmI2NWNmYzYwOWE2MTQ3OQ\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"MjcxMzdlOWJhZDBhZjQwODY1YTE3MGE5NTU4OGVmODE2M2I5ZGUzOWY0MDk3MGRlMzA5ZWY2ZWIyMzdhYTMxNg\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"1785f671-1c38-40f1-bcd6-033bf05729c3\",\n                                    \"name\": \"Login Anonymous Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"device_id\\\": \\\"9fc20290795316951\\\",\\n    \\\"mock_field\\\": 1\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login-anonymous\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login-anonymous\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"ERROR: Este formulario no debería contener campos adicionales.\\\\n\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Login Open ID Action\",\n                            \"id\": \"23e3dbdb-3f88-47ce-9827-5b5ef3cb8f53\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"noauth\"\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"code\\\": \\\"CODE_RECEIVED&\\\",\\n    \\\"code_verifier\\\": \\\"CODE_VERIFIER\\\",\\n    \\\"redirect_uri\\\": \\\"https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token\\\",\\n    \\\"clientKey\\\": \\\"sedfwe\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/login-open-id?client_key=mockid\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"login-open-id\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"client_key\",\n                                            \"value\": \"mockid\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| client_id | String | \\\\[required\\\\]. Se debe ingresar el valor estipulado por el tipo de cliente. En este caso los User son open010_client |\\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 |\\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 |\\n| 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 |\\n\\nEste 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).\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"08b85078-06d9-4bd2-be16-3e6eb2934b34\",\n                                    \"name\": \"Login Open ID Action OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"code\\\": \\\"CODE_RECEIVED&\\\",\\n    \\\"code_verifier\\\": \\\"CODE_VERIFIER\\\",\\n    \\\"redirect_uri\\\": \\\"https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"mtc.vdeveloper.lan/public-api/login-open-id\",\n                                            \"host\": [\n                                                \"mtc\",\n                                                \"vdeveloper\",\n                                                \"lan\"\n                                            ],\n                                            \"path\": [\n                                                \"public-api\",\n                                                \"login-open-id\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"access_token\\\": \\\"NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ\\\",\\n    \\\"expires_in\\\": 2592000,\\n    \\\"token_type\\\": \\\"bearer\\\",\\n    \\\"scope\\\": null,\\n    \\\"refresh_token\\\": \\\"N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"562a5f2d-ff58-48eb-8a01-dc78f915d8b5\",\n                                    \"name\": \"Login Open ID Action Bad Request\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"code\\\": \\\"CODE_RECEIVED&\\\",\\n    \\\"code_verifier\\\": \\\"CODE_VERIFIER\\\",\\n    \\\"redirect_uri\\\": \\\"https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login-open-id\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login-open-id\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"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\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"847c2ea0-87fa-449e-ba88-90b5a66aa6ad\",\n                                    \"name\": \"Login Open ID Action Invalid Form\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"client_id\\\": \\\"52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4\\\",\\n    \\\"code\\\": \\\"CODE_RECEIVED&\\\",\\n    \\\"code_verifier\\\": \\\"CODE_VERIFIER\\\",\\n    \\\"redirect_uri\\\": \\\"https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token\\\",\\n    \\\"mock_field\\\": 1\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/login-open-id\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"login-open-id\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"ERROR: Este formulario no debería contener campos adicionales.\\\\n\\\"\\n}\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"93a823c8-67ab-4df1-805c-38e93250c6ee\",\n                    \"description\": \" \"\n                }\n            ],\n            \"id\": \"3441c7ae-2028-4ec7-9ee7-dbd736111919\",\n            \"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\"\n        },\n        {\n            \"name\": \"Service\",\n            \"item\": [\n                {\n                    \"name\": \"Service\",\n                    \"item\": [\n                        {\n                            \"name\": \"List Service\",\n                            \"id\": \"056aaa14-1394-4885-baea-bcae0cdc85f7\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/services?jurisdiction_ids=es.madrid&lat=40.5334137&lng=-3.6480234&typology_ids=5850dca2e22c6d9f51b00c0f\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"services\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_ids\",\n                                            \"value\": \"es.madrid\",\n                                            \"description\": \"String. [opcional] (org.alcobendas). Son los identificadores de la jurisdicción que permitiran filtrar las categorias por área geográfica.\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.5334137\",\n                                            \"description\": \"Float. [optional] (40.5334137). Permite estableces coordenadas geográficas (latitud) para un filtrado más exacto de los resultados (formato decimal).\"\n                                        },\n                                        {\n                                            \"key\": \"lng\",\n                                            \"value\": \"-3.6480234\",\n                                            \"description\": \"Float. [optional] (-3.6480234). Permite estableces coordenadas geográficas (longitud) para un filtrado más exacto de los resultados (formato decimal).\"\n                                        },\n                                        {\n                                            \"key\": \"typology_ids\",\n                                            \"value\": \"5850dca2e22c6d9f51b00c0f\",\n                                            \"description\": \"String. [opcional] (5850dca2e22c6d9f51b00c0f). Son los identificadores de tipología que permiten filtrar las categorías según su tipo.\"\n                                        }\n                                    ]\n                                },\n                                \"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).\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"926a5612-dc29-4f04-b012-495b7a261703\",\n                                    \"name\": \"Response OK Lists Services\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/services?jurisdiction_ids=es.madrid&lat=40.5334137&lng=-3.6480234&typology_ids=5850dca2e22c6d9f51b00c0f\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"services\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"es.madrid\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.5334137\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6480234\"\n                                                },\n                                                {\n                                                    \"key\": \"typology_ids\",\n                                                    \"value\": \"5850dca2e22c6d9f51b00c0f\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"parent_service_name\\\": \\\"\\\",\\n    \\\"group\\\": \\\"\\\",\\n    \\\"jurisdiction_id\\\": \\\"es.madrid\\\",\\n    \\\"visible_name\\\": \\\"Alumbrado público (Aviso)\\\",\\n    \\\"id\\\": \\\"5620e9176aa91815008b4567\\\",\\n    \\\"social\\\": true,\\n    \\\"evaluation\\\": true,\\n    \\\"color\\\": \\\"#FBC02D\\\",\\n    \\\"description\\\": \\\"\\\",\\n    \\\"keywords\\\": \\\"\\\",\\n    \\\"mandatory_description\\\": true,\\n    \\\"mandatory_files\\\": false,\\n    \\\"mandatory_medias\\\": false,\\n    \\\"max_upload_files\\\": 5,\\n    \\\"max_upload_medias\\\": 5,\\n    \\\"public\\\": true,\\n    \\\"public_requests\\\": false,\\n    \\\"service_icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/66b265542dadc277946226.png\\\",\\n    \\\"service_name\\\": \\\"Alumbrado público\\\",\\n    \\\"typology\\\": {\\n        \\\"id\\\": \\\"5850dca2e22c6d9f51b00c0f\\\",\\n        \\\"color\\\": \\\"#ebc113\\\",\\n        \\\"description_legend\\\": \\\"Ej: farola fundida\\\",\\n        \\\"icon\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/typology_icons/6729ec91b9764447503445.png\\\",\\n        \\\"location_type\\\": \\\"geolocation\\\",\\n        \\\"order\\\": 1,\\n        \\\"public\\\": true,\\n        \\\"typology_description\\\": \\\"Tengo un problema con un elemento en la calle\\\",\\n        \\\"visible_name\\\": \\\"Aviso\\\",\\n        \\\"with_authorized_users\\\": true,\\n        \\\"with_description\\\": true,\\n        \\\"with_files\\\": true,\\n        \\\"with_geolocation_data\\\": false,\\n        \\\"with_medias\\\": true,\\n        \\\"with_temporality_data\\\": false\\n    },\\n    \\\"with_informant\\\": false\\n}\"\n                                },\n                                {\n                                    \"id\": \"302c70ad-1c70-495a-8398-31e58fbafec4\",\n                                    \"name\": \"Error Jurisdiction Not Valid Lists Services\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/services?jurisdiction_ids=es.madri&typology_ids=5850dca2e22c6d9f51b00c0f\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"services\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"es.madri\"\n                                                },\n                                                {\n                                                    \"key\": \"typology_ids\",\n                                                    \"value\": \"5850dca2e22c6d9f51b00c0f\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Parameter \\\\\\\"jurisdiction_ids\\\\\\\" of value \\\\\\\"es.madri\\\\\\\" violated a constraint \\\\\\\"Jurisdiction ids not valid\\\\\\\"\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"12727924-bc4f-49b7-b839-72459776ae98\",\n                                    \"name\": \"Error Typology Not Valid Lists Services\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/services?jurisdiction_ids=es.madrid&typology_ids=5850dca2e22c\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"services\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"es.madrid\"\n                                                },\n                                                {\n                                                    \"key\": \"typology_ids\",\n                                                    \"value\": \"5850dca2e22c\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Parameter \\\\\\\"typology_ids\\\\\\\" of value \\\\\\\"5850dca2e22c\\\\\\\" violated a constraint \\\\\\\"Ids are not valid\\\\\\\"\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Service Detail\",\n                            \"id\": \"36099251-a537-4818-9060-9f3c42bcceb8\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/services/{{service_id}}?jurisdiction_id=es.madrid\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"services\",\n                                        \"{{service_id}}\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_id\",\n                                            \"value\": \"es.madrid\",\n                                            \"description\": \"String. [required]. Son los identificadores de la jurisdicción que permitiran filtrar las categorias por área geográfica\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Request param**\\n\\n| **Campo** | Tipo | **Descripción** |\\n| --- | --- | --- |\\n| service_id | String | \\\\[required\\\\](5620e9176aa91815008b4567). ID de mongo del que se quiere obtener el detalle. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"1b54cef3-01a3-4ffa-863a-424abc7a6dfd\",\n                                    \"name\": \"Service Detail with data\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/services/64fa7c4cf978d8061c03e151?jurisdiction_id=es.madrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"services\",\n                                                \"64fa7c4cf978d8061c03e151\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"es.madrid\",\n                                                    \"description\": \"String. [required]. Son los identificadores de la jurisdicción que permitiran filtrar las categorias por área geográfica\",\n                                                    \"uuid\": \"b9a92d76-08b7-4fec-a257-607545a52030\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"4cf788b9-217f-466f-8985-348ae1853bc7\",\n                                    \"name\": \"Service Detail not found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/services/64fa7c4cf978d8061c03e151?jurisdiction_id=es.madrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"services\",\n                                                \"64fa7c4cf978d8061c03e151\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"es.madrid\",\n                                                    \"description\": \"String. [required]. Son los identificadores de la jurisdicción que permitiran filtrar las categorias por área geográfica\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"service_id was not found \\\"\\n}\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"fad6bb46-4653-4ed2-ba46-e75aecb08356\",\n                    \"description\": \" \"\n                }\n            ],\n            \"id\": \"bad2ded1-9473-4e71-a806-a6d655d37453\",\n            \"description\": \"Las categorías de servicio permiten la creación de tickets para órdenes de trabajo o solicitudes.\"\n        },\n        {\n            \"name\": \"SocialMedia\",\n            \"item\": [\n                {\n                    \"name\": \"SocialMedia\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get Twitter Timeline\",\n                            \"id\": \"764d2fb8-7270-447a-b44a-a24c385c7234\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/twitter-timeline/{{acount}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"twitter-timeline\",\n                                        \"{{acount}}\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| account | String | \\\\[required\\\\] nombre de la cuenta a solicitar |\\n\\nEste endpoint permite obtener lel timeline de una cuenta concreta de twitter\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"cb3c7cb0-daaa-4974-8397-c09f1b5d82ed\",\n                                    \"name\": \"Get Twitter Timeline OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/twitter-timeline/ComunidadMadrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"twitter-timeline\",\n                                                \"ComunidadMadrid\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get Twitter Users\",\n                            \"id\": \"4eb36562-20b5-4b72-b25f-200bac15d010\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/twitter-users/{{acount}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"twitter-users\",\n                                        \"{{acount}}\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| account | String | \\\\[required\\\\] nombre de la cuenta a solicitar |\\n\\nEste endpoint permite obtener la información de una cuenta concreta de twitter\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"de05118c-6111-429a-91dc-8b170d670874\",\n                                    \"name\": \"Get Twitter Users OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/twitter-users/ComunidadMadrid\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"twitter-users\",\n                                                \"ComunidadMadrid\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"name\\\": \\\"Comunidad de Madrid\\\",\\n        \\\"profile_banner_url\\\": \\\"https://pbs.twimg.com/profile_images/1582850980571406366/D9nEHuqs.jpg\\\",\\n        \\\"profile_image_url\\\": \\\"https://pbs.twimg.com/profile_images/1582850980571406366/D9nEHuqs_normal.jpg\\\",\\n        \\\"screen_name\\\": \\\"ComunidadMadrid\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get Youtube Videos\",\n                            \"id\": \"2a0c1dbb-211e-46bf-a1c4-2f447e29f89e\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/youtube/videos/{{acount}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"youtube\",\n                                        \"videos\",\n                                        \"{{acount}}\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| account | String | \\\\[required\\\\] nombre de la cuenta a solicitar |\\n\\nEste endpoint permite obtener los videos disponibles de una cuenta concreta de youtube\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"8854b2e9-f831-4b9c-82a0-39fe6bd91228\",\n                                    \"name\": \"Get Youtube Videos OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/youtube/videosel7desol/\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"youtube\",\n                                                \"videosel7desol\",\n                                                \"\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get Youtube Channels\",\n                            \"id\": \"c577a6f8-aae5-4d9e-918b-8b8a81844dbd\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/youtube/channels/{{acount}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"youtube\",\n                                        \"channels\",\n                                        \"{{acount}}\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| account | String | \\\\[required\\\\] nombre de la cuenta a solicitar |\\n\\nEste endpoint permite obtener la información de una cuenta concreta de youtube\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"f6e59dba-242a-4066-85a1-36b43dbdf4d7\",\n                                    \"name\": \"Get Youtube Channels OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/youtube/channels/el7desol\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"youtube\",\n                                                \"channels\",\n                                                \"el7desol\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"account_name\\\": \\\"el7desol\\\",\\n        \\\"icon\\\": \\\"https://yt3.ggpht.com/ytc/AIdro_mQseSgBEjDjDFM2yNpaw51hr1G-VboXzEkbesKdcoc-cA=s88-c-k-c0x00ffffff-no-rj\\\",\\n        \\\"id\\\": \\\"UCTS_hF6ho1Vsjz7266Qik2w\\\",\\n        \\\"title\\\": \\\"Comunidad de Madrid\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"e8719019-78e7-45e8-bb1b-3956b70ab872\"\n                }\n            ],\n            \"id\": \"28f5129b-9d80-4f2a-86dc-185bae18d0ae\"\n        },\n        {\n            \"name\": \"Typology\",\n            \"item\": [\n                {\n                    \"name\": \"Typology\",\n                    \"item\": [\n                        {\n                            \"name\": \"Typologies\",\n                            \"id\": \"8f905271-edb5-4853-ab8e-5b7b99c92f11\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/typologies?jurisdiction_ids=org.alcobendas&jurisdiction_element_id=5e5a3f17179796a7cbb93934&typology_ids=678eb20693b212646c00646c, 591b08fd4e4ea839018b456e&lng=-3.6290685486407&lat=40.425015653227&page=1&limit=90\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"typologies\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_ids\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"description\": \"String [optional] permite devolver las tipologías asociadas a servicios que pertenezcan a alguna de las jurisdicciones indicadas. lista separada por comas\"\n                                        },\n                                        {\n                                            \"key\": \"jurisdiction_element_id\",\n                                            \"value\": \"5e5a3f17179796a7cbb93934\",\n                                            \"description\": \"String [optional] permite obtener los servicios vinculados a ese elemento, y en consecuencia las tipologías asociadas a esos servicios\"\n                                        },\n                                        {\n                                            \"key\": \"typology_ids\",\n                                            \"value\": \"678eb20693b212646c00646c, 591b08fd4e4ea839018b456e\",\n                                            \"description\": \"String [optional]. permite devolver las tipologías asociadas a servicios cuya tipología coincida con alguno de los IDs indicados.\"\n                                        },\n                                        {\n                                            \"key\": \"lng\",\n                                            \"value\": \"-3.6290685486407\",\n                                            \"description\": \"Float [optional] Coordenada de longitud geográfica.\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.425015653227\",\n                                            \"description\": \"Float [optional] Coordenada de latitud geográfica.\"\n                                        },\n                                        {\n                                            \"key\": \"page\",\n                                            \"value\": \"1\",\n                                            \"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\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"90\",\n                                            \"description\": \"Int [optional]. Permite definir el limite de cada página de resultados. Por defecto es 90\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"1b371405-1a1d-4b7e-abf6-dbcce2954601\",\n                                    \"name\": \"Typologies OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/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\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"typologies\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas, es.rivas\",\n                                                    \"description\": \"[optional] Permite obtener los subproyectos a partir de los Ids separados por comas de un proyecto.\\n\\n\\n\\n\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_element_id\",\n                                                    \"value\": \"5e5a3f17179796a7cbb93934\",\n                                                    \"description\": \"[optional] Permite obtener un único subproyecto utilizando su identificador único de mongo.\\n\\n\\n\\n\\n\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"typology_ids\",\n                                                    \"value\": \"678eb20693b212646c00646c, 591b08fd4e4ea839018b456e\",\n                                                    \"description\": \"[optional] Permite obtener las tipologías a partir de los Ids de mongo separados por comas de un proyecto.\\n\\n\\n\\n\\n\\n\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6290685486407\",\n                                                    \"description\": \"[optional] Coordenada de longitud geográfica.\\n\\n\\n\\n\\n\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.425015653227\",\n                                                    \"description\": \"[optional] Coordenada de latitud geográfica.\\n\\n\\n\\n\\n\\n\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"90\",\n                                                    \"description\": \"[optional]. Permite definir el limite de cada página de resultados. Por defecto es 90\\n\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"related_typologies\\\": [\\n            {\\n                \\\"id\\\": \\\"5a8e9d664e4ea8bf018b4567\\\",\\n                \\\"visible_name\\\": \\\"Aviso\\\"\\n            },\\n            {\\n                \\\"id\\\": \\\"66ee2414967b5ac8010cfaa3\\\",\\n                \\\"visible_name\\\": \\\"Infraestructuras\\\"\\n            }\\n        ],\\n        \\\"recategorizable_typologies\\\": [\\n            {\\n                \\\"id\\\": \\\"66ee2414967b5ac8010cfaa3\\\",\\n                \\\"visible_name\\\": \\\"Infraestructuras\\\"\\n            },\\n            {\\n                \\\"id\\\": \\\"5a8e9d664e4ea8bf018b4567\\\",\\n                \\\"visible_name\\\": \\\"Aviso\\\"\\n            }\\n        ],\\n        \\\"id\\\": \\\"5a8e9d664e4ea8bf018b4567\\\",\\n        \\\"color\\\": \\\"#ecb113\\\",\\n        \\\"description_legend\\\": \\\"Por ejemplo: una farola fundida, un bache en la acera, una rama caída…\\\",\\n        \\\"icon\\\": \\\"https://core-pgics.sevilla.org/uploads/sevilla_pro/typology_icons/5b30a87b38e70.png\\\",\\n        \\\"location_type\\\": \\\"geolocation\\\",\\n        \\\"name\\\": \\\"aviso\\\",\\n        \\\"order\\\": 1,\\n        \\\"public\\\": true,\\n        \\\"typology_description\\\": \\\"Tengo un problema con un elemento de la ciudad\\\",\\n        \\\"visible_name\\\": \\\"Aviso\\\",\\n        \\\"with_authorized_users\\\": false,\\n        \\\"with_description\\\": true,\\n        \\\"with_files\\\": true,\\n        \\\"with_geolocation_data\\\": true,\\n        \\\"with_medias\\\": true,\\n        \\\"with_temporality_data\\\": true\\n    }\"\n                                },\n                                {\n                                    \"id\": \"8a847888-bd60-454c-adb2-bef962c6eca4\",\n                                    \"name\": \"Typologies Invalid Form\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/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\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"typologies\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas, es.rivas\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_element_id\",\n                                                    \"value\": \"5e5a3f17179796a7cbb93934\"\n                                                },\n                                                {\n                                                    \"key\": \"typology_ids\",\n                                                    \"value\": \"678eb20693b212646c00646c, 591b08fd4e4ea839018b456e\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6290685486407\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.425015653227\"\n                                                },\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"90\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"code\\\": 400,\\n  \\\"message\\\": \\\"Invalid form\\\"\\n}\\n\"\n                                },\n                                {\n                                    \"id\": \"9dd8ca78-1e1d-403f-b0ab-a29743979026\",\n                                    \"name\": \"Typologies Zones Not Fount\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/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\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"typologies\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas, es.rivas\",\n                                                    \"description\": \"[optional] Permite obtener los subproyectos a partir de los Ids separados por comas de un proyecto.\\n\\n\\n\\n\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_element_id\",\n                                                    \"value\": \"5e5a3f17179796a7cbb93934\",\n                                                    \"description\": \"[optional] Permite obtener un único subproyecto utilizando su identificador único de mongo.\\n\\n\\n\\n\\n\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"typology_ids\",\n                                                    \"value\": \"678eb20693b212646c00646c, 591b08fd4e4ea839018b456e\",\n                                                    \"description\": \"[optional] Permite obtener las tipologías a partir de los Ids de mongo separados por comas de un proyecto.\\n\\n\\n\\n\\n\\n\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"lng\",\n                                                    \"value\": \"-3.6290685486407\",\n                                                    \"description\": \"[optional] Coordenada de longitud geográfica.\\n\\n\\n\\n\\n\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"lat\",\n                                                    \"value\": \"40.425015653227\",\n                                                    \"description\": \"[optional] Coordenada de latitud geográfica.\\n\\n\\n\\n\\n\\n\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"page\",\n                                                    \"value\": \"1\",\n                                                    \"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\"\n                                                },\n                                                {\n                                                    \"key\": \"limit\",\n                                                    \"value\": \"90\",\n                                                    \"description\": \"[optional]. Permite definir el limite de cada página de resultados. Por defecto es 90\\n\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"No zones found for provided coordinates\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Me Typologies\",\n                            \"id\": \"4de7e281-62cc-48fc-85db-c8fb50178d72\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/typologies?jurisdiction_ids=org.alcobendas&jurisdiction_element_id=5e5a3f17179796a7cbb93934&typology_ids=678eb20693b212646c00646c, 591b08fd4e4ea839018b456e&lng=-3.6290685486407&lat=40.425015653227&page=1&limit=90\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"typologies\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_ids\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"description\": \"String [optional] permite devolver las tipologías asociadas a servicios que pertenezcan a alguna de las jurisdicciones indicadas. lista separada por comas\"\n                                        },\n                                        {\n                                            \"key\": \"jurisdiction_element_id\",\n                                            \"value\": \"5e5a3f17179796a7cbb93934\",\n                                            \"description\": \"String [optional] permite obtener los servicios vinculados a ese elemento, y en consecuencia las tipologías asociadas a esos servicios\"\n                                        },\n                                        {\n                                            \"key\": \"typology_ids\",\n                                            \"value\": \"678eb20693b212646c00646c, 591b08fd4e4ea839018b456e\",\n                                            \"description\": \"String [optional]. permite devolver las tipologías asociadas a servicios cuya tipología coincida con alguno de los IDs indicados.\"\n                                        },\n                                        {\n                                            \"key\": \"lng\",\n                                            \"value\": \"-3.6290685486407\",\n                                            \"description\": \"Float [optional] Coordenada de longitud geográfica.\"\n                                        },\n                                        {\n                                            \"key\": \"lat\",\n                                            \"value\": \"40.425015653227\",\n                                            \"description\": \"Float [optional] Coordenada de latitud geográfica.\"\n                                        },\n                                        {\n                                            \"key\": \"page\",\n                                            \"value\": \"1\",\n                                            \"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\"\n                                        },\n                                        {\n                                            \"key\": \"limit\",\n                                            \"value\": \"90\",\n                                            \"description\": \"Int [optional]. Permite definir el limite de cada página de resultados. Por defecto es 90\"\n                                        }\n                                    ]\n                                },\n                                \"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.\\n\\nEs un alias de**:** [GET /typologies](#tag/Typology-greater-Typology/operation/getTypologies)  \\nAmbos endpoints comparten la misma lógica interna y comportamiento, por lo que pueden usarse de forma intercambiable.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"52c5b85e-28b1-4a2a-8c3e-5ebe197adbcf\",\n                                    \"name\": \"Me Typologies OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/typologies\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"typologies\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"81f8ecac-975e-4225-934f-5716d30d55cf\",\n                                    \"name\": \"Me Typologies Invalid Form\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/typologies\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"typologies\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"code\\\": 400,\\n  \\\"message\\\": \\\"Invalid form\\\"\\n}\\n\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"b08b13b2-97e2-4da3-8c24-fee256cf6e59\",\n                    \"description\": \" \"\n                }\n            ],\n            \"id\": \"d507f3e7-2cb1-4279-9efc-2548157e9416\",\n            \"description\": \" \"\n        },\n        {\n            \"name\": \"User\",\n            \"item\": [\n                {\n                    \"name\": \"User\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get Jurisdiction Element Channels User\",\n                            \"id\": \"831dc0ad-27ac-49c4-83c8-dedbf7b34332\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/user/jurisdiction-element-channels/{{jurisdiction_element_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"user\",\n                                        \"jurisdiction-element-channels\",\n                                        \"{{jurisdiction_element_id}}\"\n                                    ]\n                                },\n                                \"description\": \"**Request Params**\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| jurisdiction_element_id | String | \\\\[required\\\\] Este campo corresponde al ID de MongoDB del jurisdictionElement del cual se desean obtener los canales. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"e1153c5b-bae3-4059-a429-e6c398827e52\",\n                                    \"name\": \"Get Jurisdiction Element Channels User OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/jurisdiction-element-channels/66fea6b27e81963f330b5b3e\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"jurisdiction-element-channels\",\n                                                \"66fea6b27e81963f330b5b3e\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Server\",\n                                            \"value\": \"nginx/1.16.1\"\n                                        },\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"value\": \"application/json\"\n                                        },\n                                        {\n                                            \"key\": \"Transfer-Encoding\",\n                                            \"value\": \"chunked\"\n                                        },\n                                        {\n                                            \"key\": \"Connection\",\n                                            \"value\": \"keep-alive\"\n                                        },\n                                        {\n                                            \"key\": \"Cache-Control\",\n                                            \"value\": \"no-cache, private\"\n                                        },\n                                        {\n                                            \"key\": \"Date\",\n                                            \"value\": \"Tue, 01 Oct 2024 08:23:06 GMT\"\n                                        },\n                                        {\n                                            \"key\": \"X-Cache-Debug\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"key\": \"Access-Control-Expose-Headers\",\n                                            \"value\": \"Link, X-Last-Page, X-Total-Items, X-Count\"\n                                        },\n                                        {\n                                            \"key\": \"Link\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"X-Last-Page\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"X-Total-Items\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"Vary\",\n                                            \"value\": \"Accept-Language\"\n                                        },\n                                        {\n                                            \"key\": \"X-Debug-Token\",\n                                            \"value\": \"8c3088\"\n                                        },\n                                        {\n                                            \"key\": \"X-Debug-Token-Link\",\n                                            \"value\": \"http://mtc.vadiaz.lan/_profiler/8c3088\"\n                                        },\n                                        {\n                                            \"key\": \"X-Robots-Tag\",\n                                            \"value\": \"noindex\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"channel\\\": {\\n            \\\"category\\\": \\\"interest\\\",\\n            \\\"external\\\": true,\\n            \\\"id\\\": \\\"670cc9fbbdb73a4bfca75607\\\",\\n            \\\"jurisdictions\\\": [\\n                {}\\n            ],\\n            \\\"name\\\": \\\"Canal1 Publico\\\",\\n            \\\"order\\\": 0,\\n            \\\"self_assignable\\\": false,\\n            \\\"visible\\\": false\\n        },\\n        \\\"is_notification\\\": true\\n    }\"\n                                },\n                                {\n                                    \"id\": \"3c2b7c28-31c5-4409-b80c-605136f4c3eb\",\n                                    \"name\": \"Get Jurisdiction Element Channels User Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/jurisdiction-element-channels/66fea6b27e81963f330b5b3e\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"jurisdiction-element-channels\",\n                                                \"66fea6b27e81963f330b5b3e\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Server\",\n                                            \"value\": \"nginx/1.16.1\"\n                                        },\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"value\": \"application/json\"\n                                        },\n                                        {\n                                            \"key\": \"Transfer-Encoding\",\n                                            \"value\": \"chunked\"\n                                        },\n                                        {\n                                            \"key\": \"Connection\",\n                                            \"value\": \"keep-alive\"\n                                        },\n                                        {\n                                            \"key\": \"Cache-Control\",\n                                            \"value\": \"no-cache, private\"\n                                        },\n                                        {\n                                            \"key\": \"Date\",\n                                            \"value\": \"Tue, 01 Oct 2024 08:23:06 GMT\"\n                                        },\n                                        {\n                                            \"key\": \"X-Cache-Debug\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"key\": \"Access-Control-Expose-Headers\",\n                                            \"value\": \"Link, X-Last-Page, X-Total-Items, X-Count\"\n                                        },\n                                        {\n                                            \"key\": \"Link\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"X-Last-Page\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"X-Total-Items\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"Vary\",\n                                            \"value\": \"Accept-Language\"\n                                        },\n                                        {\n                                            \"key\": \"X-Debug-Token\",\n                                            \"value\": \"8c3088\"\n                                        },\n                                        {\n                                            \"key\": \"X-Debug-Token-Link\",\n                                            \"value\": \"http://mtc.vadiaz.lan/_profiler/8c3088\"\n                                        },\n                                        {\n                                            \"key\": \"X-Robots-Tag\",\n                                            \"value\": \"noindex\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error_code\\\": 404,\\n    \\\"error_msg\\\": \\\"Object not found\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get Jurisdiction Element Channels Me\",\n                            \"id\": \"88fe2c11-0ae9-4cff-ac02-81bd5beb11c9\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/jurisdiction-element-channels/{{jurisdiction_element_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"jurisdiction-element-channels\",\n                                        \"{{jurisdiction_element_id}}\"\n                                    ]\n                                },\n                                \"description\": \"**Request Params**\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| jurisdiction_element_id | String | \\\\[required\\\\] Este campo corresponde al ID de MongoDB del jurisdictionElement del cual se desean obtener los canales. |\\n\\nEste 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.\\n\\nEs un alias de**:** [GET /user/jurisdiction-element-channels/{{jurisdiction_element_id}}](#tag/User-greater-User/operation/getUserJurisdictionElementChannels)  \\nAmbos 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`).\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"5fe7e8c1-bc63-4007-a0ef-856dfadaae30\",\n                                    \"name\": \"Get Jurisdiction Element Channels Me OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/jurisdiction-element-channels/{{jurisdiction_element_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"jurisdiction-element-channels\",\n                                                \"{{jurisdiction_element_id}}\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"channel\\\": {\\n            \\\"category\\\": \\\"interest\\\",\\n            \\\"external\\\": true,\\n            \\\"id\\\": \\\"670cc9fbbdb73a4bfca75607\\\",\\n            \\\"jurisdictions\\\": [\\n                {}\\n            ],\\n            \\\"name\\\": \\\"Canal1 Publico\\\",\\n            \\\"order\\\": 0,\\n            \\\"self_assignable\\\": false,\\n            \\\"visible\\\": false\\n        },\\n        \\\"is_notification\\\": true\\n    }\"\n                                },\n                                {\n                                    \"id\": \"3ef01c6d-4dc6-4f22-b3a7-64035e78679f\",\n                                    \"name\": \"Get Jurisdiction Element Channels Me Not Found\",\n                                    \"originalRequest\": {\n                                        \"auth\": {\n                                            \"type\": \"bearer\",\n                                            \"bearer\": [\n                                                {\n                                                    \"key\": \"token\",\n                                                    \"value\": \"{{token_public}}\",\n                                                    \"type\": \"string\"\n                                                }\n                                            ]\n                                        },\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/jurisdiction-element-channels/{{jurisdiction_element_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"jurisdiction-element-channels\",\n                                                \"{{jurisdiction_element_id}}\"\n                                            ]\n                                        },\n                                        \"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.\\n\\nEs un alias de**:** [GET /user/jurisdiction-element-channels/{{jurisdiction_element_id}}](#tag/User-greater-User/operation/getUserJurisdictionElementChannels)  \\nAmbos 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`).\"\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error_code\\\": 404,\\n    \\\"error_msg\\\": \\\"Object not found\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Ping Device\",\n                            \"id\": \"b310365c-c6b5-4402-abd0-fe19c7af3105\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/device/{{device_id}}/ping?app_key=1001&haste=true&tz=America%2FBogota\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"device\",\n                                        \"{{device_id}}\",\n                                        \"ping\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"app_key\",\n                                            \"value\": \"1001\",\n                                            \"description\": \"Int [optional] Clave de la aplicación asociada al dispositivo.\"\n                                        },\n                                        {\n                                            \"key\": \"haste\",\n                                            \"value\": \"true\",\n                                            \"description\": \"Bool [optional] Indica si el ping debe ejecutarse con prioridad/urgencia; se transforma desde string a boolean.\"\n                                        },\n                                        {\n                                            \"key\": \"tz\",\n                                            \"value\": \"America%2FBogota\",\n                                            \"description\": \"String [optional] Zona horaria del dispositivo o del usuario desde donde se realiza el ping.\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"**Request Params**\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| device_id | String | \\\\[required\\\\] ID del dispositivo a pingear. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"6f0d5192-f4a9-42a6-a013-68c2d204f50b\",\n                                    \"name\": \"Ping Device OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/device/{{device_id}}/ping?app_key=1001&haste=true&tz=America%2FBogota\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"device\",\n                                                \"{{device_id}}\",\n                                                \"ping\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"app_key\",\n                                                    \"value\": \"1001\"\n                                                },\n                                                {\n                                                    \"key\": \"haste\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"tz\",\n                                                    \"value\": \"America%2FBogota\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\"\n                                },\n                                {\n                                    \"id\": \"84755cf6-d5fa-4415-9a39-a31bfbeb7b25\",\n                                    \"name\": \"Ping Device Not Exist\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/device/{{device_id}}/ping?app_key=1001&haste=true&tz=America%2FBogota\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"device\",\n                                                \"{{device_id}}\",\n                                                \"ping\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"app_key\",\n                                                    \"value\": \"1001\"\n                                                },\n                                                {\n                                                    \"key\": \"haste\",\n                                                    \"value\": \"true\"\n                                                },\n                                                {\n                                                    \"key\": \"tz\",\n                                                    \"value\": \"America%2FBogota\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"Error pinging a Device from user whatsapp:+573228958456. Device with device_id: 7a437be70f854a7d does NOT exist\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Add App Evaluation\",\n                            \"id\": \"fd0b0659-04d0-4456-b7f6-97840634023c\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"rating\\\": 4,\\n    \\\"comment\\\": \\\"La app funciona muy bien\\\",\\n    \\\"app_key\\\": \\\"14\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/app_evaluation\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"app_evaluation\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| app_key | String | \\\\[required\\\\]. ID de la app que se quiere evaluar. |\\n| comment | String | \\\\[required\\\\]. Comentario del usuario sobre la app. |\\n| rating | Integer | \\\\[required\\\\]. Calificación de la app, suele estar en una escala. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"3027db0c-b563-4c18-b77f-cedb7072fdc9\",\n                                    \"name\": \"Response OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"rating\\\": 4,\\n    \\\"comment\\\": \\\"La app funciona muy bien\\\",\\n    \\\"app_key\\\": \\\"14\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/app_evaluation\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"app_evaluation\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"rating\\\": 4,\\n    \\\"comment\\\": \\\"La app funciona muy bien\\\",\\n    \\\"app_key\\\": \\\"14\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"dee352b7-c34b-492a-95b6-04ef71e85ef7\",\n                                    \"name\": \"Error User Was Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"rating\\\": 4,\\n    \\\"comment\\\": \\\"La app funciona muy bien\\\",\\n    \\\"app_key\\\": \\\"14\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/app_evaluation\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"app_evaluation\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Forbidden\",\n                                    \"code\": 403,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"code\\\": 403,\\n  \\\"message\\\": \\\"User was not found\\\"\\n}\\n\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Update Avatar\",\n                            \"id\": \"929742e8-6701-40c5-99a9-d994a9dfce01\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"formdata\",\n                                    \"formdata\": [\n                                        {\n                                            \"type\": \"file\",\n                                            \"key\": \"avatar_file\",\n                                            \"description\": \"[required]. Archivo de imagen para usar como avatar.\",\n                                            \"src\": \"/home/radmas/Downloads/download.jpeg\"\n                                        }\n                                    ]\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/profile/avatar\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"profile\",\n                                        \"avatar\"\n                                    ]\n                                },\n                                \"description\": \"Este endpoint permite a un usuario subir una imagen para establecer o actualizar su avatar, la imagen se valida y luego se sube.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"6c20825f-d643-4ce9-9fbd-daaf0aa12e26\",\n                                    \"name\": \"Error Image File Required\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"type\": \"file\",\n                                                    \"key\": \"avatar_file\",\n                                                    \"description\": \"[required]. Archivo de imagen para usar como avatar.\",\n                                                    \"src\": [\n                                                        \"/home/radmas/Downloads/download.jpeg\"\n                                                    ]\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/profile/avatar\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"profile\",\n                                                \"avatar\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"code\\\": 400,\\n  \\\"message\\\": \\\"Image file required\\\"\\n}\\n\"\n                                },\n                                {\n                                    \"id\": \"370f6c26-1757-4a50-9c83-7d340fbdb0cf\",\n                                    \"name\": \"Response OK Update Avatar\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"formdata\",\n                                            \"formdata\": [\n                                                {\n                                                    \"type\": \"file\",\n                                                    \"key\": \"avatar_file\",\n                                                    \"description\": \"[required]. Archivo de imagen para usar como avatar.\",\n                                                    \"src\": [\n                                                        \"/home/radmas/Downloads/download.jpeg\"\n                                                    ]\n                                                }\n                                            ]\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/profile/avatar\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"profile\",\n                                                \"avatar\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"Text\",\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"hasPassword\\\": false,\\n    \\\"main_address\\\": {},\\n    \\\"addresses\\\": [],\\n    \\\"app_evaluations\\\": [],\\n    \\\"avatar\\\": \\\"https://s3.eu-west-1.amazonaws.com/static.lab.open010.org/avatars/68c09867d54ed.png\\\",\\n    \\\"channels\\\": [\\n        {}\\n    ],\\n    \\\"configuration\\\": {\\n        \\\"app_notification\\\": {\\n            \\\"alerts\\\": true,\\n            \\\"comments\\\": true,\\n            \\\"follows\\\": true,\\n            \\\"requests\\\": true\\n        },\\n        \\\"email_notification\\\": {\\n            \\\"alerts\\\": true,\\n            \\\"comments\\\": true,\\n            \\\"follows\\\": true,\\n            \\\"requests\\\": true\\n        }\\n    },\\n    \\\"devices\\\": [],\\n    \\\"email\\\": \\\"daniel.sanchez@gopenux.com\\\",\\n    \\\"first_name\\\": \\\"Daniel Felipe\\\",\\n    \\\"id\\\": \\\"68af282bcfba85a93c09a573\\\",\\n    \\\"id_documents\\\": [],\\n    \\\"last_name\\\": \\\"Sanchez Ortega\\\",\\n    \\\"nickname\\\": \\\"daniel.sanchez\\\",\\n    \\\"notification_channels\\\": [],\\n    \\\"strongly_identified\\\": false,\\n    \\\"username\\\": \\\"daniel.sanchez\\\",\\n    \\\"anonymous\\\": false,\\n    \\\"jurisdiction_element_channels\\\": []\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Last Geofences\",\n                            \"id\": \"513253d1-ba9f-4ca4-b05f-185acbbc7119\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"last_geofences\\\" : [\\n        \\\"my_layer.12\\\",\\n        \\\"my_layer.35\\\"\\n    ]\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/last-geofences/{{device_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"last-geofences\",\n                                        \"{{device_id}}\"\n                                    ]\n                                },\n                                \"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**\\n\\n| **Campo** | **Descripción** |\\n| --- | --- |\\n| last_geofences | \\\\[required\\\\]  <br>Array con los geoserverId de las últimas geofences del usuario |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"600a124e-97f9-4804-bdbe-ca18982336e3\",\n                                    \"name\": \"Respuesta OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"name\": \"Content-Type\",\n                                                \"value\": \"application/json\",\n                                                \"type\": \"text\"\n                                            }\n                                        ],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"last_geofences\\\" : [\\n        \\\"my_layer.12\\\",\\n        \\\"my_layer.35\\\"\\n    ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/last-geofences/66fea6b27e81963f330b5ac8\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"last-geofences\",\n                                                \"66fea6b27e81963f330b5ac8\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Server\",\n                                            \"value\": \"nginx/1.16.1\"\n                                        },\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"value\": \"application/json\"\n                                        },\n                                        {\n                                            \"key\": \"Transfer-Encoding\",\n                                            \"value\": \"chunked\"\n                                        },\n                                        {\n                                            \"key\": \"Connection\",\n                                            \"value\": \"keep-alive\"\n                                        },\n                                        {\n                                            \"key\": \"Cache-Control\",\n                                            \"value\": \"no-cache, private\"\n                                        },\n                                        {\n                                            \"key\": \"Date\",\n                                            \"value\": \"Tue, 01 Oct 2024 08:23:06 GMT\"\n                                        },\n                                        {\n                                            \"key\": \"X-Cache-Debug\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"key\": \"Access-Control-Expose-Headers\",\n                                            \"value\": \"Link, X-Last-Page, X-Total-Items, X-Count\"\n                                        },\n                                        {\n                                            \"key\": \"Link\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"X-Last-Page\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"X-Total-Items\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"Vary\",\n                                            \"value\": \"Accept-Language\"\n                                        },\n                                        {\n                                            \"key\": \"X-Debug-Token\",\n                                            \"value\": \"8c3088\"\n                                        },\n                                        {\n                                            \"key\": \"X-Debug-Token-Link\",\n                                            \"value\": \"http://mtc.vadiaz.lan/_profiler/8c3088\"\n                                        },\n                                        {\n                                            \"key\": \"X-Robots-Tag\",\n                                            \"value\": \"noindex\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"full_name\\\": \\\"pepito perez\\\",\\n    \\\"additional_data\\\": [],\\n    \\\"email\\\": \\\"pepito@mock.com\\\",\\n    \\\"first_name\\\": \\\"pepito\\\",\\n    \\\"id\\\": \\\"6563767ac68c18fb4107a202\\\",\\n    \\\"last_name\\\": \\\"perez\\\",\\n    \\\"nickname\\\": \\\"9rq865xbkb\\\",\\n    \\\"phone\\\": \\\"30112345678\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"e578e0f1-3229-49a8-8a29-d14b2bd4a480\",\n                                    \"name\": \"Error Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Content-Type\",\n                                                \"name\": \"Content-Type\",\n                                                \"value\": \"application/json\",\n                                                \"type\": \"text\"\n                                            }\n                                        ],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"last_geofences\\\" : [\\n        \\\"my_layer.12\\\",\\n        \\\"my_layer.35\\\"\\n    ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/last-geofences/66fea6b27e81963f330b5ac8\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"last-geofences\",\n                                                \"66fea6b27e81963f330b5ac8\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Server\",\n                                            \"value\": \"nginx/1.16.1\"\n                                        },\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"value\": \"application/json\"\n                                        },\n                                        {\n                                            \"key\": \"Transfer-Encoding\",\n                                            \"value\": \"chunked\"\n                                        },\n                                        {\n                                            \"key\": \"Connection\",\n                                            \"value\": \"keep-alive\"\n                                        },\n                                        {\n                                            \"key\": \"Cache-Control\",\n                                            \"value\": \"no-cache, private\"\n                                        },\n                                        {\n                                            \"key\": \"Date\",\n                                            \"value\": \"Tue, 01 Oct 2024 08:23:06 GMT\"\n                                        },\n                                        {\n                                            \"key\": \"X-Cache-Debug\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"key\": \"Access-Control-Expose-Headers\",\n                                            \"value\": \"Link, X-Last-Page, X-Total-Items, X-Count\"\n                                        },\n                                        {\n                                            \"key\": \"Link\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"X-Last-Page\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"X-Total-Items\",\n                                            \"value\": \"\"\n                                        },\n                                        {\n                                            \"key\": \"Vary\",\n                                            \"value\": \"Accept-Language\"\n                                        },\n                                        {\n                                            \"key\": \"X-Debug-Token\",\n                                            \"value\": \"8c3088\"\n                                        },\n                                        {\n                                            \"key\": \"X-Debug-Token-Link\",\n                                            \"value\": \"http://mtc.vadiaz.lan/_profiler/8c3088\"\n                                        },\n                                        {\n                                            \"key\": \"X-Robots-Tag\",\n                                            \"value\": \"noindex\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error_code\\\": 404,\\n    \\\"error_msg\\\": \\\"Object not found\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Add Device\",\n                            \"id\": \"cc87489f-909b-49fe-9c45-3f39109e49e0\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"device_id\\\": \\\"9F621B00-2C4C-49C1-B0D9-2F583F866DE1\\\",\\n    \\\"type\\\": \\\"ios\\\",\\n    \\\"registration_id\\\": \\\"ej5zEduBrEM-vdXGrdkJ-i:APA91bGAOC1l0xWDCNBhpydLztZYTLUvz9zduLkOTYsbZ74CUknsPB_1kmsUToSm3JXlgyiV7Ga8P3aZeYCUA9jUdkrfWPBx02Y7T-xX0ItBpRfRx8oF7Rw\\\",\\n    \\\"app_key\\\": 1752\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/device\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"device\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| app_key | String | \\\\[required\\\\]. Aplicación asociada al dispositivo. |\\n| device_id | String | \\\\[required\\\\]. ID del dispositivo. |\\n| registration_id | String | \\\\[required\\\\]. ID del registro asociada al dispositivo. |\\n| type | Int | \\\\[required\\\\]. Tipo de dispositivo. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"66294a59-4c8c-41ee-a51d-2cd3320b0c7c\",\n                                    \"name\": \"Add Device OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"device_id\\\": \\\"9F621B00-2C4C-49C1-B0D9-2F583F866DE1\\\",\\n    \\\"type\\\": \\\"ios\\\",\\n    \\\"registration_id\\\": \\\"ej5zEduBrEM-vdXGrdkJ-i:APA91bGAOC1l0xWDCNBhpydLztZYTLUvz9zduLkOTYsbZ74CUknsPB_1kmsUToSm3JXlgyiV7Ga8P3aZeYCUA9jUdkrfWPBx02Y7T-xX0ItBpRfRx8oF7Rw\\\",\\n    \\\"app_key\\\": 1752\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/device\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"device\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"id\\\": \\\"68a75a9abf426bbabd0644af\\\",\\n    \\\"hasPassword\\\": true,\\n    \\\"username\\\": \\\"d.solicitante.pgiba\\\",\\n    \\\"nickname\\\": \\\"Solicitante de PGIBA\\\",\\n    \\\"user_companies\\\": [\\n        {\\n            \\\"alias\\\": \\\"Agrupación Base Aérea\\\",\\n            \\\"id\\\": \\\"68893d192e776a8e96017542\\\",\\n            \\\"name\\\": \\\"PGIBA-BACV-ABA\\\"\\n        }\\n    ],\\n    \\\"preferences\\\": {\\n        \\\"map_layer_list\\\": [\\n            {\\n                \\\"active\\\": false,\\n                \\\"map_layer\\\": {\\n                    \\\"backend\\\": \\\"OWS\\\",\\n                    \\\"endpoint\\\": \\\"https://gis-pre.mejoratuciudad.org/geoserver\\\",\\n                    \\\"id\\\": \\\"67069e56c7ae6500d401b6bf\\\",\\n                    \\\"is_default\\\": false,\\n                    \\\"color\\\": \\\"#000000\\\",\\n                    \\\"display_properties\\\": \\\"%description%\\\",\\n                    \\\"editable_data\\\": false,\\n                    \\\"editable_geometry\\\": false,\\n                    \\\"internal_name\\\": \\\"buildings:bacsi_bacv_GU_B_geocode\\\",\\n                    \\\"internally_visible\\\": true,\\n                    \\\"name\\\": \\\"Complejo y edificios\\\",\\n                    \\\"description\\\": \\\"Complejo y edificios\\\",\\n                    \\\"path_updated\\\": false,\\n                    \\\"preset\\\": false,\\n                    \\\"public\\\": false,\\n                    \\\"tags\\\": [],\\n                    \\\"token\\\": \\\"489780ae-39e0-40bf-93e3-57565431454a\\\",\\n                    \\\"type\\\": \\\"WORK\\\"\\n                }\\n            }\\n        ]\\n    },\\n    \\\"is_admin\\\": false,\\n    \\\"origin_create\\\": [],\\n    \\\"additional_data\\\": [],\\n    \\\"first_name\\\": \\\"Solicitante\\\",\\n    \\\"last_name\\\": \\\"Prueba PGIBA\\\",\\n    \\\"locale\\\": \\\"es\\\",\\n    \\\"avatar\\\": \\\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68a748d869aaa892718960.png\\\",\\n    \\\"user_groups\\\": [\\n        {\\n            \\\"jurisdiction_id\\\": \\\"es.bacsi\\\",\\n            \\\"alias\\\": \\\"Solicitantes Mesa\\\",\\n            \\\"group_type\\\": \\\"applicant\\\",\\n            \\\"id\\\": \\\"68a75208bf426bbabd06449b\\\",\\n            \\\"name\\\": \\\"Grp_PGIBA-BACV-ABA_solicitantes_mesa\\\"\\n        }\\n    ],\\n    \\\"permissions\\\": {\\n        \\\"es.bacsi\\\": [\\n            \\\"REQUESTS_COMMENTS_ACCESS_MODULE\\\",\\n            \\\"REQUESTS_COMMENTS_CREATE\\\",\\n            \\\"REQUESTS_COMMENTS_MEDIAS\\\",\\n            \\\"COMMENTS_FREE_TEXT\\\",\\n            \\\"USER_EVALUATION_ACCESS_MODULE\\\",\\n            \\\"USER_EVALUATION_CREATE\\\",\\n            \\\"NOTIFICATIONS_ACCESS_MODULE\\\",\\n            \\\"REQUESTS_ACCESS_MODULE\\\",\\n            \\\"REQUESTS_CREATE\\\",\\n            \\\"REQUESTS_GENERATE_TICKET\\\",\\n            \\\"REQUESTS_EMAIL_TICKET\\\",\\n            \\\"REQUESTS_ADD_INTERNAL_INFORMANT\\\"\\n        ]\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"18daa633-ccac-4588-b320-0ed992c3027f\",\n                                    \"name\": \"Add Device Invalid Json\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"device_id\\\": \\\"9F621B00-2C4C-49C1-B0D9-2F583F866DE1\\\",\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/device\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"device\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error\\\": {\\n        \\\"code\\\": 400,\\n        \\\"message\\\": \\\"Invalid json message received\\\"\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"9c295f38-b8c2-4eb8-8dc0-2e6575a081d5\",\n                                    \"name\": \"Add Device Failed\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"device_id\\\": \\\"9F621B00-2C4C-49C1-B0D9-2F583F866DE1\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/device\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"device\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error_code\\\": 1001,\\n    \\\"error_msg\\\": \\\"Attempting to add a new Device failed\\\",\\n    \\\"extra_data\\\": {\\n        \\\"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;    \\\",\\n        \\\"errors\\\": [\\n            {\\n                \\\"field\\\": \\\"\\\",\\n                \\\"message\\\": \\\"A Device must have at least an Id, Registration, Type and App_key\\\",\\n                \\\"parameters\\\": \\\"\\\"\\n            },\\n            {\\n                \\\"field\\\": \\\"registration_id\\\",\\n                \\\"message\\\": \\\"Este valor no debería estar vacío.\\\",\\n                \\\"parameters\\\": \\\"null\\\"\\n            },\\n            {\\n                \\\"field\\\": \\\"app_key\\\",\\n                \\\"message\\\": \\\"application was not provided\\\",\\n                \\\"parameters\\\": \\\"null\\\"\\n            }\\n        ]\\n    }\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Edit User JurisdictionElement Channels\",\n                            \"id\": \"64a43ef8-0ef9-485a-9e02-c065967efafe\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"PATCH\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"channels\\\" : {\\n        \\\"5c9b5c80e13a48ed37bc0989\\\" : [\\\"Canal1 Publico\\\",\\\"Canal2 Publico\\\"]\\n    }\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/user/edit-jurisdiction-element-channels\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"user\",\n                                        \"edit-jurisdiction-element-channels\"\n                                    ]\n                                },\n                                \"description\": \"Permite a un usuario externo modificar los canales que tiene activos para un jurisdictionElement concreto.\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\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 |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"97376409-da09-4776-93e1-e60156ed776a\",\n                                    \"name\": \"Response OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"channels\\\" : {\\n        \\\"5c9b5c80e13a48ed37bc0989\\\" : [\\\"Canal1 Publico\\\",\\\"Canal2 Publico\\\"]\\n    }\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/edit-jurisdiction-element-channels\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"edit-jurisdiction-element-channels\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"jurisdiction_element_channels\\\": {\\n        \\\"5c9b5c80e13a48ed37bc0989\\\": {\\n            \\\"670cc9fbbdb73a4bfca75607\\\": true,\\n            \\\"670ccbc4bdb73a4bfca75608\\\": true\\n        }\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"7442b1e6-eba5-451b-95c0-b6cf6eddcf3f\",\n                                    \"name\": \"Error User Does Not Belong to JurisdictionElement\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"channels\\\" : {\\n        \\\"5c9b5c80e13a48ed37bc0989\\\" : [\\\"Canal1 Publico\\\",\\\"Canal2 Publico\\\"]\\n    }\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/edit-jurisdiction-element-channels\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"edit-jurisdiction-element-channels\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Channel 670cc9fbbdb73a4bfca75607 is not in given jurisdictionElement 5c9b5c80e13a48ed37bc0989\\\"\\n    }\"\n                                },\n                                {\n                                    \"id\": \"0af253f3-3803-4492-8efd-f83224cad5dd\",\n                                    \"name\": \"Error User Not in Jurisdiction\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"channels\\\" : {\\n        \\\"5c9b5c80e13a48ed37bc0989\\\" : [\\\"Canal1 Publico\\\",\\\"Canal2 Publico\\\"]\\n    }\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/edit-jurisdiction-element-channels\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"edit-jurisdiction-element-channels\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"User does not belong to jurisdictionElement's Jurisdiction\\\"\\n    }\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Edit User JurisdictionElement Channels 2\",\n                            \"id\": \"5ec40986-f023-40e5-ae94-63f63d44ebd2\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"PATCH\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/jurisdiction-element-channels/edit\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"jurisdiction-element-channels\",\n                                        \"edit\"\n                                    ]\n                                },\n                                \"description\": \"Este endpoint permite al usuario autenticado actualizar los canales asociados a sus elementos de jurisdicción.\\n\\nEs un alias de**:** [PATCH /user/edit-jurisdiction-element-channels](#tag/User-greater-User/operation/editUserJurisdictionElementChannels)  \\nAmbos 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`).\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"c301a2ba-5cbc-4ac8-94b3-b0c350c13b34\",\n                                    \"name\": \"Response OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/jurisdiction-element-channels/edit\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"jurisdiction-element-channels\",\n                                                \"edit\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"60d5f9ae2f8e4e1a7c8b456d\\\": [\\n    \\\"email\\\",\\n    \\\"sms\\\"\\n  ],\\n  \\\"60d5f9ae2f8e4e1a7c8b456e\\\": [\\n    \\\"push\\\"\\n  ]\\n}\\n\"\n                                },\n                                {\n                                    \"id\": \"b064526e-85ad-4111-b811-697aac490473\",\n                                    \"name\": \"Error Editing User Jurisdiction Element Channel\",\n                                    \"originalRequest\": {\n                                        \"auth\": {\n                                            \"type\": \"bearer\",\n                                            \"bearer\": [\n                                                {\n                                                    \"key\": \"token\",\n                                                    \"value\": \"{{token_public}}\",\n                                                    \"type\": \"string\"\n                                                }\n                                            ]\n                                        },\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/jurisdiction-element-channels/edit\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"jurisdiction-element-channels\",\n                                                \"edit\"\n                                            ]\n                                        },\n                                        \"description\": \"Este endpoint permite al usuario autenticado actualizar los canales asociados a sus elementos de jurisdicción.\\n\\nEs un alias de**:** [PATCH /user/edit-jurisdiction-element-channels](#tag/User-greater-User/operation/editUserJurisdictionElementChannels)  \\nAmbos 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`).\"\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"code\\\": 400,\\n  \\\"message\\\": \\\"Error editing user jurisdiction element channels\\\"\\n}\\n\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Create User Profile\",\n                            \"id\": \"8bb0bbb2-8bad-42d8-ac6a-24a45198ae13\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"PUT\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n   \\\"first_name\\\":\\\"User\\\",\\n   \\\"last_name\\\": \\\"Prueba\\\",\\n   \\\"phone\\\": 555123456\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/create-profile\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"create-profile\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{profileToken}}\",\n                                            \"disabled\": true\n                                        }\n                                    ]\n                                },\n                                \"description\": \"Permite al usuario rellenar los datos de su perfil, y añadirlos a la request creada\\n\\n**Request Params**\\n\\n| **Campo** | **Descripción** |\\n| --- | --- |\\n| token | Este token (recibido por correo) contiene el correo del usuario y un request_id encriptados |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"1ec2c090-c074-4d6c-b7bf-c70ff9f53547\",\n                                    \"name\": \"Response OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PUT\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n   \\\"first_name\\\":\\\"User\\\",\\n   \\\"last_name\\\": \\\"Prueba\\\",\\n   \\\"phone\\\": 555123456\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/create-profile?token=LO_0GW-aB-q4oaV_La4-ka1eRnYyCWAHfpg5WK9ADORm0gsg3lDMhwfGcfC_UzBA\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"create-profile\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"token\",\n                                                    \"value\": \"LO_0GW-aB-q4oaV_La4-ka1eRnYyCWAHfpg5WK9ADORm0gsg3lDMhwfGcfC_UzBA\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"Text\",\n                                    \"cookie\": [],\n                                    \"body\": \"\\\"User Profile created succesfully\\\"\"\n                                },\n                                {\n                                    \"id\": \"a76dfcab-6f04-4e6d-8900-530e50008a43\",\n                                    \"name\": \"Response Invalid Token\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PUT\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n   \\\"first_name\\\":\\\"User\\\",\\n   \\\"last_name\\\": \\\"Prueba\\\",\\n   \\\"phone\\\": 555123456\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/create-profile?token=LO_0GW-aB-q4oaV_La4-ka1eRnYyCWAHfpg5WK9ADORm0gsg3lDMhwfGcfC_UzBA\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"create-profile\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"token\",\n                                                    \"value\": \"LO_0GW-aB-q4oaV_La4-ka1eRnYyCWAHfpg5WK9ADORm0gsg3lDMhwfGcfC_UzBA\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"Text\",\n                                    \"cookie\": [],\n                                    \"body\": \"\\\"Invalid Token\\\"\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Remove Device\",\n                            \"id\": \"e81690d8-57c9-4ec6-8e68-77b4dcb64653\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"DELETE\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"device_id\\\": \\\"9F621B00-2C4C-49C1-B0D9-2F583F866DE1\\\",\\n    \\\"app_key\\\": 1752\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/device\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"device\"\n                                    ]\n                                },\n                                \"description\": \"| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| app_key | String | \\\\[required\\\\]. Aplicación asociada al dispositivo. |\\n| device_id | String | \\\\[required\\\\]. ID del dispositivo. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"7cb398d6-dd1c-4588-9012-7b7eb79af38e\",\n                                    \"name\": \"Remove Device OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"DELETE\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"device_id\\\": \\\"9F621B00-2C4C-49C1-B0D9-2F583F866DE1\\\",\\n    \\\"app_key\\\": 1752\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/device\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"device\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"hasPassword\\\": true,\\n    \\\"nickname\\\": \\\"whatsapp:+573228958456\\\",\\n    \\\"main_address\\\": {},\\n    \\\"addresses\\\": [],\\n    \\\"app_evaluations\\\": [],\\n    \\\"avatar\\\": \\\"https://lh3.googleusercontent.com/a/ACg8ocKjclGiC_0Bb7EaLTqQQ06wIzsT63h2wcxLXqgwqWEYRQiRsmM=s96-c?sz=600\\\",\\n    \\\"channels\\\": [],\\n    \\\"configuration\\\": {\\n        \\\"app_notification\\\": {\\n            \\\"alerts\\\": true,\\n            \\\"comments\\\": true,\\n            \\\"follows\\\": true,\\n            \\\"requests\\\": true\\n        },\\n        \\\"email_notification\\\": {\\n            \\\"alerts\\\": true,\\n            \\\"comments\\\": true,\\n            \\\"follows\\\": true,\\n            \\\"requests\\\": true\\n        }\\n    },\\n    \\\"devices\\\": [],\\n    \\\"email\\\": \\\"michael.martinez@gopenux.com\\\",\\n    \\\"first_name\\\": \\\"Michael Santiago\\\",\\n    \\\"id\\\": \\\"68e6897873e517338e0305b2\\\",\\n    \\\"id_documents\\\": [],\\n    \\\"last_name\\\": \\\"Martinez Lopez\\\",\\n    \\\"notification_channels\\\": [],\\n    \\\"phone\\\": \\\"3228958456\\\",\\n    \\\"strongly_identified\\\": false,\\n    \\\"username\\\": \\\"whatsapp:+573228958456\\\",\\n    \\\"telegram_id\\\": \\\"8465975270\\\",\\n    \\\"anonymous\\\": false,\\n    \\\"jurisdiction_element_channels\\\": []\\n}\"\n                                },\n                                {\n                                    \"id\": \"b63eb287-2e95-4475-ad93-2b4642cbd331\",\n                                    \"name\": \"Remove Device Invalid Json\",\n                                    \"originalRequest\": {\n                                        \"method\": \"DELETE\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"device_id\\\": \\\"9F621B00-2C4C-49C1-B0D9-2F583F866DE1\\\",\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/device\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"device\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error\\\": {\\n        \\\"code\\\": 400,\\n        \\\"message\\\": \\\"Invalid json message received\\\"\\n    }\\n}\"\n                                },\n                                {\n                                    \"id\": \"4f5e6020-164f-4614-87cc-0aee36921013\",\n                                    \"name\": \"Remove Device Failed\",\n                                    \"originalRequest\": {\n                                        \"method\": \"DELETE\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"device_id\\\": \\\"9F621B00-2C4C-49C1-B0D9-2F583F866DE1\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/device\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"device\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"App_Key not provided\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"8296b3bf-51ef-4d7c-a960-4cc5463a9df9\",\n                    \"description\": \" \"\n                },\n                {\n                    \"name\": \"User Custom Configuration\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get User CustomConfiguration App Element Id\",\n                            \"id\": \"2fca94ed-270c-4855-84b9-f55fec506fd5\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?type=cityapp&jurisdiction_id=org.alcobendas\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"custom_configuration\",\n                                        \"{{app_element_id}}\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"type\",\n                                            \"value\": \"cityapp\",\n                                            \"description\": \"String. [required]. Especifica el tipo de configuracion personalizada de la consulta.\"\n                                        },\n                                        {\n                                            \"key\": \"jurisdiction_id\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"description\": \"String  [required]. Identificador único de la jurisdicción para la cual se obtendrá la configuración.\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"```\\n{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}\\n\\n ```\\n\\nEste 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.\\n\\n| **Campo** | **Descripcion** |\\n| --- | --- |\\n| app_element_id | String. \\\\[Require\\\\]. Identificador unico del elemento de la aplicación. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"35c5f54a-ad70-4ab4-b9ce-9b664b7f2d06\",\n                                    \"name\": \"Get User CustomConfiguration App Element Id OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element._idj}}.json?type=cityapp&jurisdiction_id=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\",\n                                                \"{{app_element._idj}}.json\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"active_cards\\\": [\\n        {\\n            \\\"app_element\\\": {\\n                \\\"$ref\\\": \\\"AppElement\\\",\\n                \\\"$id\\\": {\\n                    \\\"$oid\\\": \\\"59774b1dfbcdf7da018b4590\\\"\\n                },\\n                \\\"$db\\\": \\\"open010\\\",\\n                \\\"type\\\": \\\"requests_card\\\"\\n            },\\n            \\\"position\\\": {\\n                \\\"$numberLong\\\": \\\"1\\\"\\n            },\\n            \\\"selected\\\": false,\\n            \\\"createdDatetime\\\": {\\n                \\\"$date\\\": \\\"2018-03-12T01:43:09.083Z\\\"\\n            },\\n            \\\"updatedDatetime\\\": {\\n                \\\"$date\\\": \\\"2018-03-12T01:43:09.083Z\\\"\\n            }\\n        }\\n    ]\\n}\"\n                                },\n                                {\n                                    \"id\": \"4fad558b-f2c5-4fcc-bc11-900e8e60c501\",\n                                    \"name\": \"Get User CustomConfiguration App Element Id Error Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element._idj}}.json?type=requests_card&jurisdiction_id=591ed3cd370349bf018b4569\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\",\n                                                \"{{app_element._idj}}.json\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"requests_card\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"591ed3cd370349bf018b4569\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"error\\\": \\\"Not Found\\\",\\n  \\\"code\\\": 404\\n}\\n\"\n                                },\n                                {\n                                    \"id\": \"45c7aa6a-534c-489f-a4d5-6c8e2b61890d\",\n                                    \"name\": \"Get User CustomConfiguration App Element Id Error Jurisdiction_id Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?type=cityapp&jurisdiction_id=591ed3cd370349bf018b4569\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\",\n                                                \"{{app_element_id}}\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\",\n                                                    \"description\": \"String. [required]. Especifica el tipo de configuracion personalizada de la consulta.\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"591ed3cd370349bf018b4569\",\n                                                    \"description\": \"String (ObjectId). [required]. Identificador único de la jurisdicción para la cual se obtendrá la configuración.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"jurisdiction_id was not found\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"efab3587-835a-4556-882c-28ae5079da2a\",\n                                    \"name\": \"Get User CustomConfiguration App Element Id Error CustomConfigurations Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}?type=requests_card&jurisdiction_id=org.alcobendas\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\",\n                                                \"{{app_element_id}}\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"requests_card\",\n                                                    \"description\": \"String. [required]. Especifica el tipo de configuracion personalizada de la consulta.\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"org.alcobendas\",\n                                                    \"description\": \"String (ObjectId). [required]. Identificador único de la jurisdicción para la cual se obtendrá la configuración.\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"CustomConfigurations not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Get User Custom Configuration\",\n                            \"id\": \"8ec769db-8c35-489b-9981-56fb193df61e\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [\n                                    {\n                                        \"key\": \"Authorization\",\n                                        \"value\": \"Bearer OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw\"\n                                    },\n                                    {\n                                        \"key\": \"Cookie\",\n                                        \"value\": \"lunetics_locale=es\"\n                                    }\n                                ],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=cityapp\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"custom_configuration\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_ids\",\n                                            \"value\": \"org.alcobendas\",\n                                            \"description\": \"String. [required]. Identificador único de la jurisdicción para la cual se obtendrá la configuración.\"\n                                        },\n                                        {\n                                            \"key\": \"type\",\n                                            \"value\": \"cityapp\",\n                                            \"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\"\n                                        }\n                                    ]\n                                },\n                                \"description\": \"```\\nmtc.vdeveloper.lan/public-api/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=cityapp\\n\\n ```\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"88751f3c-2843-4bdb-937d-169317dbc591\",\n                                    \"name\": \"Get User Custom Configuration OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=cityapp\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas\"\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n        \\\"active_external_services\\\": [],\\n        \\\"active_buttons\\\": [],\\n        \\\"active_cards\\\": [\\n            {\\n                \\\"app_element\\\": \\\"67e11f151e0ac394a0057abd\\\",\\n                \\\"account_config\\\": [],\\n                \\\"position\\\": 0,\\n                \\\"selected\\\": true\\n            }\\n        ]\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"add8c174-4590-4667-9a7b-fb02467f45a7\",\n                                    \"name\": \"Get User Custom Configuration  Error CustomConfiguration Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=city\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas\"\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"city\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"UserCustomConfigurations not found\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"71924a02-e94d-4881-bcf5-c5e11920d354\",\n                                    \"name\": \"Get User Custom Configuration  Error Jurisdiction\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration?jurisdiction_ids=org.alcobeda&type=cityapp\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobeda\"\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"No jurisdiction found in the specified coordinates\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"f9b4617b-9b46-4875-8bbd-d89b82aae4b1\",\n                                    \"name\": \"Get User Custom Configuration Error User Not Fount\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [\n                                            {\n                                                \"key\": \"Authorization\",\n                                                \"value\": \"Bearer OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw\"\n                                            },\n                                            {\n                                                \"key\": \"Cookie\",\n                                                \"value\": \"lunetics_locale=es\"\n                                            }\n                                        ],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=cityapp\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_ids\",\n                                                    \"value\": \"org.alcobendas\",\n                                                    \"description\": \"String. [required]. Identificador único de la jurisdicción para la cual se obtendrá la configuración.\"\n                                                },\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"cityapp\",\n                                                    \"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\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"User not found\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Post User CustomConfiguration\",\n                            \"id\": \"908091ef-6d66-46f3-bb15-8342f00681fa\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n  \\\"jurisdiction_ids\\\": \\\"org.alcobendas\\\",\\n  \\\"type\\\": \\\"cityapp\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/custom_configuration.json\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"custom_configuration.json\"\n                                    ]\n                                },\n                                \"description\": \"Este endpoint crea la configuración personalizada del usuario para una aplicación y jurisdicción dadas, registrando sus tarjetas y botones activos.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"6e2ce20b-c630-426a-8a6b-1ed4298e8e3a\",\n                                    \"name\": \"Response OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n  \\\"jurisdiction_ids\\\": \\\"org.alcobendas\\\",\\n  \\\"type\\\": \\\"cityapp\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration.json\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration.json\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"Text\",\n                                    \"cookie\": []\n                                },\n                                {\n                                    \"id\": \"3e4fbe57-f197-4d22-85f8-079c24856039\",\n                                    \"name\": \"Error Jurisdiction_ids Not Send\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n  \\\"jurisdiction_ids\\\": \\\"\\\",\\n  \\\"type\\\": \\\"alerts_card\\\",\\n  \\\"active_buttons\\\": [\\n    { \\\"app_element\\\": \\\"5950f73d29469c0e028b45a5\\\", \\\"position\\\": 2 }\\n  ],\\n  \\\"active_cards\\\": [\\n    { \\\"app_element\\\": \\\"59568d81a584070a1d8b4567\\\", \\\"position\\\": 1 }\\n  ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration.json\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration.json\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Jurisdiction_ids not send\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"a0c7ff6a-28e3-4c1f-a12b-4bdaaac327c3\",\n                                    \"name\": \"Error Jurisdiction Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n  \\\"jurisdiction_ids\\\": \\\"\\\",\\n  \\\"type\\\": \\\"alerts_card\\\",\\n  \\\"active_buttons\\\": [\\n    { \\\"app_element\\\": \\\"5950f73d29469c0e028b45a5\\\", \\\"position\\\": 2 }\\n  ],\\n  \\\"active_cards\\\": [\\n    { \\\"app_element\\\": \\\"59568d81a584070a1d8b4567\\\", \\\"position\\\": 1 }\\n  ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration.json\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration.json\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Jurisdiction not found\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"9cca340d-dfba-4338-8546-3dd579f2ff25\",\n                                    \"name\": \"Error User Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n  \\\"jurisdiction_ids\\\": \\\"591ed3cd370349bf018b4569\\\",\\n  \\\"type\\\": \\\"alerts_card\\\",\\n  \\\"active_buttons\\\": [\\n    { \\\"app_element\\\": \\\"5950f73d29469c0e028b45a5\\\", \\\"position\\\": 2 }\\n  ],\\n  \\\"active_cards\\\": [\\n    { \\\"app_element\\\": \\\"59568d81a584070a1d8b4567\\\", \\\"position\\\": 1 }\\n  ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration.json\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration.json\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"User not found\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"31a3e74e-20a3-41f5-819d-a512344cfb5c\",\n                                    \"name\": \"Error Type Not Send\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n  \\\"jurisdiction_ids\\\": \\\"591ed3cd370349bf018b4569\\\",\\n  \\\"type\\\": \\\"\\\",\\n  \\\"active_buttons\\\": [\\n    { \\\"app_element\\\": \\\"5950f73d29469c0e028b45a5\\\", \\\"position\\\": 2 }\\n  ],\\n  \\\"active_cards\\\": [\\n    { \\\"app_element\\\": \\\"59568d81a584070a1d8b4567\\\", \\\"position\\\": 1 }\\n  ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration.json\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration.json\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"Type not send\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"f37c565f-7804-41d6-ac24-d9ff4ad6fa91\",\n                                    \"name\": \"Error UserCustomConfiguration Params Not Valid\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n  \\\"type\\\": \\\"alerts_card\\\",\\n  \\\"active_buttons\\\": [\\n    { \\\"app_element\\\": \\\"5950f73d29469c0e028b45a5\\\", \\\"position\\\": 2 }\\n  ],\\n  \\\"active_cards\\\": [\\n    { \\\"app_element\\\": \\\"59568d81a584070a1d8b4567\\\", \\\"position\\\": 1 }\\n  ]\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration.json\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration.json\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"UserCustomConfiguration params not valid\\\"\\n}\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Patch User CustomConfiguration App Element Id\",\n                            \"id\": \"873bc9a2-fe57-4e58-8f1f-d7a3e68559a3\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"PATCH\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n  \\\"position\\\": 77,\\n  \\\"selected\\\": true,\\n  \\\"account_config\\\": [\\n    { \\n        \\\"id\\\": \\\"5f1e7d9a1b2c3456def7890a\\\" \\n    }\\n  ]\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element_id}}.json?type=city&jurisdiction_id=591ed3cd370349bf018b4569\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"me\",\n                                        \"custom_configuration\",\n                                        \"{{app_element_id}}.json\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"type\",\n                                            \"value\": \"city\",\n                                            \"description\": \"String. [Require]. Define el tipo de configuración personalizada que se va a editar.\\n\"\n                                        },\n                                        {\n                                            \"key\": \"jurisdiction_id\",\n                                            \"value\": \"591ed3cd370349bf018b4569\",\n                                            \"description\": \"String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\\n\"\n                                        }\n                                    ]\n                                },\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`.\\n\\n| **Campo** | **Descripcion** |\\n| --- | --- |\\n| app_element_id | String. \\\\[Require\\\\]. Identificador del elemento de la aplicación cuya configuración personalizada se edita. |\\n| position | Int. \\\\[Require\\\\]. Nueva posición en la que debe mostrarse la tarjeta en la interfaz. |\\n| selected | Bool. \\\\[Require\\\\]. Indica si la tarjeta queda seleccionada (true) o no (false). |\\n| account_config | Array. \\\\[Require\\\\]. Lista de objetos con la configuración de cuenta asociada a la tarjeta. |\\n| id | String (ObjectId). \\\\[Require\\\\]. Identificador único de cada objeto dentro de account_config. |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"dab80395-814d-42d7-a3ea-d7197919c995\",\n                                    \"name\": \"Response OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element_id.}}.json?type=city&jurisdiction_id=591ed3cd370349bf018b4569\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\",\n                                                \"{{app_element_id.}}.json\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"city\",\n                                                    \"description\": \"String. [Require]. Define el tipo de configuración personalizada que se va a editar.\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"591ed3cd370349bf018b4569\",\n                                                    \"description\": \"String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\\n\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"Text\",\n                                    \"cookie\": [],\n                                    \"body\": \"    \"\n                                },\n                                {\n                                    \"id\": \"a10381ef-55a0-49b5-b511-694981545b44\",\n                                    \"name\": \"Error User Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element_id.}}json?type=city&jurisdiction_id=591ed3cd370349bf018b4569\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\",\n                                                \"{{app_element_id.}}json\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"city\",\n                                                    \"description\": \"String. [Require]. Define el tipo de configuración personalizada que se va a editar.\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"591ed3cd370349bf018b4569\",\n                                                    \"description\": \"String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\\n\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"User not found\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"5ab6dfe4-fc91-4352-a694-ce4f87aa182b\",\n                                    \"name\": \"Error Aplication Was Not Found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element_id.}}json?type=city&jurisdiction_id=591ed3cd370349bf018b4569\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\",\n                                                \"{{app_element_id.}}json\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"city\",\n                                                    \"description\": \"String. [Require]. Define el tipo de configuración personalizada que se va a editar.\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"591ed3cd370349bf018b4569\",\n                                                    \"description\": \"String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\\n\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Application was not found\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"1369e794-1345-4015-968e-c80af1590b97\",\n                                    \"name\": \"Error UserConfigurationCustom Params Not Valid\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element_id.}}json?type=city&jurisdiction_id=591ed3cd370349bf018b4569\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\",\n                                                \"{{app_element_id.}}json\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"city\",\n                                                    \"description\": \"String. [Require]. Define el tipo de configuración personalizada que se va a editar.\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"591ed3cd370349bf018b4569\",\n                                                    \"description\": \"String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\\n\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 400,\\n    \\\"description\\\": \\\"UserCustomConfiguration params not valid\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"4bf4a564-91aa-45ed-8b9a-9d68cecb664c\",\n                                    \"name\": \"Error Not Found Active Card\",\n                                    \"originalRequest\": {\n                                        \"method\": \"PATCH\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/me/custom_configuration/{{app_element_id.}}json?type=city&jurisdiction_id=591ed3cd370349bf018b4569\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"me\",\n                                                \"custom_configuration\",\n                                                \"{{app_element_id.}}json\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"type\",\n                                                    \"value\": \"city\",\n                                                    \"description\": \"String. [Require]. Define el tipo de configuración personalizada que se va a editar.\\n\"\n                                                },\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"591ed3cd370349bf018b4569\",\n                                                    \"description\": \"String. [Require]. Identificador de la jurisdicción sobre la cual aplica la configuración.\\n\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"code\\\": 404,\\n    \\\"description\\\": \\\"Not found active card\\\"\\n}\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"19e5acff-ddc0-4dd7-9ae2-cc04a6de721d\",\n                    \"description\": \" \"\n                },\n                {\n                    \"name\": \"User Public\",\n                    \"item\": [\n                        {\n                            \"name\": \"Delete User\",\n                            \"id\": \"52c372ea-334f-42f3-8481-9e41ed49b5b4\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/user/delete-user?token=exampleToken\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"user\",\n                                        \"delete-user\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"exampleToken\",\n                                            \"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\"\n                                        }\n                                    ]\n                                },\n                                \"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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"cf77678e-11b6-46de-b127-2161db06b1e1\",\n                                    \"name\": \"Response OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/delete-user?token=exampleToken\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"delete-user\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"token\",\n                                                    \"value\": \"exampleToken\",\n                                                    \"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\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"Username changed to \\\": \\\"newUsername\\\",\\n    \\\"Requests reindexed successfully\\\": true\\n}\"\n                                },\n                                {\n                                    \"id\": \"cd0c27ec-41e7-4911-b6a6-ea8db29a6d91\",\n                                    \"name\": \"Missing token\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/delete-user\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"delete-user\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"token\",\n                                                    \"value\": \"exampleToken\",\n                                                    \"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\",\n                                                    \"disabled\": true\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Token must be provided\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"76dc33a5-4aec-47a7-90fc-4e0db056aab6\",\n                                    \"name\": \"Invalid token\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/delete-user?token=exampleToken\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"delete-user\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"token\",\n                                                    \"value\": \"exampleToken\",\n                                                    \"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\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Invalid token\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Send Delete Confirmation Mail\",\n                            \"id\": \"870c5f72-038e-4911-86fb-bb649de027d4\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"{\\n    \\\"email\\\": \\\"jhon.doe@example.com\\\"\\n}\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"user\",\n                                        \"send-delete-confirmation-mail\"\n                                    ],\n                                    \"query\": [\n                                        {\n                                            \"key\": \"jurisdiction_id\",\n                                            \"value\": \"{{jurisdiction_id}}\",\n                                            \"description\": \"String [required]. Un jurisdiction_id válido\"\n                                        }\n                                    ]\n                                },\n                                \"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.\\n\\n### Body Params\\n\\n| **Campo** | **Tipo** | **Descripción** |\\n| --- | --- | --- |\\n| email | string | \\\\[required\\\\] Email del usuario que se quiere anonimizar |\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"5d002826-159c-423a-9101-8918bda44d3c\",\n                                    \"name\": \"Response OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"email\\\": \\\"jhon.doe@example.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"send-delete-confirmation-mail\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"{{jurisdiction_id}}\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"\\\"Email sent to jhon.doe@example.com\\\"\"\n                                },\n                                {\n                                    \"id\": \"50719fc8-f450-44de-8097-1fedc65a7349\",\n                                    \"name\": \"Invalid jurisdiction_id\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"email\\\": \\\"jhon.doe@example.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/send-delete-confirmation-mail?jurisdiction_id=fake_jurisdiction_id\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"send-delete-confirmation-mail\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"fake_jurisdiction_id\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"jurisdiction_id was not found\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"e2d99dff-b1a3-4a3b-be1e-34b48ef87c11\",\n                                    \"name\": \"User not found\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"email\\\": \\\"jhon.doe@example.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"send-delete-confirmation-mail\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"{{jurisdiction_id}}\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Not Found\",\n                                    \"code\": 404,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 404,\\n        \\\"description\\\": \\\"User not found\\\"\\n    }\\n]\"\n                                },\n                                {\n                                    \"id\": \"5b05f56c-7ebe-4294-b2df-167f03fd06ef\",\n                                    \"name\": \"Error generating token\",\n                                    \"originalRequest\": {\n                                        \"method\": \"POST\",\n                                        \"header\": [],\n                                        \"body\": {\n                                            \"mode\": \"raw\",\n                                            \"raw\": \"{\\n    \\\"email\\\": \\\"jhon.doe@example.com\\\"\\n}\",\n                                            \"options\": {\n                                                \"raw\": {\n                                                    \"language\": \"json\"\n                                                }\n                                            }\n                                        },\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"user\",\n                                                \"send-delete-confirmation-mail\"\n                                            ],\n                                            \"query\": [\n                                                {\n                                                    \"key\": \"jurisdiction_id\",\n                                                    \"value\": \"{{jurisdiction_id}}\",\n                                                    \"description\": \"String [required]. Un jurisdiction_id válido\"\n                                                }\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Bad Request\",\n                                    \"code\": 400,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"There was an error generating a disableUserToken\\\"\\n    }\\n]\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"82ba12c4-f9ec-4c1f-995f-0e8f33ee4c45\"\n                }\n            ],\n            \"id\": \"a1071790-58d8-4b36-bb64-6494dcb21687\",\n            \"description\": \"Los usuarios externos de {{environment}} 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.\"\n        },\n        {\n            \"name\": \"Widget\",\n            \"item\": [\n                {\n                    \"name\": \"Widget\",\n                    \"item\": [\n                        {\n                            \"name\": \"Get AppElement Widgets\",\n                            \"id\": \"22658367-c420-4619-bca3-4798fadbef2e\",\n                            \"protocolProfileBehavior\": {\n                                \"disableBodyPruning\": true\n                            },\n                            \"request\": {\n                                \"auth\": {\n                                    \"type\": \"bearer\",\n                                    \"bearer\": [\n                                        {\n                                            \"key\": \"token\",\n                                            \"value\": \"{{token_public}}\",\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"method\": \"GET\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"raw\",\n                                    \"raw\": \"\",\n                                    \"options\": {\n                                        \"raw\": {\n                                            \"language\": \"json\"\n                                        }\n                                    }\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/app-element/{{id}}/widgets\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"app-element\",\n                                        \"{{id}}\",\n                                        \"widgets\"\n                                    ]\n                                },\n                                \"description\": \"**Request Params**\\n\\n| **Campo.** | **Descripción.** |\\n| --- | --- |\\n| id | Id del AppElement del cual se desean obtener los widgets asociados. |\\n\\nEste 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.\"\n                            },\n                            \"response\": [\n                                {\n                                    \"id\": \"d9d7f4dc-7265-481e-883e-575880451e61\",\n                                    \"name\": \"Response OK\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/app-element/{{id}}/widgets\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"app-element\",\n                                                \"{{id}}\",\n                                                \"widgets\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"OK\",\n                                    \"code\": 200,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"id\\\": \\\"67730fa48f05e82987073fe8\\\",\\n    \\\"name\\\": \\\"asdasd\\\",\\n    \\\"type\\\": \\\"lines\\\",\\n    \\\"jurisdiction\\\": {\\n        \\\"id\\\": \\\"561e04ed6aa918910c8b4592\\\",\\n        \\\"jurisdiction_id\\\": \\\"org.alcobendas\\\",\\n        \\\"name\\\": \\\"Alcobendas\\\"\\n    },\\n    \\\"tags\\\": []\\n}\"\n                                },\n                                {\n                                    \"id\": \"4362be42-d03a-472a-bfaf-0df75944a5a3\",\n                                    \"name\": \"Error Credentials No Configuration\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/app-element/{{id}}/widgets\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"app-element\",\n                                                \"{{id}}\",\n                                                \"widgets\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Internal Server Error\",\n                                    \"code\": 500,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n    \\\"error_code\\\": 500,\\n    \\\"message\\\": \\\"widgets_credentials_no_configuration\\\"\\n}\"\n                                },\n                                {\n                                    \"id\": \"f7a35a19-af24-495b-8c8d-24d0823d3600\",\n                                    \"name\": \"Error Widget Login\",\n                                    \"originalRequest\": {\n                                        \"method\": \"GET\",\n                                        \"header\": [],\n                                        \"url\": {\n                                            \"raw\": \"{{publicBaseUrl}}/app-element/{{id}}/widgets\",\n                                            \"host\": [\n                                                \"{{publicBaseUrl}}\"\n                                            ],\n                                            \"path\": [\n                                                \"app-element\",\n                                                \"{{id}}\",\n                                                \"widgets\"\n                                            ]\n                                        }\n                                    },\n                                    \"status\": \"Unauthorized\",\n                                    \"code\": 401,\n                                    \"_postman_previewlanguage\": \"json\",\n                                    \"header\": [\n                                        {\n                                            \"key\": \"Content-Type\",\n                                            \"name\": \"Content-Type\",\n                                            \"value\": \"application/json\",\n                                            \"description\": \"\",\n                                            \"type\": \"text\"\n                                        }\n                                    ],\n                                    \"cookie\": [],\n                                    \"body\": \"{\\n  \\\"error_code\\\": 401,\\n  \\\"message\\\": \\\"widgets_error_login\\\"\\n}\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"id\": \"3b33e6e3-0f37-4105-96de-30bd69d1dc8b\"\n                }\n            ],\n            \"id\": \"f6d1bcfd-bce2-4e31-907b-b7ce7f002f9c\"\n        },\n        {\n            \"name\": \"Default\",\n            \"item\": [\n                {\n                    \"name\": \"Upload File\",\n                    \"id\": \"6a3d50cc-eb54-49a2-b474-e9dcbe2e9bc1\",\n                    \"protocolProfileBehavior\": {\n                        \"disableBodyPruning\": true\n                    },\n                    \"request\": {\n                        \"auth\": {\n                            \"type\": \"bearer\",\n                            \"bearer\": [\n                                {\n                                    \"key\": \"token\",\n                                    \"value\": \"{{token_public}}\",\n                                    \"type\": \"string\"\n                                }\n                            ]\n                        },\n                        \"method\": \"POST\",\n                        \"header\": [],\n                        \"body\": {\n                            \"mode\": \"formdata\",\n                            \"formdata\": [\n                                {\n                                    \"type\": \"file\",\n                                    \"key\": \"file\",\n                                    \"description\": \"File. [required]. Archivo que se desea subir al sistema.\",\n                                    \"value\": null\n                                },\n                                {\n                                    \"type\": \"text\",\n                                    \"key\": \"uri\",\n                                    \"value\": \"request\",\n                                    \"description\": \"String. [required]. Identificador del contexto o módulo al que se asociará el archivo.\"\n                                }\n                            ]\n                        },\n                        \"url\": {\n                            \"raw\": \"{{publicBaseUrl}}/filemanagement\",\n                            \"host\": [\n                                \"{{publicBaseUrl}}\"\n                            ],\n                            \"path\": [\n                                \"filemanagement\"\n                            ]\n                        },\n                        \"description\": \"Este endpoint permite **subir archivos dentro del sistema**, asociándolos mediante una URI, para que posteriormente puedan ser vinculados a una solicitud.\"\n                    },\n                    \"response\": [\n                        {\n                            \"id\": \"27da3510-9aea-4ab2-9cd3-1f74e1981681\",\n                            \"name\": \"Upload File OK\",\n                            \"originalRequest\": {\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"formdata\",\n                                    \"formdata\": [\n                                        {\n                                            \"type\": \"file\",\n                                            \"key\": \"file\",\n                                            \"src\": [\n                                                \"postman-cloud:///1effec76-eba3-49e0-9423-0e4d5ee93721\"\n                                            ]\n                                        },\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"uri\",\n                                            \"value\": \"request\"\n                                        }\n                                    ]\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/filemanagement\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"filemanagement\"\n                                    ]\n                                }\n                            },\n                            \"status\": \"OK\",\n                            \"code\": 200,\n                            \"_postman_previewlanguage\": \"json\",\n                            \"header\": [\n                                {\n                                    \"key\": \"Content-Type\",\n                                    \"name\": \"Content-Type\",\n                                    \"value\": \"application/json\",\n                                    \"description\": \"\",\n                                    \"type\": \"text\"\n                                }\n                            ],\n                            \"cookie\": [],\n                            \"body\": \"\\\"https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/request/69456f45dd1b16.86679270.png\\\"\"\n                        },\n                        {\n                            \"id\": \"6ba1b15e-40e0-410c-a19d-5cffe3f80f02\",\n                            \"name\": \"Upload File Invalid\",\n                            \"originalRequest\": {\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"formdata\",\n                                    \"formdata\": [\n                                        {\n                                            \"type\": \"file\",\n                                            \"key\": \"file\",\n                                            \"src\": [\n                                                \"/home/radmas/Downloads/Dailies\"\n                                            ]\n                                        },\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"uri\",\n                                            \"value\": \"request\"\n                                        }\n                                    ]\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/filemanagement\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"filemanagement\"\n                                    ]\n                                }\n                            },\n                            \"status\": \"Bad Request\",\n                            \"code\": 400,\n                            \"_postman_previewlanguage\": \"json\",\n                            \"header\": [\n                                {\n                                    \"key\": \"Content-Type\",\n                                    \"name\": \"Content-Type\",\n                                    \"value\": \"application/json\",\n                                    \"description\": \"\",\n                                    \"type\": \"text\"\n                                }\n                            ],\n                            \"cookie\": [],\n                            \"body\": \"{\\n    \\\"error_code\\\": 1130,\\n    \\\"error_msg\\\": \\\"Bad file to upload\\\"\\n}\"\n                        },\n                        {\n                            \"id\": \"7d5584fc-f450-493c-971b-5b7b3a2eb4f0\",\n                            \"name\": \"Upload File Required Parameter\",\n                            \"originalRequest\": {\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"formdata\",\n                                    \"formdata\": [\n                                        {\n                                            \"type\": \"text\",\n                                            \"key\": \"uri\",\n                                            \"value\": \"\"\n                                        }\n                                    ]\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/filemanagement\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"filemanagement\"\n                                    ]\n                                }\n                            },\n                            \"status\": \"Bad Request\",\n                            \"code\": 400,\n                            \"_postman_previewlanguage\": \"json\",\n                            \"header\": [\n                                {\n                                    \"key\": \"Content-Type\",\n                                    \"name\": \"Content-Type\",\n                                    \"value\": \"application/json\",\n                                    \"description\": \"\",\n                                    \"type\": \"text\"\n                                }\n                            ],\n                            \"cookie\": [],\n                            \"body\": \"{\\n    \\\"error\\\": {\\n        \\\"code\\\": 400,\\n        \\\"message\\\": \\\"Required Parameter file\\\"\\n    }\\n}\"\n                        },\n                        {\n                            \"id\": \"2dee3b92-f5b5-43c0-b5ee-f70f1e2d9c62\",\n                            \"name\": \"Upload Uri Required Parameter Copy\",\n                            \"originalRequest\": {\n                                \"method\": \"POST\",\n                                \"header\": [],\n                                \"body\": {\n                                    \"mode\": \"formdata\",\n                                    \"formdata\": [\n                                        {\n                                            \"type\": \"file\",\n                                            \"key\": \"file\",\n                                            \"src\": []\n                                        }\n                                    ]\n                                },\n                                \"url\": {\n                                    \"raw\": \"{{publicBaseUrl}}/filemanagement\",\n                                    \"host\": [\n                                        \"{{publicBaseUrl}}\"\n                                    ],\n                                    \"path\": [\n                                        \"filemanagement\"\n                                    ]\n                                }\n                            },\n                            \"status\": \"Bad Request\",\n                            \"code\": 400,\n                            \"_postman_previewlanguage\": \"json\",\n                            \"header\": [\n                                {\n                                    \"key\": \"Content-Type\",\n                                    \"name\": \"Content-Type\",\n                                    \"value\": \"application/json\",\n                                    \"description\": \"\",\n                                    \"type\": \"text\"\n                                }\n                            ],\n                            \"cookie\": [],\n                            \"body\": \"[\\n    {\\n        \\\"code\\\": 400,\\n        \\\"description\\\": \\\"Required Parameter uri\\\"\\n    }\\n]\"\n                        }\n                    ]\n                }\n            ],\n            \"id\": \"eef51b0c-77f8-4fb0-ae38-0c8360d42cbf\"\n        },\n        {\n            \"name\": \"Documentos\",\n            \"item\": [\n                {\n                    \"name\": \"UserDevice\",\n                    \"item\": [],\n                    \"id\": \"900bec66-f9be-459c-bc25-b47460ee9017\",\n                    \"description\": \"| **Campo** | **Tipo** | **Descripcion** |\\n| --- | --- | --- |\\n| 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 |\\n| 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) |\\n| brand | String | \\\\[required\\\\]. Valor que permite identificar la marca del dispositivo (Ej: Samsung, Huawei, etc). |\\n| device_id | String | \\\\[required\\\\]. Identificador único del dispositivo. Se obtiene a partir de las cabeceras de la petición |\\n| model | String | \\\\[required\\\\]. Permite identificar el modelo del dispositivo |\\n| os_version | String | \\\\[required\\\\]. Permite identificar la versión en uso del sistema operativo del dispositivo |\\n| 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 |\\n| type | String | \\\\[required\\\\]. Permite identificar el tipo de sistema operativo que usa el dispositivo(\\\\[Ej: Android, IOS) |\"\n                }\n            ],\n            \"id\": \"1939f763-d28b-4f10-9a8d-95670f5aecec\",\n            \"description\": \" \"\n        }\n    ],\n    \"event\": [\n        {\n            \"listen\": \"prerequest\",\n            \"script\": {\n                \"id\": \"3e2e3894-f1b6-411f-b4ce-dbc1a687b7c8\",\n                \"type\": \"text/javascript\",\n                \"packages\": {},\n                \"exec\": [\n                    \"\"\n                ]\n            }\n        },\n        {\n            \"listen\": \"test\",\n            \"script\": {\n                \"id\": \"58b034e2-f80c-4387-bfd2-fc4ff1461fb0\",\n                \"type\": \"text/javascript\",\n                \"packages\": {},\n                \"exec\": [\n                    \"\"\n                ]\n            }\n        }\n    ],\n    \"variable\": [\n        {\n            \"id\": \"0b4f1606-4883-44d9-a64d-1b4594e5260b\",\n            \"key\": \"token\",\n            \"value\": \"\",\n            \"type\": \"string\"\n        },\n        {\n            \"id\": \"c9c76838-19de-433d-a00c-61cda3bea4a5\",\n            \"key\": \"publicBaseUrl\",\n            \"value\": \"\",\n            \"type\": \"string\"\n        }\n    ]\n}"
            },
            {
              "id": "f248e0bf-f1d2-411d-a6c5-e34f3a18378f",
              "name": "Deactivated Api Docs Collections",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/collection",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "collection"
                  ]
                }
              },
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "name": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                }
              ],
              "cookie": [],
              "body": "[\n    {\n        \"code\": 400,\n        \"description\": \"This environment has deactivated the api docs\"\n    }\n]"
            },
            {
              "id": "3a69fe67-acd0-4f8b-af6c-4acad8159bcf",
              "name": "Collection Documentation File Not Available",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/collection",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "collection"
                  ]
                }
              },
              "code": 404,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "name": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                }
              ],
              "cookie": [],
              "body": "[\n    {\n        \"code\": 404,\n        \"description\": \"The API documentation file is not available\"\n    }\n]"
            }
          ]
        },
        {
          "name": "OpenApi",
          "id": "307e1ec7-f593-418d-95ef-ccdcb9119c41",
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          },
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{publicBaseUrl}}/openapi",
              "host": [
                "{{publicBaseUrl}}"
              ],
              "path": [
                "openapi"
              ]
            },
            "description": "**Description**\n\nDevuelve 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."
          },
          "response": [
            {
              "id": "dc4ad473-59b2-4414-a2f3-913831d6f337",
              "name": "Response OK OpenApi",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/openapi",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "openapi"
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "yaml",
              "header": [
                {
                  "key": "Content-Type",
                  "name": "Content-Type",
                  "value": "application/xml",
                  "description": "",
                  "type": "text"
                }
              ],
              "cookie": [],
              "body": "openapi: 3.0.0\ninfo:\n  title: Public Api\n  description: >-\n    # Descripción general\n\n\n    La API pública de MTX proporciona a los desarrolladores la capacidad de\n    integrar y utilizar las funcionalidades de nuestro servicio web dentro de\n    sus propias aplicaciones. A través de endpoints RESTful, se puede acceder a\n    diversas operaciones, desde la gestión de datos hasta la ejecución de tareas\n    especí­ficas en el entorno del servicio.\n\n\n    Esta documentación detalla el uso de cada uno de los endpoints disponibles,\n    proporcionando información sobre solicitudes y respuestas, parámetros\n    requeridos y ejemplos prácticos.\n\n\n    Para garantizar la seguridad de las solicitudes, la API utiliza **OAuth\n    2.0** como mecanismo de autenticación. Antes de realizar solicitudes a los\n    endpoints, los clientes deben autenticarse y obtener un token de acceso.\n    Asegúrate de seguir el flujo adecuado de OAuth 2.0 (por ejemplo, el flujo de\n    credenciales de cliente o de autorización) para obtener y renovar los\n    tokens.\n\n\n    Cada sección de la documentación incluye detalles sobre los métodos HTTP\n    soportados (`GET`, `POST`, `PUT`, `DELETE`) y la estructura de los datos\n    esperados, tanto en las solicitudes como en las respuestas.\n\n\n    # Configuración inicial\n\n\n    Para empezar a usar la API pública de MTX, debes **solicitar**:\n\n\n    1. Un **client_id de tipo open010_client**. Para incluir en todas las\n    peticiones.\n        \n\n    Para ello debes hacer una solicitud a radmas@radmas.com, explicando el caso\n    de uso que quieres resolver.\n\n\n    En el caso de la aplicación pública solamente se necesita el client_id ya\n    que no hace falta tener un usuario para crear avisos.\n\n\n    Por ejemplo:\n\n\n    > Solicito un client_id para el uso de la api de MTX \n      \n\n    Una vez que tengas el client_id podrás empezar a hacer uso de la API pública\n    de MTX.\n\n\n    Todas las peticiones deben adjuntar como cabecera (_header_) este client_id.\n\n\n    ``` bash\n\n    -H \"X-CLIENT-ID: YOUR_CLIENT_ID\"\n\n     ```\n\n    ## Entornos disponibles\n\n\n    MTX cuenta con diferentes entornos para garantizar la calidad del desarrollo\n    y la estabilidad del sistema en producción. Puedes acceder a los siguientes\n    entornos:\n\n\n    - Producción:\n    [https://api.mejoratuciudad.org/](https://api.mejoratuciudad.org/)\n\n\n    - Preproducción:\n    [https://api-pre.mejoratuciudad.org/](https://api-pre.mejoratuciudad.org/)\n\n\n    - Canary:\n    [https://api-canary.mejoratuciudad.org/](https://api-canary.mejoratuciudad.org/)\n\n\n    - Formación:\n    [https://api-for.mejoratuciudad.org/](https://api-for.mejoratuciudad.org/api/)\n\n\n    ## Autenticar usuario\n\n\n    ### Obtener token\n\n\n    Para obtener un Token con OAuth 2.0 puedes consultar como hacer login en el\n    `POST` [de Security/Login](#tag/Security-greater-Security/operation/login).\n\n\n    Una vez obtenido el token deberás mandarlo en las siguientes peticiones de\n    esta forma:\n\n\n    ```\n\n    Authorization: Bearer YOUR_ACCESS_TOKEN\n\n     ```\n\n    ### Ejemplo de solicitud a la API pública usando el Token\n\n\n    ``` bash\n\n    curl -X GET \\\n      /recurso \\\n      -H \"Authorization: Bearer YOUR_ACCESS_TOKEN\" \\\n      -H \"X-CLIENT-ID: YOUR_CLIENT_ID\"\n\n     ```\n\n    ## Renovar token con refresh_token\n\n\n    Cuando el `access_token` expire, se puede utilizar el `refresh_token`\n    devuelto en la respuesta para obtener un nuevo `access_token` sin necesidad\n    de volver a enviar las credenciales del usuario.\n\n\n    Puedes consultar la peción en el `POST` [de Security/Refresh\n    token](#tag/Security-greater-Security/operation/refreshToken).\n\n\n    ### Prueba de autenticación\n\n\n    Puedes comprobar si la autenticación ha ido conrrectamente haciendo la\n    siguiente petición después de haber hecho login:\n\n\n    ``` bash\n\n    curl -X GET \\\n      /check_auth\\\n      -H \"Authorization: Bearer YOUR_ACCESS_TOKEN\" \\\n      -H \"X-CLIENT-ID: YOUR_CLIENT_ID\"\n\n     ```\n\n    Si todo ha ido bien recibrás un `true` por respuesta.\n\n\n    Si no estás autenticado correctamente la respuesta será:\n\n\n    ``` json\n\n    {\n      \"message\": \"Authentication Required\"\n    }\n\n     ```\n\n    {{c360PublicLogin}}\n\n\n    # Casos de uso\n\n\n    ## Listar avisos\n\n\n    Para listar avisos de MTX, puedes utilizar el endpoint de\n    [/requests](#tag/Request-greater-Request/operation/cgetRequests). Este\n    endpoint es ideal para consultar y explorar los avisos gestionados en MTX,\n    permitiendo filtrar por categorías, ordenar según distintos criterios, y\n    limitar la cantidad de datos retornados según las necesidades de la\n    aplicación o usuario.\n\n\n    ### Ejemplo de uso\n\n\n    Obtener 30 avisos ordenados por la fecha más reciente\n\n\n    ``` bash\n\n    curl '/requests' \\\n         -H \"Authorization: Bearer YOUR_ACCESS_TOKEN\" \\\n         -H \"X-CLIENT-ID: YOUR_CLIENT_ID\" \\\n         -H 'Content-Type: application/json' \\\n         --data-raw '{\n             \"order\": \"newest_date_desc\",\n             \"page\": 1,\n             \"limit\": 30,\n             \"timezone\": \"Europe/Madrid\"\n         }'\n\n     ```\n\n    Obtener los 10 avisos creados más recientemente filtrando por 2 categorías\n\n\n    ``` bash\n\n    curl '/requests' \\\n         -H \"Authorization: Bearer YOUR_ACCESS_TOKEN\" \\\n         -H \"X-CLIENT-ID: YOUR_CLIENT_ID\" \\\n         -H 'Content-Type: application/json' \\\n         --data-raw '{\n             \"fields\": {\n                \"services\": \"591b33494e4ea840018b462c,591b33da4e4ea83a018b464f\"\n             }\n             \"order\": \"date_desc\",\n             \"page\": 1,\n             \"limit\": 10,\n             \"timezone\": \"Europe/Madrid\"\n         }'\n\n     ```\n\n    ## Crear aviso\n\n\n    La funcionalidad principal de la plataforma de MTX es crear avisos y por lo\n    tanto la API pública dispone de un\n    [endpoint](#tag/Request-greater-Request/operation/createRequest) específico.\n    Para ello será necesario obtener algunos datos como la categoría para la\n    cual la API pública ofrece un [listado de\n    categorías](#tag/Service-greater-Service/operation/listService)\n    seleccionables disponibles. Si no se dispone de todos los datos completos\n    sobre la ubicación del aviso, se pueden proporcionar una dirección o\n    coordenadas iniciales, y [seleccionar un\n    subproyecto](#tag/JurisdictionElement-greater-JurisdictionElement/operation/listJurisdictionElementsByJurisdiction)\n    que permita completar automáticamente los [datos de localización\n    ](#tag/Location-greater-Location/operation/listLocationAdditionalData)\n    necesarios.\n\n\n    En el proceso de creación del aviso, existe un campo denominado\n    `additionalData` que podría requerir información adicional obligatoria. Para\n    identificar qué datos específicos deben enviarse en este campo, se debe\n    consultar previamente la información [detallada de la\n    categoría](#tag/Service-greater-Service/operation/serviceDetail)\n    seleccionada (service). Esta información se encuentra en:\n\n\n    ```\n\n    additionalData.configurable_questions[].required\n\n     ```\n\n    Ejemplo de estructura:\n\n\n    ``` json\n\n    \"additionalData\": {\n      \"requiredVariables\": [],\n      \"configurable_questions\": [\n        {\n          \"editable\": true,\n          \"hidden_in_detail\": false,\n          \"hidden_in_form\": false,\n          \"hidden_in_open010_detail\": false,\n          \"hidden_in_open010_form\": false,\n          \"question\": {},\n          \"required\": false\n        }\n      ]\n    }\n\n     ```\n\n    ### Ejemplo de uso\n\n\n    Crear un aviso con datos de localización\n\n\n    ``` bash\n\n    curl '/requests?jurisdiction_id=org.radmas&return_data=false' \\\n              -H 'Content-Type: application/json' \\\n              -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \\\n              -H 'X-CLIENT-ID: YOUR_CLIENT_ID' \\\n              --data-raw '{\n                   \"service_id\":\"591b33494e4ea840018b462c\",\n                   \"description\":\"prueba\",\n                   \"position\":{\n                      \"lat\":40.368926273981,\n                      \"lng\":-3.742779151412\n                   },\n                   \"address_string\":\"Calle Aguacate, 41\",\n                   \"internal\":true,\n                   \"jurisdiction_element\":\"5e5a3f17179796a7cbb93934\"\n                }'\n\n     ```\n  version: 1.0.0\nservers:\n  - url: https://api-canary.mejoratuciudad.org\ncomponents:\n  securitySchemes:\n    bearerAuth:\n      type: http\n      scheme: bearer\n    noauthAuth:\n      type: http\n      scheme: noauth\ntags:\n  - name: AdditionalData\n    description: >-\n      Representan información complementaria del ticket, relevante según el\n      contexto.\n  - name: AdditionalData > AdditionalData\n    description: >-\n      Representan información complementaria del ticket, relevante según el\n      contexto.\n  - name: AppConfiguration\n  - name: AppConfiguration > AppConfiguration\n  - name: Application\n  - name: Application > Application\n  - name: Channel\n  - name: Channel > Channel\n  - name: Jurisdiction\n    description: >-\n      El presente apartado permite la gestión de los proyectos que son la\n      columna vertebral del sistema y en donde se clasifican los grupos,\n      servicios, tipologias, etc. Usualmente son la representación de ciudades\n      aunque también pueden incluirse edificios según sea el caso.\n  - name: Jurisdiction > Jurisdiction\n    description: ' '\n  - name: Jurisdiction > JurisdictionOpen010User\n  - name: JurisdictionElement\n  - name: LegalTerms\n    description: >-\n      Conjunto de endpoints que permiten observar los términos legales del\n      entorno según el tipo de cliente (api pública o privada).\n  - name: LegalTerms > LegalTerms\n  - name: Location\n    description: ' '\n  - name: Location > Location\n    description: ' '\n  - name: Management\n  - name: Management > UpdatedVersion\n  - name: MapLayer\n  - name: MapLayer > MapLayer\n  - name: Notification\n    description: ' '\n  - name: Notification > Unsubscribe\n    description: ' '\n  - name: POI\n  - name: POI > PoiRoute\n  - name: PoiExtraData\n    description: ' '\n  - name: PoiExtraData > PoiExtraData\n    description: ' '\n  - name: Release\n  - name: Release > Release\n  - name: Request\n    description: >-\n      Un ticket en es una solicitud digital para gestionar incidencias, tareas o\n      requerimientos. Incluye información clave como descripción, prioridad,\n      estado y asignación.\n  - name: Request > Request Complaint\n  - name: Request > Request\n    description: ' '\n  - name: Request > Request Evaluation\n  - name: Request > Request File\n    description: ' '\n  - name: Request > Request Reiteration\n  - name: RequestComment\n  - name: RequestComment > Comment\n  - name: SearchEngine\n  - name: SearchEngine > SearchEngine\n  - name: Security\n    description: >-\n      El apartado de seguridad incluye endpoints para gestionar el acceso y la\n      sesión de usuarios, como login, logout, registro y restablecimiento de\n      contraseña, garantizando control y seguridad en la plataforma\n  - name: Security > Security\n    description: ' '\n  - name: Service\n    description: >-\n      Las categorías de servicio permiten la creación de tickets para órdenes de\n      trabajo o solicitudes.\n  - name: Service > Service\n    description: ' '\n  - name: SocialMedia\n  - name: SocialMedia > SocialMedia\n  - name: Typology\n    description: ' '\n  - name: Typology > Typology\n    description: ' '\n  - name: User\n    description: >-\n      Los usuarios externos de MTX interactúan mediante aplicaciones para crear\n      y consultar el avance de sus solicitudes, recibir información oficial y\n      acceder a servicios específicos del proyecto.\n  - name: User > User\n    description: ' '\n  - name: User > User Custom Configuration\n    description: ' '\n  - name: User > User Public\n  - name: Widget\n  - name: Widget > Widget\n  - name: Default\n  - name: Documentos\n    description: ' '\n  - name: Documentos > UserDevice\n    description: >-\n      | **Campo** | **Tipo** | **Descripcion** |\n\n      | --- | --- | --- |\n\n      | app_key | Int | \\[required\\]. Permite identificar la validez de la\n      solicitud controlando que el dispositivo que cierra sesión se encuentre\n      dentro de los autorizados |\n\n      | app_version | String | \\[required\\]. Permite verificar la versión de la\n      aplicación de la plataforma que se encuentra en uso en el dispositivo\n      (permite verificación de actualizaciones si están disponibles) |\n\n      | brand | String | \\[required\\]. Valor que permite identificar la marca\n      del dispositivo (Ej: Samsung, Huawei, etc). |\n\n      | device_id | String | \\[required\\]. Identificador único del dispositivo.\n      Se obtiene a partir de las cabeceras de la petición |\n\n      | model | String | \\[required\\]. Permite identificar el modelo del\n      dispositivo |\n\n      | os_version | String | \\[required\\]. Permite identificar la versión en\n      uso del sistema operativo del dispositivo |\n\n      | registration_id | String | \\[required\\]. Identificador único que se\n      utiliza principalmente en sistemas de mensajería y notificaciones push.\n      Este id es esencial para identificar y gestionar dispositivos o instancias\n      de aplicaciones específicas que están registradas para recibir\n      notificaciones |\n\n      | type | String | \\[required\\]. Permite identificar el tipo de sistema\n      operativo que usa el dispositivo(\\[Ej: Android, IOS) |\npaths:\n  /question/{{questionId}}/answers:\n    get:\n      tags:\n        - AdditionalData > AdditionalData\n      summary: List MassiveSingleListQuestion"
            },
            {
              "id": "043a604c-37fc-4118-9104-95f9d8485602",
              "name": "Deactivated Api Docs OpenApi",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/openapi",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "openapi"
                  ]
                }
              },
              "status": "Bad Request",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "name": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                }
              ],
              "cookie": [],
              "body": "[\n    {\n        \"code\": 400,\n        \"description\": \"This environment has deactivated the api docs\"\n    }\n]"
            },
            {
              "id": "f3f1786a-62fd-45c2-8d85-91d857fa6f2f",
              "name": "OpenApi file not found",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/openapi",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    "openapi"
                  ]
                }
              },
              "status": "Not Found",
              "code": 404,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "name": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                }
              ],
              "cookie": [],
              "body": "[\n    {\n        \"code\": 404,\n        \"description\": \"OpenAPI document not found\"\n    }\n]"
            }
          ]
        },
        {
          "name": "view of the documentation",
          "id": "72780836-cff3-4035-89c3-eb32da2678a8",
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          },
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{publicBaseUrl}}/",
              "host": [
                "{{publicBaseUrl}}"
              ],
              "path": []
            },
            "description": "**Descripción**\n\nPá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."
          },
          "response": [
            {
              "id": "85a72889-7271-4a15-82fc-245424442c1f",
              "name": "Response OK view of the documentation",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{publicBaseUrl}}/",
                  "host": [
                    "{{publicBaseUrl}}"
                  ],
                  "path": [
                    ""
                  ]
                }
              },
              "_postman_previewlanguage": "html",
              "header": [
                {
                  "key": "Content-Type",
                  "name": "Content-Type",
                  "value": "text/html",
                  "description": "",
                  "type": "text"
                }
              ],
              "cookie": [],
              "body": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE html>\n<html lang=\"es\">\n    <head>\n        <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n        <title>MTX</title>\n        <meta name=\"description\" content=\"\">\n        <meta name=\"keywords\" content=\"\">\n        <meta name=\"title\" content=\"MTX - Panel de Gestión\" />\n        <meta name=\"author\" content=\"Radmas\" />\n        <meta name=\"language\" content=\"es\" />\n        <meta name=\"robots\" content=\"index, follow\" />\n        <meta name=\"viewport\" content=\"width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no\" />\n        <link rel=\"shortcut icon\" href=\"//mtc.vdeveloper.lan/favicons/mtc/favicon.ico?1.0.10v\" />\n        <link rel=\"stylesheet\" href=\"//mtc.vdeveloper.lan/build/443.353e478c.css?1.0.10v\">\n        <link rel=\"stylesheet\" href=\"//mtc.vdeveloper.lan/build/app.a5a718fe.css?1.0.10v\">\n        <style>\n        @font-face {\n            font-family: \"request-categories\";\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa66968921e083124249.eot\"),\n                url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa66968921e083124249.eot#iefix\") format(\"embedded-opentype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa6696d987a456323966.svg\") format(\"svg\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa669711b11498827233.ttf\") format(\"truetype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa66972f052118457434.woff\") format(\"woff\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa6696e366e709372675.eot\"),\n                url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa6696e366e709372675.eot#iefix\") format(\"embedded-opentype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa669731cd8372677158.svg\") format(\"svg\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa6697467d0775852826.ttf\") format(\"truetype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa669761563178439487.woff\") format(\"woff\");\n            font-weight: normal;\n            font-style: normal;\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-0:before {\n            font-family: 'request-categories';\n            content: '\\e800'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-1:before {\n            font-family: 'request-categories';\n            content: '\\e801'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-2:before {\n            font-family: 'request-categories';\n            content: '\\e802'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-3:before {\n            font-family: 'request-categories';\n            content: '\\e803'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-4:before {\n            font-family: 'request-categories';\n            content: '\\e804'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-5:before {\n            font-family: 'request-categories';\n            content: '\\e805'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-6:before {\n            font-family: 'request-categories';\n            content: '\\e806'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-7:before {\n            font-family: 'request-categories';\n            content: '\\e807'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-8:before {\n            font-family: 'request-categories';\n            content: '\\e808'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-9:before {\n            font-family: 'request-categories';\n            content: '\\e809'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-10:before {\n            font-family: 'request-categories';\n            content: '\\e80a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-11:before {\n            font-family: 'request-categories';\n            content: '\\e80b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-12:before {\n            font-family: 'request-categories';\n            content: '\\e80c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-13:before {\n            font-family: 'request-categories';\n            content: '\\e80d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-14:before {\n            font-family: 'request-categories';\n            content: '\\e80e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-15:before {\n            font-family: 'request-categories';\n            content: '\\e80f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-16:before {\n            font-family: 'request-categories';\n            content: '\\e810'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-17:before {\n            font-family: 'request-categories';\n            content: '\\e811'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-18:before {\n            font-family: 'request-categories';\n            content: '\\e812'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-19:before {\n            font-family: 'request-categories';\n            content: '\\e813'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-20:before {\n            font-family: 'request-categories';\n            content: '\\e814'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-21:before {\n            font-family: 'request-categories';\n            content: '\\e815'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-22:before {\n            font-family: 'request-categories';\n            content: '\\e816'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-23:before {\n            font-family: 'request-categories';\n            content: '\\e817'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-24:before {\n            font-family: 'request-categories';\n            content: '\\e818'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-25:before {\n            font-family: 'request-categories';\n            content: '\\e819'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-26:before {\n            font-family: 'request-categories';\n            content: '\\e81a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-27:before {\n            font-family: 'request-categories';\n            content: '\\e81b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-28:before {\n            font-family: 'request-categories';\n            content: '\\e81c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-29:before {\n            font-family: 'request-categories';\n            content: '\\e81d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-30:before {\n            font-family: 'request-categories';\n            content: '\\e81e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-31:before {\n            font-family: 'request-categories';\n            content: '\\e81f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-32:before {\n            font-family: 'request-categories';\n            content: '\\e820'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-33:before {\n            font-family: 'request-categories';\n            content: '\\e821'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-34:before {\n            font-family: 'request-categories';\n            content: '\\e822'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-35:before {\n            font-family: 'request-categories';\n            content: '\\e823'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-36:before {\n            font-family: 'request-categories';\n            content: '\\e824'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-37:before {\n            font-family: 'request-categories';\n            content: '\\e825'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-38:before {\n            font-family: 'request-categories';\n            content: '\\e826'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-39:before {\n            font-family: 'request-categories';\n            content: '\\e827'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-40:before {\n            font-family: 'request-categories';\n            content: '\\e828'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-41:before {\n            font-family: 'request-categories';\n            content: '\\e829'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-42:before {\n            font-family: 'request-categories';\n            content: '\\e82a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-43:before {\n            font-family: 'request-categories';\n            content: '\\e82b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-44:before {\n            font-family: 'request-categories';\n            content: '\\e82c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-45:before {\n            font-family: 'request-categories';\n            content: '\\e82d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-46:before {\n            font-family: 'request-categories';\n            content: '\\e82e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-47:before {\n            font-family: 'request-categories';\n            content: '\\e82f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-48:before {\n            font-family: 'request-categories';\n            content: '\\e830'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-49:before {\n            font-family: 'request-categories';\n            content: '\\e831'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-50:before {\n            font-family: 'request-categories';\n            content: '\\e832'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-51:before {\n            font-family: 'request-categories';\n            content: '\\e833'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-52:before {\n            font-family: 'request-categories';\n            content: '\\e834'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-53:before {\n            font-family: 'request-categories';\n            content: '\\e835'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-54:before {\n            font-family: 'request-categories';\n            content: '\\e836'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-55:before {\n            font-family: 'request-categories';\n            content: '\\e837'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-56:before {\n            font-family: 'request-categories';\n            content: '\\e838'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-57:before {\n            font-family: 'request-categories';\n            content: '\\e839'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-58:before {\n            font-family: 'request-categories';\n            content: '\\e83a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-59:before {\n            font-family: 'request-categories';\n            content: '\\e83b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-60:before {\n            font-family: 'request-categories';\n            content: '\\e83c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-61:before {\n            font-family: 'request-categories';\n            content: '\\e83d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-62:before {\n            font-family: 'request-categories';\n            content: '\\e83e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-63:before {\n            font-family: 'request-categories';\n            content: '\\e83f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-64:before {\n            font-family: 'request-categories';\n            content: '\\e840'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-65:before {\n            font-family: 'request-categories';\n            content: '\\e841'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-66:before {\n            font-family: 'request-categories';\n            content: '\\e842'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-67:before {\n            font-family: 'request-categories';\n            content: '\\e843'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-68:before {\n            font-family: 'request-categories';\n            content: '\\e844'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-69:before {\n            font-family: 'request-categories';\n            content: '\\e845'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-70:before {\n            font-family: 'request-categories';\n            content: '\\e846'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-71:before {\n            font-family: 'request-categories';\n            content: '\\e847'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-72:before {\n            font-family: 'request-categories';\n            content: '\\e848'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-73:before {\n            font-family: 'request-categories';\n            content: '\\e849'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-74:before {\n            font-family: 'request-categories';\n            content: '\\e84a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-75:before {\n            font-family: 'request-categories';\n            content: '\\e84b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-76:before {\n            font-family: 'request-categories';\n            content: '\\e84c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-77:before {\n            font-family: 'request-categories';\n            content: '\\e84d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-78:before {\n            font-family: 'request-categories';\n            content: '\\e84e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-79:before {\n            font-family: 'request-categories';\n            content: '\\e84f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-80:before {\n            font-family: 'request-categories';\n            content: '\\e850'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-81:before {\n            font-family: 'request-categories';\n            content: '\\e851'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-82:before {\n            font-family: 'request-categories';\n            content: '\\e852'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-83:before {\n            font-family: 'request-categories';\n            content: '\\e853'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-84:before {\n            font-family: 'request-categories';\n            content: '\\e854'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-85:before {\n            font-family: 'request-categories';\n            content: '\\e855'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-86:before {\n            font-family: 'request-categories';\n            content: '\\e856'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-87:before {\n            font-family: 'request-categories';\n            content: '\\e857'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-88:before {\n            font-family: 'request-categories';\n            content: '\\e858'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-89:before {\n            font-family: 'request-categories';\n            content: '\\e859'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-90:before {\n            font-family: 'request-categories';\n            content: '\\e85a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-91:before {\n            font-family: 'request-categories';\n            content: '\\e85b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-92:before {\n            font-family: 'request-categories';\n            content: '\\e85c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-93:before {\n            font-family: 'request-categories';\n            content: '\\e85d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-94:before {\n            font-family: 'request-categories';\n            content: '\\e85e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-95:before {\n            font-family: 'request-categories';\n            content: '\\e85f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-96:before {\n            font-family: 'request-categories';\n            content: '\\e860'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-97:before {\n            font-family: 'request-categories';\n            content: '\\e861'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-98:before {\n            font-family: 'request-categories';\n            content: '\\e862'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-99:before {\n            font-family: 'request-categories';\n            content: '\\e863'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-100:before {\n            font-family: 'request-categories';\n            content: '\\e864'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-101:before {\n            font-family: 'request-categories';\n            content: '\\e865'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-102:before {\n            font-family: 'request-categories';\n            content: '\\e866'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-103:before {\n            font-family: 'request-categories';\n            content: '\\e867'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-104:before {\n            font-family: 'request-categories';\n            content: '\\e868'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-105:before {\n            font-family: 'request-categories';\n            content: '\\e869'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-106:before {\n            font-family: 'request-categories';\n            content: '\\e86a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-107:before {\n            font-family: 'request-categories';\n            content: '\\e86b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-108:before {\n            font-family: 'request-categories';\n            content: '\\e86c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-109:before {\n            font-family: 'request-categories';\n            content: '\\e86d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-110:before {\n            font-family: 'request-categories';\n            content: '\\e86e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-111:before {\n            font-family: 'request-categories';\n            content: '\\e86f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-112:before {\n            font-family: 'request-categories';\n            content: '\\e870'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-113:before {\n            font-family: 'request-categories';\n            content: '\\e871'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-114:before {\n            font-family: 'request-categories';\n            content: '\\e872'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-115:before {\n            font-family: 'request-categories';\n            content: '\\e873'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-116:before {\n            font-family: 'request-categories';\n            content: '\\e874'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-117:before {\n            font-family: 'request-categories';\n            content: '\\e875'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-118:before {\n            font-family: 'request-categories';\n            content: '\\e876'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-119:before {\n            font-family: 'request-categories';\n            content: '\\e877'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-120:before {\n            font-family: 'request-categories';\n            content: '\\e878'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-121:before {\n            font-family: 'request-categories';\n            content: '\\e879'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-122:before {\n            font-family: 'request-categories';\n            content: '\\e87a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-123:before {\n            font-family: 'request-categories';\n            content: '\\e87b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-124:before {\n            font-family: 'request-categories';\n            content: '\\e87c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-125:before {\n            font-family: 'request-categories';\n            content: '\\e87d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-126:before {\n            font-family: 'request-categories';\n            content: '\\e87e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-127:before {\n            font-family: 'request-categories';\n            content: '\\e87f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-128:before {\n            font-family: 'request-categories';\n            content: '\\e880'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-129:before {\n            font-family: 'request-categories';\n            content: '\\e881'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-130:before {\n            font-family: 'request-categories';\n            content: '\\e882'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-131:before {\n            font-family: 'request-categories';\n            content: '\\e883'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-132:before {\n            font-family: 'request-categories';\n            content: '\\e884'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-133:before {\n            font-family: 'request-categories';\n            content: '\\e885'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-134:before {\n            font-family: 'request-categories';\n            content: '\\e886'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-135:before {\n            font-family: 'request-categories';\n            content: '\\e887'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-136:before {\n            font-family: 'request-categories';\n            content: '\\e888'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-137:before {\n            font-family: 'request-categories';\n            content: '\\e889'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-138:before {\n            font-family: 'request-categories';\n            content: '\\e88a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-139:before {\n            font-family: 'request-categories';\n            content: '\\e88b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-140:before {\n            font-family: 'request-categories';\n            content: '\\e88c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-141:before {\n            font-family: 'request-categories';\n            content: '\\e88d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-142:before {\n            font-family: 'request-categories';\n            content: '\\e88e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-143:before {\n            font-family: 'request-categories';\n            content: '\\e88f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-144:before {\n            font-family: 'request-categories';\n            content: '\\e890'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-145:before {\n            font-family: 'request-categories';\n            content: '\\e891'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-146:before {\n            font-family: 'request-categories';\n            content: '\\e892'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-147:before {\n            font-family: 'request-categories';\n            content: '\\e893'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-148:before {\n            font-family: 'request-categories';\n            content: '\\e894'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-149:before {\n            font-family: 'request-categories';\n            content: '\\e895'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-150:before {\n            font-family: 'request-categories';\n            content: '\\e896'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-151:before {\n            font-family: 'request-categories';\n            content: '\\e897'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-152:before {\n            font-family: 'request-categories';\n            content: '\\e898'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-153:before {\n            font-family: 'request-categories';\n            content: '\\e899'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-154:before {\n            font-family: 'request-categories';\n            content: '\\e89a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-155:before {\n            font-family: 'request-categories';\n            content: '\\e89b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-156:before {\n            font-family: 'request-categories';\n            content: '\\e89c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-157:before {\n            font-family: 'request-categories';\n            content: '\\e89d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-158:before {\n            font-family: 'request-categories';\n            content: '\\e89e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-159:before {\n            font-family: 'request-categories';\n            content: '\\e89f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-160:before {\n            font-family: 'request-categories';\n            content: '\\e8a0'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-161:before {\n            font-family: 'request-categories';\n            content: '\\e8a1'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-162:before {\n            font-family: 'request-categories';\n            content: '\\e8a2'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-163:before {\n            font-family: 'request-categories';\n            content: '\\e8a3'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-164:before {\n            font-family: 'request-categories';\n            content: '\\e8a4'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-165:before {\n            font-family: 'request-categories';\n            content: '\\e8a5'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-166:before {\n            font-family: 'request-categories';\n            content: '\\e8a6'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-167:before {\n            font-family: 'request-categories';\n            content: '\\e8a7'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-168:before {\n            font-family: 'request-categories';\n            content: '\\e8a8'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-169:before {\n            font-family: 'request-categories';\n            content: '\\e8a9'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-170:before {\n            font-family: 'request-categories';\n            content: '\\e8aa'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-171:before {\n            font-family: 'request-categories';\n            content: '\\e8ab'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-172:before {\n            font-family: 'request-categories';\n            content: '\\e8ac'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-173:before {\n            font-family: 'request-categories';\n            content: '\\e8ad'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-174:before {\n            font-family: 'request-categories';\n            content: '\\e8ae'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-175:before {\n            font-family: 'request-categories';\n            content: '\\e8af'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-176:before {\n            font-family: 'request-categories';\n            content: '\\e8b0'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-177:before {\n            font-family: 'request-categories';\n            content: '\\e8b1'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-178:before {\n            font-family: 'request-categories';\n            content: '\\e8b2'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-179:before {\n            font-family: 'request-categories';\n            content: '\\e8b3'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-180:before {\n            font-family: 'request-categories';\n            content: '\\e8b4'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-181:before {\n            font-family: 'request-categories';\n            content: '\\e8b5'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-182:before {\n            font-family: 'request-categories';\n            content: '\\e8b6'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-183:before {\n            font-family: 'request-categories';\n            content: '\\e8b7'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-184:before {\n            font-family: 'request-categories';\n            content: '\\e8b8'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-185:before {\n            font-family: 'request-categories';\n            content: '\\e8b9'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-186:before {\n            font-family: 'request-categories';\n            content: '\\e8ba'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-187:before {\n            font-family: 'request-categories';\n            content: '\\e8bb'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-188:before {\n            font-family: 'request-categories';\n            content: '\\e8bc'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-189:before {\n            font-family: 'request-categories';\n            content: '\\e8bd'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-190:before {\n            font-family: 'request-categories';\n            content: '\\e8be'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-191:before {\n            font-family: 'request-categories';\n            content: '\\e8bf'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-192:before {\n            font-family: 'request-categories';\n            content: '\\e8c0'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-193:before {\n            font-family: 'request-categories';\n            content: '\\e8c1'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-194:before {\n            font-family: 'request-categories';\n            content: '\\e8c2'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-195:before {\n            font-family: 'request-categories';\n            content: '\\e8c3'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-196:before {\n            font-family: 'request-categories';\n            content: '\\e8c4'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-197:before {\n            font-family: 'request-categories';\n            content: '\\e8c5'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-198:before {\n            font-family: 'request-categories';\n            content: '\\e8c6'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-199:before {\n            font-family: 'request-categories';\n            content: '\\e8c7'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-200:before {\n            font-family: 'request-categories';\n            content: '\\e8c8'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-201:before {\n            font-family: 'request-categories';\n            content: '\\e8c9'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-202:before {\n            font-family: 'request-categories';\n            content: '\\e8ca'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-203:before {\n            font-family: 'request-categories';\n            content: '\\e8cb'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-204:before {\n            font-family: 'request-categories';\n            content: '\\e8cc'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-205:before {\n            font-family: 'request-categories';\n            content: '\\e8cd'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-206:before {\n            font-family: 'request-categories';\n            content: '\\e8ce'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-207:before {\n            font-family: 'request-categories';\n            content: '\\e8cf'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-208:before {\n            font-family: 'request-categories';\n            content: '\\e8d0'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-209:before {\n            font-family: 'request-categories';\n            content: '\\e8d1'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-210:before {\n            font-family: 'request-categories';\n            content: '\\e8d2'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-211:before {\n            font-family: 'request-categories';\n            content: '\\e8d3'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-212:before {\n            font-family: 'request-categories';\n            content: '\\e8d4'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-213:before {\n            font-family: 'request-categories';\n            content: '\\e8d5'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-214:before {\n            font-family: 'request-categories';\n            content: '\\e8d6'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-215:before {\n            font-family: 'request-categories';\n            content: '\\e8d7'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-216:before {\n            font-family: 'request-categories';\n            content: '\\e8d8'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-217:before {\n            font-family: 'request-categories';\n            content: '\\e8d9'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-218:before {\n            font-family: 'request-categories';\n            content: '\\e8da'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-219:before {\n            font-family: 'request-categories';\n            content: '\\e8db'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-220:before {\n            font-family: 'request-categories';\n            content: '\\e8dc'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-221:before {\n            font-family: 'request-categories';\n            content: '\\e8dd'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-222:before {\n            font-family: 'request-categories';\n            content: '\\e8de'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-223:before {\n            font-family: 'request-categories';\n            content: '\\e8df'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-224:before {\n            font-family: 'request-categories';\n            content: '\\e8e0'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-225:before {\n            font-family: 'request-categories';\n            content: '\\e8e1'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-226:before {\n            font-family: 'request-categories';\n            content: '\\e8e2'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-227:before {\n            font-family: 'request-categories';\n            content: '\\e8e3'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-228:before {\n            font-family: 'request-categories';\n            content: '\\e8e4'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-229:before {\n            font-family: 'request-categories';\n            content: '\\e8e5'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-230:before {\n            font-family: 'request-categories';\n            content: '\\e8e6'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-231:before {\n            font-family: 'request-categories';\n            content: '\\e8e7'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-232:before {\n            font-family: 'request-categories';\n            content: '\\e8e8'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-233:before {\n            font-family: 'request-categories';\n            content: '\\e8e9'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-234:before {\n            font-family: 'request-categories';\n            content: '\\e8ea'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-235:before {\n            font-family: 'request-categories';\n            content: '\\e8eb'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-236:before {\n            font-family: 'request-categories';\n            content: '\\e8ec'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-237:before {\n            font-family: 'request-categories';\n            content: '\\e8ed'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-238:before {\n            font-family: 'request-categories';\n            content: '\\e8ee'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-239:before {\n            font-family: 'request-categories';\n            content: '\\e8ef'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-240:before {\n            font-family: 'request-categories';\n            content: '\\e8f0'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-241:before {\n            font-family: 'request-categories';\n            content: '\\e8f1'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-242:before {\n            font-family: 'request-categories';\n            content: '\\e8f2'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-243:before {\n            font-family: 'request-categories';\n            content: '\\e8f3'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-244:before {\n            font-family: 'request-categories';\n            content: '\\e8f4'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-245:before {\n            font-family: 'request-categories';\n            content: '\\e8f5'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-246:before {\n            font-family: 'request-categories';\n            content: '\\e8f6'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-247:before {\n            font-family: 'request-categories';\n            content: '\\e8f7'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-248:before {\n            font-family: 'request-categories';\n            content: '\\e8f8'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-249:before {\n            font-family: 'request-categories';\n            content: '\\e8f9'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-250:before {\n            font-family: 'request-categories';\n            content: '\\e8fa'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-251:before {\n            font-family: 'request-categories';\n            content: '\\e8fb'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-252:before {\n            font-family: 'request-categories';\n            content: '\\e8fc'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-253:before {\n            font-family: 'request-categories';\n            content: '\\e8fd'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-254:before {\n            font-family: 'request-categories';\n            content: '\\e8fe'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-255:before {\n            font-family: 'request-categories';\n            content: '\\e8ff'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-256:before {\n            font-family: 'request-categories';\n            content: '\\e900'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-257:before {\n            font-family: 'request-categories';\n            content: '\\e901'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-258:before {\n            font-family: 'request-categories';\n            content: '\\e902'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-259:before {\n            font-family: 'request-categories';\n            content: '\\e903'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-260:before {\n            font-family: 'request-categories';\n            content: '\\e904'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-261:before {\n            font-family: 'request-categories';\n            content: '\\e905'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-262:before {\n            font-family: 'request-categories';\n            content: '\\e906'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-263:before {\n            font-family: 'request-categories';\n            content: '\\e907'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-264:before {\n            font-family: 'request-categories';\n            content: '\\e908'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-265:before {\n            font-family: 'request-categories';\n            content: '\\e909'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-266:before {\n            font-family: 'request-categories';\n            content: '\\e90a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-267:before {\n            font-family: 'request-categories';\n            content: '\\e90b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-268:before {\n            font-family: 'request-categories';\n            content: '\\e90c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-269:before {\n            font-family: 'request-categories';\n            content: '\\e90d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-270:before {\n            font-family: 'request-categories';\n            content: '\\e90e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-271:before {\n            font-family: 'request-categories';\n            content: '\\e90f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-272:before {\n            font-family: 'request-categories';\n            content: '\\e910'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-273:before {\n            font-family: 'request-categories';\n            content: '\\e911'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-274:before {\n            font-family: 'request-categories';\n            content: '\\e912'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-275:before {\n            font-family: 'request-categories';\n            content: '\\e913'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-276:before {\n            font-family: 'request-categories';\n            content: '\\e914'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-277:before {\n            font-family: 'request-categories';\n            content: '\\e915'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-278:before {\n            font-family: 'request-categories';\n            content: '\\e916'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-279:before {\n            font-family: 'request-categories';\n            content: '\\e917'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-280:before {\n            font-family: 'request-categories';\n            content: '\\e918'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-281:before {\n            font-family: 'request-categories';\n            content: '\\e919'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-282:before {\n            font-family: 'request-categories';\n            content: '\\e91a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-283:before {\n            font-family: 'request-categories';\n            content: '\\e91b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-284:before {\n            font-family: 'request-categories';\n            content: '\\e91c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-285:before {\n            font-family: 'request-categories';\n            content: '\\e91d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-286:before {\n            font-family: 'request-categories';\n            content: '\\e91e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-287:before {\n            font-family: 'request-categories';\n            content: '\\e91f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-288:before {\n            font-family: 'request-categories';\n            content: '\\e920'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-289:before {\n            font-family: 'request-categories';\n            content: '\\e921'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-290:before {\n            font-family: 'request-categories';\n            content: '\\e922'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-291:before {\n            font-family: 'request-categories';\n            content: '\\e923'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-292:before {\n            font-family: 'request-categories';\n            content: '\\e924'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-293:before {\n            font-family: 'request-categories';\n            content: '\\e925'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-294:before {\n            font-family: 'request-categories';\n            content: '\\e926'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-295:before {\n            font-family: 'request-categories';\n            content: '\\e927'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-296:before {\n            font-family: 'request-categories';\n            content: '\\e928'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-297:before {\n            font-family: 'request-categories';\n            content: '\\e929'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-298:before {\n            font-family: 'request-categories';\n            content: '\\e92a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-299:before {\n            font-family: 'request-categories';\n            content: '\\e92b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-300:before {\n            font-family: 'request-categories';\n            content: '\\e92c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-301:before {\n            font-family: 'request-categories';\n            content: '\\e92d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-302:before {\n            font-family: 'request-categories';\n            content: '\\e92e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-303:before {\n            font-family: 'request-categories';\n            content: '\\e92f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-304:before {\n            font-family: 'request-categories';\n            content: '\\e930'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-305:before {\n            font-family: 'request-categories';\n            content: '\\e931'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-306:before {\n            font-family: 'request-categories';\n            content: '\\e932'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-307:before {\n            font-family: 'request-categories';\n            content: '\\e933'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-308:before {\n            font-family: 'request-categories';\n            content: '\\e934'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-309:before {\n            font-family: 'request-categories';\n            content: '\\e935'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-310:before {\n            font-family: 'request-categories';\n            content: '\\e936'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-311:before {\n            font-family: 'request-categories';\n            content: '\\e937'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-312:before {\n            font-family: 'request-categories';\n            content: '\\e938'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-313:before {\n            font-family: 'request-categories';\n            content: '\\e939'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-314:before {\n            font-family: 'request-categories';\n            content: '\\e93a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-315:before {\n            font-family: 'request-categories';\n            content: '\\e93b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-316:before {\n            font-family: 'request-categories';\n            content: '\\e93c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-317:before {\n            font-family: 'request-categories';\n            content: '\\e93d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-318:before {\n            font-family: 'request-categories';\n            content: '\\e93e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-319:before {\n            font-family: 'request-categories';\n            content: '\\e93f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-320:before {\n            font-family: 'request-categories';\n            content: '\\e940'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-321:before {\n            font-family: 'request-categories';\n            content: '\\e941'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-322:before {\n            font-family: 'request-categories';\n            content: '\\e942'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-323:before {\n            font-family: 'request-categories';\n            content: '\\e943'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-324:before {\n            font-family: 'request-categories';\n            content: '\\e944'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-325:before {\n            font-family: 'request-categories';\n            content: '\\e945'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-326:before {\n            font-family: 'request-categories';\n            content: '\\e946'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-327:before {\n            font-family: 'request-categories';\n            content: '\\e947'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-328:before {\n            font-family: 'request-categories';\n            content: '\\e948'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-329:before {\n            font-family: 'request-categories';\n            content: '\\e949'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-330:before {\n            font-family: 'request-categories';\n            content: '\\e94a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-331:before {\n            font-family: 'request-categories';\n            content: '\\e94b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-332:before {\n            font-family: 'request-categories';\n            content: '\\e94c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-333:before {\n            font-family: 'request-categories';\n            content: '\\e94d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-334:before {\n            font-family: 'request-categories';\n            content: '\\e94e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-335:before {\n            font-family: 'request-categories';\n            content: '\\e94f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-336:before {\n            font-family: 'request-categories';\n            content: '\\e950'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-337:before {\n            font-family: 'request-categories';\n            content: '\\e951'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-338:before {\n            font-family: 'request-categories';\n            content: '\\e952'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-339:before {\n            font-family: 'request-categories';\n            content: '\\e953'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-340:before {\n            font-family: 'request-categories';\n            content: '\\e954'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-341:before {\n            font-family: 'request-categories';\n            content: '\\e955'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-342:before {\n            font-family: 'request-categories';\n            content: '\\e956'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-343:before {\n            font-family: 'request-categories';\n            content: '\\e957'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-344:before {\n            font-family: 'request-categories';\n            content: '\\e958'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-345:before {\n            font-family: 'request-categories';\n            content: '\\e959'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-346:before {\n            font-family: 'request-categories';\n            content: '\\e95a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-347:before {\n            font-family: 'request-categories';\n            content: '\\e95b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-348:before {\n            font-family: 'request-categories';\n            content: '\\e95c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-349:before {\n            font-family: 'request-categories';\n            content: '\\e95d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-350:before {\n            font-family: 'request-categories';\n            content: '\\e95e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-351:before {\n            font-family: 'request-categories';\n            content: '\\e95f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-352:before {\n            font-family: 'request-categories';\n            content: '\\e960'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-353:before {\n            font-family: 'request-categories';\n            content: '\\e961'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-354:before {\n            font-family: 'request-categories';\n            content: '\\e962'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-355:before {\n            font-family: 'request-categories';\n            content: '\\e963'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-356:before {\n            font-family: 'request-categories';\n            content: '\\e964'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-357:before {\n            font-family: 'request-categories';\n            content: '\\e965'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-358:before {\n            font-family: 'request-categories';\n            content: '\\e966'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-359:before {\n            font-family: 'request-categories';\n            content: '\\e967'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-360:before {\n            font-family: 'request-categories';\n            content: '\\e968'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-361:before {\n            font-family: 'request-categories';\n            content: '\\e969'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-362:before {\n            font-family: 'request-categories';\n            content: '\\e96a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-363:before {\n            font-family: 'request-categories';\n            content: '\\e96b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-364:before {\n            font-family: 'request-categories';\n            content: '\\e96c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-365:before {\n            font-family: 'request-categories';\n            content: '\\e96d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-366:before {\n            font-family: 'request-categories';\n            content: '\\e96e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-367:before {\n            font-family: 'request-categories';\n            content: '\\e96f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-368:before {\n            font-family: 'request-categories';\n            content: '\\e970'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-369:before {\n            font-family: 'request-categories';\n            content: '\\e971'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-370:before {\n            font-family: 'request-categories';\n            content: '\\e972'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-371:before {\n            font-family: 'request-categories';\n            content: '\\e973'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-372:before {\n            font-family: 'request-categories';\n            content: '\\e974'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-373:before {\n            font-family: 'request-categories';\n            content: '\\e975'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-374:before {\n            font-family: 'request-categories';\n            content: '\\e976'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-375:before {\n            font-family: 'request-categories';\n            content: '\\e977'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-376:before {\n            font-family: 'request-categories';\n            content: '\\e978'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-377:before {\n            font-family: 'request-categories';\n            content: '\\e979'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-378:before {\n            font-family: 'request-categories';\n            content: '\\e97a'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-379:before {\n            font-family: 'request-categories';\n            content: '\\e97b'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-380:before {\n            font-family: 'request-categories';\n            content: '\\e97c'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-381:before {\n            font-family: 'request-categories';\n            content: '\\e97d'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-382:before {\n            font-family: 'request-categories';\n            content: '\\e97e'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-383:before {\n            font-family: 'request-categories';\n            content: '\\e97f'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-384:before {\n            font-family: 'request-categories';\n            content: '\\e980'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-385:before {\n            font-family: 'request-categories';\n            content: '\\e981'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-386:before {\n            font-family: 'request-categories';\n            content: '\\e982'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-387:before {\n            font-family: 'request-categories';\n            content: '\\e983'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-388:before {\n            font-family: 'request-categories';\n            content: '\\e984'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-389:before {\n            font-family: 'request-categories';\n            content: '\\e985'\n        }\n\n        .iyc-family-icon-request-categories.iyc-icon-390:before {\n            font-family: 'request-categories';\n            content: '\\e986'\n        }\n\n        @font-face {\n            font-family: \"jurisdiction-widgets\";\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/670d3566288db858671994.woff\") format(\"woff\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/670d356662905887706574.eot\"),\n                url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/670d356662905887706574.eot#iefix\") format(\"embedded-opentype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/670d35667750c841593410.svg\") format(\"svg\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/670d35668ef92528260901.ttf\") format(\"truetype\");\n            font-weight: normal;\n            font-style: normal;\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-0:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e800'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-1:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e801'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-2:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e802'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-3:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e803'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-4:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e804'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-5:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e805'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-6:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e806'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-7:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e807'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-8:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e808'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-9:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e809'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-10:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e80a'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-11:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e80b'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-12:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e80c'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-13:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e80d'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-14:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e80e'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-15:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e80f'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-16:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e810'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-17:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e811'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-18:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e812'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-19:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e813'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-20:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e814'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-21:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e815'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-22:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e816'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-23:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e817'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-24:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e818'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-25:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e819'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-26:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e81a'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-27:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e81b'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-28:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e81c'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-29:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e81d'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-30:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e81e'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-31:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e81f'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-32:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e820'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-33:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e821'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-34:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e822'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-35:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e823'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-36:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e824'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-37:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e825'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-38:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e826'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-39:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e827'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-40:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e828'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-41:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e829'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-42:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e82a'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-43:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e82b'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-44:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e82c'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-45:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e82d'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-46:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e82e'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-47:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e82f'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-48:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e830'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-49:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e831'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-50:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e832'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-51:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e833'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-52:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e834'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-53:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e835'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-54:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e836'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-55:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e837'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-56:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e838'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-57:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e839'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-58:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e83a'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-59:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e83b'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-60:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e83c'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-61:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e83d'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-62:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e83e'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-63:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e83f'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-64:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e840'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-65:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e841'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-66:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e842'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-67:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e843'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-68:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e844'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-69:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e845'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-70:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e846'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-71:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e847'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-72:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e848'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-73:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e849'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-74:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e84a'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-75:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e84b'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-76:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e84c'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-77:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e84d'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-78:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e84e'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-79:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e84f'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-80:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e850'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-81:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e851'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-82:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e852'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-83:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e853'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-84:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e854'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-85:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e855'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-86:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e856'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-87:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e857'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-88:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e858'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-89:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e859'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-90:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e85a'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-91:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e85b'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-92:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e85c'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-93:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e85d'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-94:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e85e'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-95:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e85f'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-96:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e860'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-97:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e861'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-98:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e862'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-99:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e863'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-100:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e864'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-101:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e865'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-102:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e866'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-103:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e867'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-104:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e868'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-105:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e869'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-106:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e86a'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-107:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e86b'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-108:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e86c'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-109:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e86d'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-110:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e86e'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-111:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e86f'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-112:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e870'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-113:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e871'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-114:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e872'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-115:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e873'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-116:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e874'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-117:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e875'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-118:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e876'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-119:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e877'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-120:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e878'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-121:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e879'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-122:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e87a'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-123:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e87b'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-124:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e87c'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-125:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e87d'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-126:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e87e'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-127:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e87f'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-128:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e880'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-129:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e881'\n        }\n\n        .iyc-family-icon-jurisdiction-widgets.iyc-icon-130:before {\n            font-family: 'jurisdiction-widgets';\n            content: '\\e882'\n        }\n\n        @font-face {\n            font-family: \"jurisdiction-priorities\";\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/595e17cea1c7c.eot\"),\n                url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/595e17cea1c7c.eot#iefix\") format(\"embedded-opentype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/595e17cee0a10.svg\") format(\"svg\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/595e17ceeebe0.ttf\") format(\"truetype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/595e17cf08b02.woff\") format(\"woff\");\n            font-weight: normal;\n            font-style: normal;\n        }\n\n        .iyc-family-icon-jurisdiction-priorities.iyc-icon-0:before {\n            font-family: 'jurisdiction-priorities';\n            content: '\\e800'\n        }\n\n        .iyc-family-icon-jurisdiction-priorities.iyc-icon-1:before {\n            font-family: 'jurisdiction-priorities';\n            content: '\\e801'\n        }\n\n        .iyc-family-icon-jurisdiction-priorities.iyc-icon-2:before {\n            font-family: 'jurisdiction-priorities';\n            content: '\\e802'\n        }\n\n        .iyc-family-icon-jurisdiction-priorities.iyc-icon-3:before {\n            font-family: 'jurisdiction-priorities';\n            content: '\\e803'\n        }\n\n        .iyc-family-icon-jurisdiction-priorities.iyc-icon-4:before {\n            font-family: 'jurisdiction-priorities';\n            content: '\\e804'\n        }\n\n        @font-face {\n            font-family: \"jurisdiction-typologies\";\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/6729ec5e83182267643750.eot\"),\n                url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/6729ec5e83182267643750.eot#iefix\") format(\"embedded-opentype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/6729ec5ebc613506260986.svg\") format(\"svg\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/6729ec5ecbb59129265446.ttf\") format(\"truetype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/6729ec5ed7b51611982298.woff\") format(\"woff\");\n            font-weight: normal;\n            font-style: normal;\n        }\n\n        .iyc-family-icon-jurisdiction-typologies.iyc-icon-0:before {\n            font-family: 'jurisdiction-typologies';\n            content: '\\e800'\n        }\n\n        .iyc-family-icon-jurisdiction-typologies.iyc-icon-1:before {\n            font-family: 'jurisdiction-typologies';\n            content: '\\e801'\n        }\n\n        .iyc-family-icon-jurisdiction-typologies.iyc-icon-2:before {\n            font-family: 'jurisdiction-typologies';\n            content: '\\e802'\n        }\n\n        .iyc-family-icon-jurisdiction-typologies.iyc-icon-3:before {\n            font-family: 'jurisdiction-typologies';\n            content: '\\e803'\n        }\n\n        .iyc-family-icon-jurisdiction-typologies.iyc-icon-4:before {\n            font-family: 'jurisdiction-typologies';\n            content: '\\e804'\n        }\n\n        .iyc-family-icon-jurisdiction-typologies.iyc-icon-5:before {\n            font-family: 'jurisdiction-typologies';\n            content: '\\e805'\n        }\n\n        @font-face {\n            font-family: \"jurisdiction-typology-nodes\";\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/5df35c62d6aef.eot\"),\n                url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/5df35c62d6aef.eot#iefix\") format(\"embedded-opentype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/5df35c631975e.svg\") format(\"svg\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/5df35c63295cb.ttf\") format(\"truetype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/5df35c633ff30.woff\") format(\"woff\");\n            font-weight: normal;\n            font-style: normal;\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-0:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e800'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-1:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e801'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-2:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e802'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-3:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e803'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-4:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e804'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-5:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e805'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-6:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e806'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-7:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e807'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-8:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e808'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-9:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e809'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-10:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e80a'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-11:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e80b'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-12:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e80c'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-13:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e80d'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-14:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e80e'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-15:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e80f'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-16:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e810'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-17:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e811'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-18:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e812'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-19:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e813'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-20:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e814'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-21:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e815'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-22:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e816'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-23:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e817'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-24:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e818'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-25:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e819'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-26:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e81a'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-27:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e81b'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-28:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e81c'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-29:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e81d'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-30:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e81e'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-31:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e81f'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-32:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e820'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-33:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e821'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-34:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e822'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-35:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e823'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-36:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e824'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-37:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e825'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-38:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e826'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-39:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e827'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-40:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e828'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-41:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e829'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-42:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e82a'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-43:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e82b'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-44:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e82c'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-45:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e82d'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-46:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e82e'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-47:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e82f'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-48:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e830'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-49:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e831'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-50:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e832'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-51:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e833'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-52:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e834'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-53:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e835'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-54:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e836'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-55:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e837'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-56:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e838'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-57:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e839'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-58:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e83a'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-59:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e83b'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-60:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e83c'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-61:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e83d'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-62:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e83e'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-63:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e83f'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-64:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e840'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-65:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e841'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-66:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e842'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-67:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e843'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-68:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e844'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-69:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e845'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-70:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e846'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-71:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e847'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-72:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e848'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-73:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e849'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-74:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e84a'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-75:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e84b'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-76:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e84c'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-77:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e84d'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-78:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e84e'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-79:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e84f'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-80:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e850'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-81:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e851'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-82:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e852'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-83:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e853'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-84:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e854'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-85:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e855'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-86:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e856'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-87:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e857'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-88:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e858'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-89:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e859'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-90:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e85a'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-91:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e85b'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-92:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e85c'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-93:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e85d'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-94:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e85e'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-95:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e85f'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-96:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e860'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-97:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e861'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-98:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e862'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-99:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e863'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-100:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e864'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-101:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e865'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-102:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e866'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-103:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e867'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-104:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e868'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-105:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e869'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-106:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e86a'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-107:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e86b'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-108:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e86c'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-109:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e86d'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-110:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e86e'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-111:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e86f'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-112:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e870'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-113:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e871'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-114:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e872'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-115:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e873'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-116:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e874'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-117:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e875'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-118:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e876'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-119:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e877'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-120:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e878'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-121:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e879'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-122:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e87a'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-123:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e87b'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-124:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e87c'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-125:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e87d'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-126:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e87e'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-127:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e87f'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-128:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e880'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-129:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e881'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-130:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e882'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-131:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e883'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-132:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e884'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-133:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e885'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-134:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e886'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-135:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e887'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-136:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e888'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-137:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e889'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-138:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e88a'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-139:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e88b'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-140:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e88c'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-141:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e88d'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-142:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e88e'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-143:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e88f'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-144:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e890'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-145:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e891'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-146:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e892'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-147:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e893'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-148:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e894'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-149:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e895'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-150:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e896'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-151:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e897'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-152:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e898'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-153:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e899'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-154:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e89a'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-155:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e89b'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-156:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e89c'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-157:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e89d'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-158:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e89e'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-159:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e89f'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-160:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8a0'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-161:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8a1'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-162:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8a2'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-163:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8a3'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-164:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8a4'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-165:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8a5'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-166:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8a6'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-167:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8a7'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-168:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8a8'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-169:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8a9'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-170:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8aa'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-171:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8ab'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-172:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8ac'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-173:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8ad'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-174:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8ae'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-175:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8af'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-176:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8b0'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-177:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8b1'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-178:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8b2'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-179:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8b3'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-180:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8b4'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-181:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8b5'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-182:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8b6'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-183:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8b7'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-184:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8b8'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-185:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8b9'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-186:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8ba'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-187:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8bb'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-188:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8bc'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-189:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8bd'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-190:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8be'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-191:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8bf'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-192:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8c0'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-193:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8c1'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-194:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8c2'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-195:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8c3'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-196:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8c4'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-197:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8c5'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-198:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8c6'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-199:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8c7'\n        }\n\n        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-200:before {\n            font-family: 'jurisdiction-typology-nodes';\n            content: '\\e8c8'\n        }\n\n        @font-face {\n            font-family: \"jurisdiction-elements\";\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/67ebaac28405b764916813.eot\"),\n                url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/67ebaac28405b764916813.eot#iefix\") format(\"embedded-opentype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/67ebaac2a7d9e337726625.svg\") format(\"svg\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/67ebaac2bd29c627146825.ttf\") format(\"truetype\");\n            src: url(\"https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/67ebaac2cd042819305941.woff\") format(\"woff\");\n            font-weight: normal;\n            font-style: normal;\n        }\n\n        .iyc-family-icon-jurisdiction-elements.iyc-icon-0:before {\n            font-family: 'jurisdiction-elements';\n            content: '\\e800'\n        }\n\n        .iyc-family-icon-jurisdiction-elements.iyc-icon-1:before {\n            font-family: 'jurisdiction-elements';\n            content: '\\e801'\n        }\n\n        [class*=\"iyc-icon-\"]:before {\n            font-size: 30px;\n            line-height: 30px;\n            max-width: 30px;\n            font-style: normal;\n            color: #545454;\n            cursor: pointer;\n        }\n\n        .iyc-preview-icon[class*=\"iyc-icon-\"] {\n            padding: 10px;\n            height: 30px;\n            display: inline-block;\n        }\n    </style>\n        <link rel=\"stylesheet\" href=\"//mtc.vdeveloper.lan/build/752.5659e452.css?1.0.10v\">\n        <script src=\"//mtc.vdeveloper.lan/build/runtime.8e3225aa.js?1.0.10v\" defer></script>\n        <script src=\"//mtc.vdeveloper.lan/build/271.126bd037.js?1.0.10v\" defer></script>\n        <script src=\"//mtc.vdeveloper.lan/build/960.ec50dc8a.js?1.0.10v\" defer></script>\n        <script src=\"//mtc.vdeveloper.lan/build/app.862e5477.js?1.0.10v\" defer></script>\n    </head>\n    <body>\n        <div id=\"modal-holder\"></div>\n        <div\n        style=\"font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f0f0f0;\">\n            <div style=\"display: flex; gap: 20px;\">\n                <a href=\"/public-api/collection\">\n                    <div\n                    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;\">\n                        <img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NCA2NCI+PHBhdGggZD0iTTU3LjE2NyAyMS4yYy0yLjItNS45MzMtNS45LTEwLjQ2Ny0xMS4xNjctMTMuNkM0MC43MzMgNC40NjcgMzQuOCAzLjIgMjguODY3IDMuMmMtNS45MzMgMC0xMS44NjcgMS4yNjctMTcuMTMzIDQuNC01LjI2NyAzLjEzMy05IDcuNjY3LTExLjIgMTMuNi0yLjIgNS45MzMtMi4yIDEyLjQgMCAxOC4zMzMgMi4yIDUuOTMzIDUuOTMzIDEwLjQ2NyAxMS4yIDEzLjYgNS4yNjcgMy4xMzMgMTEuMiA0LjQgMTcuMTMzIDQuNCA1LjkzMyAwIDExLjg2Ny0xLjI2NyAxNy4xMzMtNC40IDUuMjY3LTMuMTMzIDktNy42NjcgMTEuMi0xMy42IDIuMi01LjkzMyAyLjItMTIuNCAwLTE4LjMzM3oiIGZpbGw9IiNmZjZjMzciLz48cGF0aCBkPSJNMzkuNDY3IDMwLjRjMC0yLjItMS44MzMtNC00LTRzLTQgMS44LTQgNGMwIDIuMiAxLjgzMyA0IDQgNHM0LTEuOCA0LTR6bS0xMC42NjcgMGMwLTIuMi0xLjgzMy00LTQtNHMtNCAxLjgtNCA0YzAgMi4yIDEuODMzIDQgNCA0czQtMS44IDQtNHptLTEwLjY2NyAwYzAtMi4yLTEuODMzLTQtNC00cy00IDEuOC00IDRjMCAyLjIgMS44MzMgNCA0IDRzNC0xLjggNC00eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==\" alt=\"Postman Icon\" style=\"width: 66px; height: 64px; margin-bottom: 10px;\">\n                        <span>Colección de Postman</span>\n                    </div>\n                </a>\n                <a href=\"/public-api/openapi\">\n                    <div\n                    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;\">\n                        <img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NCA2NCI+PHBhdGggZD0iTTU4LjY2NyAzMkM1OC42NjcgNDYuNzI3IDQ2LjcyNyA1OC42NjcgMzIgNTguNjY3QzE3LjI3MyA1OC42NjcgNS4zMzMgNDYuNzI3IDUuMzMzIDMyQzUuMzMzIDE3LjI3MyAxNy4yNzMgNS4zMzMgMzIgNS4zMzNDNDYuNzI3IDUuMzMzIDU4LjY2NyAxNy4yNzMgNTguNjY3IDMyWiIgZmlsbD0iIzNiODJmNiIvPjxwYXRoIGQ9Ik0zMiAxNS4yYy05LjYgMC0xNy4zMzMgNy43MzMtMTcuMzMzIDE3LjMzM1MzMi4yNjcgNDkuODY3IDMyIDQ5Ljg2N1M0OS4zMzMgNDIuMTMzIDQ5LjMzMyAzMi41MzNDNDkuMzMzIDIyLjkzMyA0MS42IDE1LjIgMzIgMTUuMnptMCAyNS42Yy00LjUzMyAwLTguMjY3LTMuNzMzLTguMjY3LTguMjY3UzI3LjQ2NyAyNC4yNjcgMzIgMjQuMjY3czguMjY3IDMuNzMzIDguMjY3IDguMjY3UzM2LjUzMyA0MC44IDMyIDQwLjh6IiBmaWxsPSIjZmZmIi8+PC9zdmc+\" alt=\"OpenAPI Icon\" style=\"width: 64px; height: 64px; margin-bottom: 10px;\">\n                        <span>Definición de OpenAPI</span>\n                    </div>\n                </a>\n            </div>\n        </div>\n    </div>\n    <div id=\"sfwdt50e9d8\" class=\"sf-toolbar sf-display-none\" role=\"region\" aria-label=\"Symfony Web Debug Toolbar\">\n        <!-- START of Symfony Web Debug Toolbar -->\n        <div id=\"sfMiniToolbar-50e9d8\" class=\"sf-minitoolbar\" data-no-turbolink data-turbo=\"false\">\n            <button type=\"button\" title=\"Show Symfony toolbar\" id=\"sfToolbarMiniToggler-50e9d8\" accesskey=\"D\" aria-expanded=\"false\" aria-controls=\"sfToolbarMainContent-50e9d8\">\n                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\">\n                    <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\"/>\n                </svg>\n            </button>\n        </div>\n        <div id=\"sfToolbarClearer-50e9d8\" class=\"sf-toolbar-clearer\"></div>\n        <div id=\"sfToolbarMainContent-50e9d8\" class=\"sf-toolbarreset notranslate clear-fix\" data-no-turbolink\n            data-turbo=\"false\">\n            <div class=\"sf-toolbar-block sf-toolbar-block-request sf-toolbar-status-normal \">\n                <a\n                    href=\"http://mtc.vdeveloper.lan/_profiler/50e9d8?panel=request\">\n                    <div class=\"sf-toolbar-icon\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"\n                            viewBox=\"0 0 24 24\">\n                            <path fill=\"currentColor\"\n                                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\" />\n                        </svg>\n                        <span class=\"sf-toolbar-value sf-toolbar-ajax-request-counter\">            Loading&hellip;        </span>\n                    </div>\n                </a>\n                <div class=\"sf-toolbar-info\">\n                    <div class=\"sf-toolbar-info-piece\">\n                        <b>Loading the web debug toolbar&hellip;</b>\n                    </div>\n                    <div class=\"sf-toolbar-info-piece\"> Attempt #\n                        <span id=\"sfLoadCounter-50e9d8\"></span>\n                    </div>\n                    <div class=\"sf-toolbar-info-piece\">\n                        <b>\n                            <button class=\"sf-cancel-button\" type=\"button\" id=\"sfLoadCancel-50e9d8\" title=\"Cancel loading\">Cancel</button>\n                        </b>\n                    </div>\n                </div>\n            </div>\n            <button class=\"hide-button\" type=\"button\" id=\"sfToolbarHideButton-50e9d8\" title=\"Close Toolbar\" accesskey=\"D\" aria-expanded=\"true\" aria-controls=\"sfToolbarMainContent-50e9d8\">\n                <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\">\n                    <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\"></path>\n                    <line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line>\n                    <line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line>\n                </svg>\n            </button>\n        </div>\n        <!-- END of Symfony Web Debug Toolbar -->\n    \n    </div>\n    <style nonce=\"82a47e6df1c613d62ba5b41a1eb22a8e\">\n        .sf-toolbarreset {\n            --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\";\n            --sf-toolbar-font-family-monospace: \"Ubuntu Mono\", \"JetBrains Mono\", ui-monospace, \"Roboto Mono\", SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n            --sf-toolbar-white: #fff;\n            --sf-toolbar-black: #000;\n            --sf-toolbar-gray-50: #fafafa;\n            --sf-toolbar-gray-100: #f5f5f5;\n            --sf-toolbar-gray-200: #e5e5e5;\n            --sf-toolbar-gray-300: #d4d4d4;\n            --sf-toolbar-gray-400: #a3a3a3;\n            --sf-toolbar-gray-500: #737373;\n            --sf-toolbar-gray-600: #525252;\n            --sf-toolbar-gray-700: #404040;\n            --sf-toolbar-gray-800: #262626;\n            --sf-toolbar-gray-900: #171717;\n            --sf-toolbar-red-50: #FEFBFC;\n            --sf-toolbar-red-100: #FCE9ED;\n            --sf-toolbar-red-200: #F5B8C5;\n            --sf-toolbar-red-300: #EF869C;\n            --sf-toolbar-red-400: #E85574;\n            --sf-toolbar-red-500: #E1244B;\n            --sf-toolbar-red-600: #B41939;\n            --sf-toolbar-red-700: #83122A;\n            --sf-toolbar-red-800: #510B1A;\n            --sf-toolbar-red-900: #20040A;\n            --sf-toolbar-yellow-50: #fef7e1;\n            --sf-toolbar-yellow-100: #fef2cd;\n            --sf-toolbar-yellow-200: #fde496;\n            --sf-toolbar-yellow-300: #fcd55f;\n            --sf-toolbar-yellow-400: #fbc728;\n            --sf-toolbar-yellow-500: #e6af05;\n            --sf-toolbar-yellow-600: #af8503;\n            --sf-toolbar-yellow-700: #785b02;\n            --sf-toolbar-yellow-800: #413101;\n            --sf-toolbar-yellow-900: #0a0800;\n            --sf-toolbar-green-50: #eff5f5;\n            --sf-toolbar-green-100: #deeaea;\n            --sf-toolbar-green-200: #bbd5d5;\n            --sf-toolbar-green-300: #99bfbf;\n            --sf-toolbar-green-400: #76a9a9;\n            --sf-toolbar-green-500: #598e8e;\n            --sf-toolbar-green-600: #436c6c;\n            --sf-toolbar-green-700: #2e4949;\n            --sf-toolbar-green-800: #182727;\n            --sf-toolbar-green-900: #030404;\n        }\n\n        .sf-minitoolbar {\n            --sf-toolbar-gray-800: #262626;\n            background-color: var(--sf-toolbar-gray-800);\n            border-top-left-radius: 4px;\n            bottom: 0;\n            box-sizing: border-box;\n            display: none;\n            height: 36px;\n            padding: 6px;\n            position: fixed;\n            right: 0;\n            z-index: 99999;\n        }\n\n        .sf-minitoolbar button {\n            background-color: transparent;\n            padding: 0;\n            border: none;\n        }\n\n        .sf-minitoolbar svg,\n        .sf-minitoolbar img {\n            --sf-toolbar-gray-200: #e5e5e5;\n            color: var(--sf-toolbar-gray-200);\n            max-height: 24px;\n            max-width: 24px;\n            display: inline;\n        }\n\n        .sf-toolbar-clearer {\n            clear: both;\n            height: 36px;\n        }\n\n        .sf-display-none {\n            display: none;\n        }\n\n        .sf-toolbarreset *:not(svg rect) {\n            box-sizing: content-box;\n            vertical-align: baseline;\n            letter-spacing: normal;\n            width: auto;\n        }\n\n        .sf-toolbarreset {\n            background-color: var(--sf-toolbar-gray-800);\n            bottom: 0;\n            box-shadow: inset 0 1px 0 var(--sf-toolbar-black), 0 -1px 0 rgba(0, 0, 0, 0.5);\n            color: var(--sf-toolbar-gray-200);\n            font: 11px var(--sf-toolbar-font-family-system);\n            left: 0;\n            margin: 0;\n            padding: 0 36px 0 0;\n            position: fixed;\n            right: 0;\n            text-align: left;\n            text-transform: none;\n            z-index: 99999;\n            direction: ltr;\n            /* neutralize the aliasing defined by external CSS styles */\n            -webkit-font-smoothing: subpixel-antialiased;\n            -moz-osx-font-smoothing: auto;\n        }\n\n        .sf-toolbarreset abbr {\n            border: dashed var(--sf-toolbar-gray-500);\n            border-width: 0 0 1px;\n        }\n\n        .sf-toolbarreset svg,\n        .sf-toolbarreset img {\n            height: 20px;\n            width: 20px;\n            display: inline-block;\n        }\n\n        .sf-toolbarreset .sf-cancel-button {\n            color: var(--sf-toolbar-gray-700);\n        }\n\n        .sf-toolbarreset .hide-button {\n            background: var(--sf-toolbar-gray-800);\n            color: var(--sf-toolbar-gray-300);\n            display: block;\n            position: absolute;\n            top: 2px;\n            right: 0;\n            width: 36px;\n            height: 34px;\n            cursor: pointer;\n            text-align: center;\n            border: none;\n            margin: 0;\n            padding: 0;\n        }\n\n        .sf-toolbarreset .hide-button:hover {\n            background: var(--sf-toolbar-gray-700);\n        }\n\n        .sf-toolbarreset .hide-button svg {\n            max-height: 18px;\n            margin-top: 1px;\n        }\n\n        .sf-toolbar-block {\n            cursor: default;\n            display: block;\n            float: left;\n            height: 36px;\n            margin-right: 0;\n            position: relative;\n            white-space: nowrap;\n            max-width: 15%;\n        }\n\n        .sf-toolbar-block>a,\n        .sf-toolbar-block>a:hover {\n            display: block;\n            text-decoration: none;\n            background-color: transparent;\n            color: inherit;\n        }\n\n        .sf-toolbar-block span {\n            display: inline-block;\n        }\n\n        .sf-toolbar-block .sf-toolbar-value {\n            color: var(--sf-toolbar-gray-100);\n            font-size: 13px;\n            line-height: 36px;\n            padding: 0;\n        }\n\n        .sf-toolbar-block .sf-toolbar-label,\n        .sf-toolbar-block .sf-toolbar-class-separator {\n            color: var(--sf-toolbar-gray-400);\n            font-size: 12px;\n            margin-left: 2px;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info {\n            border-collapse: collapse;\n            display: table;\n            z-index: 100000;\n        }\n\n        .sf-toolbar-block hr {\n            border-top: 1px solid var(--sf-toolbar-gray-500);\n            margin: 4px 0;\n            padding-top: 4px;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info-piece {\n            /* this 'border-bottom' trick is needed because 'margin-bottom' doesn't work for table rows */\n            border-bottom: solid transparent 3px;\n            display: table-row;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info-piece-additional,\n        .sf-toolbar-block .sf-toolbar-info-piece-additional-detail {\n            display: none;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info-group {\n            margin-bottom: 4px;\n            padding-bottom: 2px;\n            border-bottom: 1px solid #333333;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info-group:last-child {\n            margin-bottom: 0;\n            padding-bottom: 0;\n            border-bottom: none;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info-piece .sf-toolbar-status {\n            border-radius: 4px;\n            padding: 2px 5px;\n            margin-bottom: 0;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info-piece .sf-toolbar-status+.sf-toolbar-status {\n            margin-left: 4px;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info-piece:last-child {\n            margin-bottom: 0;\n        }\n\n        div.sf-toolbar .sf-toolbar-block .sf-toolbar-info-piece a {\n            color: #99CDD8;\n            text-decoration: underline;\n        }\n\n        div.sf-toolbar .sf-toolbar-block a:hover {\n            text-decoration: none;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info-piece b {\n            color: var(--sf-toolbar-gray-400);\n            display: table-cell;\n            font-size: 11px;\n            padding: 4px 8px 4px 0;\n        }\n\n        .sf-toolbar-block:not(.sf-toolbar-block-dump) .sf-toolbar-info-piece span {\n            color: var(--sf-toolbar-gray-100);\n        }\n\n        .sf-toolbar-block .sf-toolbar-info-piece span {\n            font-size: 12px;\n        }\n\n        div.sf-toolbar .sf-toolbar-block .sf-toolbar-info-piece.sf-toolbar-info-php-ext a {\n            text-decoration: none;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info {\n            background-color: var(--sf-toolbar-gray-700);\n            border-radius: 4px;\n            border-bottom-left-radius: 0;\n            bottom: 36px;\n            color: var(--sf-toolbar-gray-100);\n            display: none;\n            padding: 9px 0;\n            position: absolute;\n        }\n\n        .sf-toolbar-block.sf-toolbar-block-right .sf-toolbar-info {\n            border-bottom-left-radius: 4px;\n            border-bottom-right-radius: 0;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info:empty {\n            visibility: hidden;\n        }\n\n        .sf-toolbar-block .sf-toolbar-status {\n            display: inline-block;\n            color: var(--sf-toolbar-white);\n            background-color: var(--sf-toolbar-gray-600);\n            padding: 3px 6px;\n            margin: 0 4px;\n            min-width: 15px;\n            min-height: 13px;\n            text-align: center;\n        }\n\n        .sf-toolbar-block .sf-toolbar-status.sf-toolbar-status-green,\n        .sf-toolbar-block .sf-toolbar-info .sf-toolbar-status.sf-toolbar-status-green {\n            background-color: #059669;\n            color: var(--white);\n        }\n\n        .sf-toolbar-block .sf-toolbar-status.sf-toolbar-status-red,\n        .sf-toolbar-block .sf-toolbar-info .sf-toolbar-status.sf-toolbar-status-red {\n            background-color: var(--sf-toolbar-red-500);\n            color: var(--sf-toolbar-red-50);\n        }\n\n        .sf-toolbar-block .sf-toolbar-status.sf-toolbar-status-yellow,\n        .sf-toolbar-block .sf-toolbar-info .sf-toolbar-status.sf-toolbar-status-yellow {\n            background-color: var(--sf-toolbar-yellow-300);\n            color: var(--sf-toolbar-yellow-800);\n        }\n\n        .sf-toolbar-block.sf-toolbar-status-green::before,\n        .sf-toolbar-block.sf-toolbar-status-red::before,\n        .sf-toolbar-block.sf-toolbar-status-yellow::before {\n            background: var(--sf-toolbar-yellow-400);\n            border-radius: 6px;\n            content: '';\n            position: absolute;\n            bottom: 1px;\n            left: 0;\n            width: 98%;\n            height: 3px;\n            z-index: 10005;\n        }\n\n        .sf-toolbar-block.sf-toolbar-status-red::before {\n            background: var(--sf-toolbar-red-400);\n        }\n\n        .sf-toolbar-block.sf-toolbar-status-green::before {\n            background: var(--sf-toolbar-green-400);\n        }\n\n        .sf-toolbar-block-request.sf-toolbar-block.sf-toolbar-status-green::before,\n        .sf-toolbar-block-request.sf-toolbar-block.sf-toolbar-status-red::before,\n        .sf-toolbar-block-request.sf-toolbar-block.sf-toolbar-status-yellow::before {\n            display: none;\n        }\n\n        .sf-toolbar-block-request .sf-toolbar-status {\n            border-radius: 6px;\n            color: #fff;\n            display: inline-block;\n            flex-shrink: 0;\n            font-size: 13px;\n            font-weight: 500;\n            padding: 4px 8px;\n        }\n\n        .sf-toolbar-block-request .sf-toolbar-info-piece a {\n            background-color: transparent;\n            text-decoration: none;\n        }\n\n        .sf-toolbar-block-request .sf-toolbar-info-piece a:hover {\n            text-decoration: underline;\n        }\n\n        .sf-toolbar-block-request .sf-toolbar-redirection-status {\n            font-weight: normal;\n            padding: 2px 4px;\n            line-height: 18px;\n        }\n\n        .sf-toolbar-block.sf-toolbar-block-request .sf-toolbar-redirection-status.sf-toolbar-status-yellow {\n            background-color: var(--sf-toolbar-yellow-300);\n            border-radius: 4px;\n            color: var(--sf-toolbar-yellow-800);\n            padding: 1px 4px;\n        }\n\n        .sf-toolbar-block.sf-toolbar-block-request .sf-toolbar-info-piece .sf-toolbar-redirection-method {\n            background: transparent;\n            color: var(--sf-toolbar-gray-300);\n            border: 1px solid var(--sf-toolbar-gray-400);\n            padding: 1px 4px;\n        }\n\n        .sf-toolbar-block-request .sf-toolbar-info-piece span.sf-toolbar-redirection-method {\n            font-size: 12px;\n            height: 17px;\n            line-height: 17px;\n            margin-right: 5px;\n        }\n\n        .sf-toolbar-block-request .sf-toolbar-request-icon svg {\n            stroke-width: 3px;\n        }\n\n        .sf-toolbar-block-ajax .sf-toolbar-icon {\n            cursor: pointer;\n        }\n\n        .sf-toolbar-status-green .sf-toolbar-label,\n        .sf-toolbar-status-yellow .sf-toolbar-label,\n        .sf-toolbar-status-red .sf-toolbar-label {\n            color: var(--sf-toolbar-white);\n        }\n\n        .sf-toolbar-block-config svg path,\n        .sf-toolbar-block-config svg .sf-svg-path {\n            fill: var(--sf-toolbar-white);\n        }\n\n        .sf-toolbar-block .sf-toolbar-icon {\n            color: var(--sf-toolbar-gray-300);\n            align-items: center;\n            display: flex;\n            height: 36px;\n            padding: 0 7px;\n            overflow: hidden;\n            text-overflow: ellipsis;\n        }\n\n        .sf-toolbar-block:hover .sf-toolbar-icon {\n            border-bottom-left-radius: 4px;\n            border-bottom-right-radius: 4px;\n            box-shadow: 1px 0 0 var(--sf-toolbar-black), inset 0 -1px 0 var(--sf-toolbar-black);\n        }\n\n        .sf-toolbar-block.sf-toolbar-block-right:hover .sf-toolbar-icon {\n            box-shadow: -1px 0 0 var(--sf-toolbar-black), inset 0 -1px 0 var(--sf-toolbar-black);\n        }\n\n        .sf-toolbar-block-request .sf-toolbar-icon {\n            padding-left: 0;\n            padding-right: 0;\n        }\n\n        .sf-toolbar-block .sf-toolbar-icon img,\n        .sf-toolbar-block .sf-toolbar-icon svg {\n            border-width: 0;\n        }\n\n        .sf-toolbar-block .sf-toolbar-icon img+span,\n        .sf-toolbar-block .sf-toolbar-icon svg+span {\n            margin-left: 4px;\n        }\n\n        .sf-toolbar-block-config .sf-toolbar-icon .sf-toolbar-value,\n        .sf-toolbar-block.sf-toolbar-block-sf-cli .sf-toolbar-value {\n            margin-left: 5px;\n        }\n\n        .sf-toolbar-block-config .sf-toolbar-icon .sf-toolbar-label,\n        .sf-toolbar-block.sf-toolbar-block-sf-cli .sf-toolbar-label {\n            margin-left: 0;\n        }\n\n        .sf-toolbar-block:hover,\n        .sf-toolbar-block.hover {\n            position: relative;\n        }\n\n        .sf-toolbar-block:hover .sf-toolbar-icon,\n        .sf-toolbar-block.hover .sf-toolbar-icon {\n            background-color: var(--sf-toolbar-gray-700);\n            position: relative;\n            z-index: 10002;\n        }\n\n        .sf-toolbar-block-ajax.hover .sf-toolbar-info {\n            z-index: 10001;\n        }\n\n        .sf-toolbar-block:hover .sf-toolbar-info,\n        .sf-toolbar-block.hover .sf-toolbar-info {\n            display: block;\n            padding: 10px;\n            max-width: 525px;\n            max-height: 480px;\n            word-wrap: break-word;\n            overflow: hidden;\n            overflow-y: auto;\n        }\n\n        .sf-toolbar-info-piece b.sf-toolbar-ajax-info {\n            color: var(--sf-toolbar-gray-100);\n        }\n\n        .sf-toolbar-ajax-requests {\n            border: 1px solid var(--sf-toolbar-gray-500);\n            font-variant: tabular-nums;\n            margin: 5px 0 0;\n            width: 100%;\n        }\n\n        .sf-toolbar-ajax-requests td {\n            background-color: var(--sf-toolbar-gray-700);\n            border: 1px solid var(--sf-toolbar-gray-500);\n            color: var(--sf-toolbar-gray-100);\n            font-size: 12px;\n            padding: 4px;\n            vertical-align: middle;\n        }\n\n        .sf-toolbar-ajax-requests thead {\n            border: 0;\n        }\n\n        .sf-toolbar-ajax-requests th {\n            background-color: var(--sf-toolbar-gray-800);\n            border: 1px solid var(--sf-toolbar-gray-500);\n            color: var(--sf-toolbar-gray-200);\n            font-size: 11px;\n            padding: 4px;\n        }\n\n        .sf-ajax-request-url {\n            max-width: 250px;\n            line-height: 9px;\n            overflow: hidden;\n            text-overflow: ellipsis;\n        }\n\n        .sf-toolbar-ajax-requests .sf-ajax-request-url a {\n            text-decoration: none;\n        }\n\n        .sf-toolbar-ajax-requests .sf-ajax-request-url a:hover {\n            text-decoration: underline;\n        }\n\n        .sf-ajax-request-duration {\n            text-align: right;\n        }\n\n        .sf-toolbar-block .sf-toolbar-info-piece .sf-toolbar-ajax-requests .sf-toolbar-status {\n            font-size: 11px;\n            padding: 1px 3px;\n        }\n\n        .sf-ajax-request-loading {\n            animation: sf-blink .5s ease-in-out infinite;\n        }\n\n        @keyframes sf-blink {\n            0% {\n                background: var(--sf-toolbar-gray-800);\n            }\n\n            50% {\n                background: var(--sf-toolbar-gray-700);\n            }\n\n            100% {\n                background: var(--sf-toolbar-gray-800);\n            }\n        }\n\n        .sf-toolbar-block.sf-toolbar-block-dump .sf-toolbar-info {\n            max-width: none;\n            width: 100%;\n            position: fixed;\n            box-sizing: border-box;\n            left: 0;\n        }\n\n        .sf-toolbar-block-dump pre.sf-dump {\n            background-color: var(--sf-toolbar-gray-800);\n            border-color: var(--sf-toolbar-gray-500);\n            border-radius: 0;\n            margin: 6px 0 12px 0;\n        }\n\n        .sf-toolbar-block-dump pre.sf-dump:last-child {\n            margin-bottom: 0;\n        }\n\n        .sf-toolbar-block-dump pre.sf-dump .sf-dump-search-wrapper {\n            margin-bottom: 5px;\n        }\n\n        .sf-toolbar-block-dump pre.sf-dump span.sf-dump-search-count {\n            color: #333;\n            font-size: 12px;\n        }\n\n        .sf-toolbar-block-dump .sf-toolbar-info-piece {\n            display: block;\n        }\n\n        .sf-toolbar-block-dump .sf-toolbar-info-piece .sf-toolbar-file-line {\n            color: var(--sf-toolbar-gray-400);\n            margin-left: 4px;\n        }\n\n        .sf-toolbar-block-dump .sf-toolbar-info img {\n            display: none;\n        }\n\n        .sf-toolbar-block-serializer .detailed-metrics {\n            display: grid;\n            grid-template-columns: repeat(3, 1fr);\n            grid-gap: 15px;\n            margin-top: 15px;\n        }\n\n        /* Responsive Design */\n        .sf-toolbar-icon .sf-toolbar-label,\n        .sf-toolbar-icon .sf-toolbar-value {\n            display: none;\n        }\n\n        .sf-toolbar-block-config .sf-toolbar-icon .sf-toolbar-label,\n        .sf-cli .sf-toolbar-icon .sf-toolbar-label {\n            display: inline-block;\n        }\n\n        /* Legacy Design - these styles are maintained to make old panels look   a bit better on the new toolbar */\n        .sf-toolbar-block .sf-toolbar-info-piece-additional-detail {\n            color: var(--sf-toolbar-gray-400);\n            font-size: 12px;\n        }\n\n        .sf-toolbar-status-green .sf-toolbar-info-piece-additional-detail,\n        .sf-toolbar-status-yellow .sf-toolbar-info-piece-additional-detail,\n        .sf-toolbar-status-red .sf-toolbar-info-piece-additional-detail {\n            color: var(--sf-toolbar-white);\n        }\n\n        @media (min-width: 768px) {\n\n            .sf-toolbar-icon .sf-toolbar-label,\n            .sf-toolbar-icon .sf-toolbar-value {\n                display: inline;\n            }\n\n            .sf-toolbar-block-time .sf-toolbar-icon svg,\n            .sf-toolbar-block-memory .sf-toolbar-icon svg {\n                display: none;\n            }\n\n            .sf-toolbar-block-time .sf-toolbar-icon svg+span,\n            .sf-toolbar-block-memory .sf-toolbar-icon svg+span {\n                margin-left: 0;\n            }\n\n            .sf-toolbar-block .sf-toolbar-icon {\n                padding: 0 10px;\n            }\n\n            .sf-toolbar-block-time .sf-toolbar-icon {\n                padding-right: 5px;\n            }\n\n            .sf-toolbar-block-memory .sf-toolbar-icon {\n                padding-left: 5px;\n            }\n\n            .sf-toolbar-block-request .sf-toolbar-icon {\n                display: flex;\n                align-items: center;\n                padding-left: 0;\n                padding-right: 0;\n            }\n\n            .sf-toolbar-block-request .sf-toolbar-label {\n                margin-left: 4px;\n                margin-right: 1px;\n            }\n\n            .sf-toolbar-block-request .sf-toolbar-status+.sf-toolbar-request-icon {\n                display: inline-flex;\n                margin-left: 5px;\n            }\n\n            .sf-toolbar-block-request .sf-toolbar-icon .sf-toolbar-request-icon+.sf-toolbar-label {\n                margin-left: 0;\n            }\n\n            .sf-toolbar-block-request .sf-toolbar-label+.sf-toolbar-value {\n                margin-right: 5px;\n            }\n\n            .sf-toolbar-block-request:hover .sf-toolbar-info {\n                max-width: none;\n            }\n\n            .sf-toolbar-block .sf-toolbar-info-piece b {\n                font-size: 12px;\n            }\n\n            .sf-toolbar-block .sf-toolbar-info-piece span {\n                font-size: 13px;\n            }\n\n            .sf-toolbar-block-right {\n                float: right;\n                margin-left: 0;\n                margin-right: 0;\n            }\n\n            .sf-toolbarreset .sf-toolbar-block.sf-toolbar-block-right:not(.sf-toolbar-block-sf-cli) .sf-toolbar-info {\n                border-bottom-left-radius: 4px;\n                border-bottom-right-radius: 0;\n            }\n        }\n\n        @media (min-width: 1024px) {\n\n            .sf-toolbar-block .sf-toolbar-info-piece-additional,\n            .sf-toolbar-block .sf-toolbar-info-piece-additional-detail {\n                display: inline;\n            }\n\n            .sf-toolbar-block .sf-toolbar-info-piece-additional:empty,\n            .sf-toolbar-block .sf-toolbar-info-piece-additional-detail:empty {\n                display: none;\n            }\n        }\n\n        /***** Error Toolbar *****/\n        .sf-error-toolbar .sf-toolbarreset {\n            background: var(--sf-toolbar-gray-800);\n            color: var(--sf-toolbar-gray-100);\n            font: 13px/36px var(--sf-toolbar-font-family-system);\n            height: 36px;\n            padding: 0 15px;\n            text-align: left;\n        }\n\n        .sf-error-toolbar .sf-toolbarreset svg {\n            height: auto;\n        }\n\n        .sf-error-toolbar .sf-toolbarreset a {\n            color: #99cdd8;\n            margin-left: 5px;\n            text-decoration: underline;\n        }\n\n        .sf-error-toolbar .sf-toolbarreset a:hover {\n            text-decoration: none;\n        }\n\n        .sf-error-toolbar .sf-toolbarreset .sf-toolbar-icon {\n            float: left;\n            padding: 5px 0;\n            margin-right: 10px;\n        }\n\n        .sf-full-stack {\n            left: 0px;\n            font-size: 12px;\n        }\n\n        /***** Media query print: Do not print the Toolbar. *****/\n        @media print {\n            .sf-toolbar {\n                display: none !important;\n            }\n        }\n    </style>\n    <script nonce=\"6e89fef24339ce111cf433cbfcad9a7d\">\n        /*\n        <![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');/*]]>*/\n    \n</script>\n</body>\n</html>",
              "code": 200,
              "status": "OK"
            }
          ]
        }
      ],
      "id": "eef51b0c-77f8-4fb0-ae38-0c8360d42cbf"
    },
    {
      "name": "Documentos",
      "item": [
        {
          "name": "AdditionalData",
          "item": [],
          "id": "88ab34f3-276d-42db-80fa-a44dcb5183b5",
          "description": "| **Campo** | **Tipo** | **Descripción** |\n| --- | --- | --- |\n| question | String | [required]. ID o código de la pregunta adicional. |\n| answer | Object | [required]. Respuesta asociada a la pregunta. |\n| answer.value | Mixed | [required]. Valor según el tipo de pregunta. |\n"
        },
        {
          "name": "Address",
          "item": [],
          "id": "b7e09b72-3081-41fa-9ccc-4c3623740344",
          "description": "| **Campo** | **Tipo** | **Descripción** |\n| --- | --- | --- |\n| label | String | [optional]. Etiqueta de dirección. |\n| address_string | String | [optional]. Dirección textual. |\n| zipCode | String | [optional]. Código postal. |\n| country_code | String | [optional]. Código de país. |\n| state_or_province | String | [optional]. Estado o provincia. |\n| city | String | [optional]. Ciudad. |\n| district | String | [optional]. Distrito. |\n"
        },
        {
          "name": "IdDocument",
          "item": [],
          "id": "78559934-3357-45a3-b479-d34a2ef6cc56",
          "description": "| **Campo** | **Tipo** | **Descripción** |\n| --- | --- | --- |\n| type | String | [required]. Tipo de documento según la jurisdicción. |\n| number | String | [required]. Número del documento. |\n"
        },
        {
          "name": "NotificationConfiguration",
          "item": [],
          "id": "ec8e9b97-86e6-40ca-bc4a-6ed75f0f96cd",
          "description": "| **Campo** | **Tipo** | **Descripción** |\n| --- | --- | --- |\n| alerts | Boolean | [optional]. Notificaciones de alertas. |\n| comments | Boolean | [optional]. Notificaciones de comentarios. |\n| follows | Boolean | [optional]. Notificaciones de seguimientos. |\n| requests | Boolean | [optional]. Notificaciones de solicitudes. |\n"
        },
        {
          "name": "Phone",
          "item": [],
          "id": "34e79af1-0b6e-4840-9319-cbe04007a980",
          "description": "| **Campo** | **Tipo** | **Descripción** |\n| --- | --- | --- |\n| number | String | [required]. Número de teléfono. |\n| label | String | [optional]. Etiqueta. Valores según PhoneLabel. |\n"
        },
        {
          "name": "SecurityAppConfiguration",
          "item": [],
          "id": "a12fe861-c52c-4252-a838-33c9168f6a68",
          "description": "| **Campo** | **Tipo** | **Descripción** |\n| --- | --- | --- |\n| app_notification | NotificationConfiguration | [optional]. Preferencias de notificaciones app. |\n| email_notification | NotificationConfiguration | [optional]. Preferencias de notificaciones email. |\n"
        },
        {
          "name": "UserDevice",
          "item": [],
          "id": "900bec66-f9be-459c-bc25-b47460ee9017",
          "description": "| **Campo** | **Tipo** | **Descripcion** |\n| --- | --- | --- |\n| 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 |\n| 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) |\n| brand | String | \\[required\\]. Valor que permite identificar la marca del dispositivo (Ej: Samsung, Huawei, etc). |\n| device_id | String | \\[required\\]. Identificador único del dispositivo. Se obtiene a partir de las cabeceras de la petición |\n| model | String | \\[required\\]. Permite identificar el modelo del dispositivo |\n| os_version | String | \\[required\\]. Permite identificar la versión en uso del sistema operativo del dispositivo |\n| 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 |\n| 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"
    },
    {
      "id": "e6a3aa8b-f85b-492b-90c2-c0d64322b3cd",
      "key": "jurisdictionId",
      "value": "",
      "type": "string",
      "description": "Jurisdiction ID for testing"
    },
    {
      "id": "bccb3b9b-dda6-4c2a-a18b-9bc20ea520c6",
      "key": "jurisdictionElementId",
      "value": "",
      "type": "string",
      "description": "Jurisdiction Element ID for testing"
    },
    {
      "id": "09f3aba4-eefc-4bcf-94e8-a68cfc629639",
      "key": "typologyId",
      "value": "",
      "type": "string",
      "description": "Typology ID for testing"
    },
    {
      "id": "fc03d784-adbe-4d7c-99ed-c481dd64a3f1",
      "key": "serviceId",
      "value": "",
      "type": "string",
      "description": "Service ID for testing"
    },
    {
      "id": "f9e78de7-5d89-40d8-b708-4a7c1d5240c1",
      "key": "serviceNodeId",
      "value": "",
      "type": "string",
      "description": "Service Node ID for testing"
    },
    {
      "id": "1607bd56-bdb8-4e76-8d21-f4bb96818bac",
      "key": "channelId",
      "value": "",
      "type": "string",
      "description": "Channel ID for testing"
    },
    {
      "id": "0e5f7f35-7201-421b-b328-ef4c51ea9980",
      "key": "companyId",
      "value": "",
      "type": "string",
      "description": "Company/Client ID for testing"
    },
    {
      "id": "8a9202f3-752e-4ab4-ad60-e4097a385689",
      "key": "userId",
      "value": "",
      "type": "string",
      "description": "User ID for testing"
    },
    {
      "id": "738ba7c6-da98-4ac7-918d-1b2352b6087c",
      "key": "backofficeUserId",
      "value": "",
      "type": "string",
      "description": "Backoffice User ID for testing"
    },
    {
      "id": "a939cbfe-71e7-4fd8-b063-a1129166b686",
      "key": "userGroupId",
      "value": "",
      "type": "string",
      "description": "User Group ID for testing"
    },
    {
      "id": "bf44db45-7243-4ef4-a193-17956a00329e",
      "key": "applicationId",
      "value": "",
      "type": "string",
      "description": "Application ID for testing"
    },
    {
      "id": "10dbbde6-ca2f-4d08-89fb-cf32e98ab8dd",
      "key": "requestId",
      "value": "",
      "type": "string",
      "description": "Request ID for testing"
    },
    {
      "id": "821722c5-0a22-46e7-bbaa-615ef8441abe",
      "key": "folderId",
      "value": "",
      "type": "string",
      "description": "Folder ID for testing"
    },
    {
      "id": "4809ce19-faad-4035-b367-a6f0b99a1aee",
      "key": "filterId",
      "value": "",
      "type": "string",
      "description": "Filter ID for testing"
    },
    {
      "id": "a0d8a2a1-e9f9-4f31-a1f7-8600b189bd0b",
      "key": "tagId",
      "value": "",
      "type": "string",
      "description": "Tag ID for testing"
    },
    {
      "id": "41867648-901c-40db-8971-9622f4699f44",
      "key": "templateId",
      "value": "",
      "type": "string",
      "description": "Template ID for testing"
    },
    {
      "id": "76c2d545-d59b-46f8-92a7-f50026a8d97d",
      "key": "zoneId",
      "value": "",
      "type": "string",
      "description": "Zone ID for testing"
    },
    {
      "id": "bdeca2ab-6673-4d08-9e33-b9ebb5f31175",
      "key": "categoryId",
      "value": "",
      "type": "string",
      "description": "Category ID for testing"
    },
    {
      "id": "5212e40c-684d-437d-884d-bd70f3d8d2a9",
      "key": "objectId",
      "value": "",
      "type": "string",
      "description": "Generic ObjectId for testing"
    },
    {
      "id": "f48464ed-330b-4c9a-958c-e78ff5cccfd7",
      "key": "clientId",
      "value": "",
      "type": "string",
      "description": "OAuth client ID for authentication"
    },
    {
      "id": "b6eccfbd-335d-474c-9be1-b42763261767",
      "key": "mapaUrl",
      "value": "",
      "type": "string",
      "description": "Base URL for mapa service (e.g., https://mapa-canary.mejoratuciudad.org)"
    },
    {
      "id": "d7a4b3c2-e8f1-4a5b-9c6d-8e7f0a1b2c3d",
      "key": "deviceUuid",
      "value": "",
      "type": "string",
      "description": "Device UUID for testing (e.g., 9F621B00-2C4C-49C1-B0D9-2F583F866DE1)"
    },
    {
      "id": "c6895257-026b-48f9-80df-209f5d7d4d4b",
      "key": "testEmail",
      "value": "",
      "type": "string",
      "description": "Test email for query parameters"
    },
    {
      "key": "originDeviceId",
      "value": ""
    }
  ]
}
