You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

denmark-dawa-signature

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

denmark-dawa-signature

Get signature information for the DAWA replication tables.

3.0.0
latest
Source
npm
Version published
Weekly downloads
11
266.67%
Maintainers
2
Weekly downloads
 
Created
Source

#denmark-dawa-signature Build Status

Get signature information for the DAWA replication tables

Installation

npm install denmark-dawa-signature

Documentation

signature = require('denmark-dawa-signature')

DAWA (Danmarks Adressers Web API) is a service provided by the danish government, which exposes multiply APIs for getting address related information. The service supports replication of its tables, this module exposes information about those tables.

signature(function (err, schema) {
	if (err) throw err;

	schema.postnumre = {
		"name": "postnumre",
		"source": "http://dawa.aws.dk/replikering/postnumre",
		"schema": {
			"nr": {
				"name": "nr",
				"description": "Unik identifikation af det postnummeret. Postnumre fastsættes af Post Danmark. Repræsenteret ved fire cifre. Eksempel: ”2400” for ”København NV”.",
				"type": "string",
				"required": true,
				"postgresql": "INTEGER",
				"primary": true,
				"deprecated": false
			},
			"navn": {
				"name": "navn",
				"description": "Det navn der er knyttet til postnummeret, typisk byens eller bydelens navn. Repræsenteret ved indtil 20 tegn. Eksempel: ”København NV”.",
				"type": "string",
				"required": true,
				"postgresql": "VARCHAR(20)",
				"primary": false,
				"deprecated": false
			},
			"stormodtager": {
				"name": "stormodtager",
				"description": "Hvorvidt postnummeret er en særlig type, der er tilknyttet en organisation der modtager en større mængde post.",
				"type": "boolean",
				"required": true,
				"postgresql": "BOOLEAN",
				"primary": false,
				"deprecated": false
			}
		}
	};
});

Source

I made a pull request to DAWA that exposes this information. The schema can now be found on http://dawa.aws.dk/replikeringdok/schema.json.

Keywords

Danmarks Adressers Web API

FAQs

Package last updated on 27 Sep 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts