Listados en JSON de todos los Codigos Postales 📫 de las poblaciones de España
En codigo-postal.json tienes todo combinado y anidado listo para ser procesaro por tu app.
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "array",
"items": {
"$ref": "#/definitions/ZipElement"
},
"definitions": {
"ZipElement": {
"type": "object",
"additionalProperties": false,
"properties": {
"codigo_postal": {
"$ref": "#/definitions/CodigoPostal"
},
"municipio_id": {
"$ref": "#/definitions/CodigoPostal"
},
"municipio_nombre": {
"type": "string"
}
},
"required": [],
"title": "ZipElement"
},
"CodigoPostal": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "CodigoPostal"
}
}
}
Todos los archivos tienen el codigo de referencia correspondiente para poder conseguir sus hijos o padres según se necesite.