diff --git a/build.gradle b/build.gradle index 3e8b67f..19d2038 100644 --- a/build.gradle +++ b/build.gradle @@ -4,6 +4,7 @@ buildscript { } dependencies { classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' + //classpath 'com.bmuschko:gradle-clover-plugin:2.2.3' } } @@ -11,8 +12,14 @@ apply plugin: "idea" apply plugin: "java" apply plugin: "groovy" apply plugin: 'maven' +apply plugin: 'jacoco' apply plugin: 'maven-publish' apply plugin: 'com.jfrog.bintray' +//apply from: "${project.projectDir}/gradle/clover.gradle" + +version = "${version}-SNAPSHOT" +sourceCompatibility = 1.8 +targetCompatibility = 1.8 repositories { mavenCentral() @@ -21,11 +28,12 @@ repositories { dependencies { implementation("org.slf4j:slf4j-api:${slf4jVersion}") - //implementation("org.slf4j:slf4j-simple:${slf4jVersion}") implementation('com.google.code.gson:gson:2.8.5') implementation("com.squareup.okhttp3:okhttp:4.1.0") - testCompile("org.codehaus.groovy:groovy-all:${groovyVersion}") + testImplementation("org.slf4j:slf4j-simple:${slf4jVersion}") + testImplementation('com.squareup.okhttp3:mockwebserver:4.1.0') + testCompile("org.codehaus.groovy:groovy-all:${groovyVersion}") testCompile("org.spockframework:spock-core:${spockVersion}") { exclude group: "org.codehaus.groovy" } @@ -60,3 +68,39 @@ bintray { publish = true } } + +jacoco { + toolVersion = "0.8.4" +} + +jacocoTestReport { + group = "verification" + reports { + xml.enabled false + csv.enabled false + html.destination file("${buildDir}/reports/coverage") + } + afterEvaluate { + classDirectories.setFrom(files(classDirectories.files.collect { + fileTree(dir: it, exclude: 'biz/nellemann/libcvrapi/pojo/**') + })) + } +} +test.finalizedBy jacocoTestReport + +jacocoTestCoverageVerification { + violationRules { + rule { + element = 'CLASS' + limit { + counter = 'LINE' + value = 'COVEREDRATIO' + minimum = 0.5 + } + excludes = [ + 'biz.nellemann.libcvrapi.pojo.*' + ] + } + } +} +check.dependsOn jacocoTestCoverageVerification diff --git a/gradle.properties b/gradle.properties index 843a23f..bbe3f7e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ id = libcvrapi group = biz.nellemann.libs -version = 1.0.1 +version = 1.0.2 licenses = ['APACHE-2.0'] // or something else groovyVersion = 2.5.8 slf4jVersion = 1.7.28 diff --git a/gradle/clover.gradle b/gradle/clover.gradle new file mode 100644 index 0000000..56fdcde --- /dev/null +++ b/gradle/clover.gradle @@ -0,0 +1,63 @@ +apply plugin: 'com.bmuschko.clover' + +dependencies { + clover 'org.openclover:clover:4.3.1' +} + +clover { + excludes = ['**/SynchronizedMultiValueMap.java'] + + // This is the default testIncludes configuration + testIncludes = ['**/*Test.java', '**/*Spec.groovy'] + testExcludes = ['**/Mock*.java'] + + targetPercentage = '85%' + + report { + html = true + pdf = true + filter = 'log,main,getters,setters' + + // Support capturing test results from JUnix XML report + testResultsDir = project.tasks.getByName('test').reports.junitXml.destination + testResultsInclude = 'TEST-*.xml' + + // Clover report nested columns support + columns { + coveredMethods format: 'longbar', min: '75' + coveredStatements format: '%' + coveredBranches format: 'raw' + totalPercentageCovered format: '%', scope: 'package' + } + + // Clover history generation support + // See Clover documentation for details of the values supported + historical { + enabled = true + historyIncludes = 'clover-*.xml.gz' + packageFilter = null + from = null + to = null + + added { + range = 10 + interval = '3 weeks' + } + mover { + threshold = 1 + range = 10 + interval = '3 weeks' + } + mover { + threshold = 1 + range = 10 + interval = '3 months' + } + mover { + threshold = 1 + range = 10 + interval = '1 year' + } + } + } +} diff --git a/src/main/java/biz/nellemann/libcvrapi/CvrApi.java b/src/main/java/biz/nellemann/libcvrapi/CvrApi.java index c849f19..3fcd6d5 100644 --- a/src/main/java/biz/nellemann/libcvrapi/CvrApi.java +++ b/src/main/java/biz/nellemann/libcvrapi/CvrApi.java @@ -21,6 +21,7 @@ package biz.nellemann.libcvrapi; import java.io.IOException; +import biz.nellemann.libcvrapi.pojo.Company; import com.google.gson.Gson; import com.google.gson.JsonSyntaxException; @@ -77,6 +78,7 @@ public class CvrApi { */ protected String getCompanyJson(String vatNumber) throws IOException, Exception { String response = get("https://rest.cvrapi.dk/v1/dk/company/" + vatNumber); + log.debug("getCompanyJson() response: " + response); return response; } diff --git a/src/main/java/biz/nellemann/libcvrapi/Accounting.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Accounting.java similarity index 96% rename from src/main/java/biz/nellemann/libcvrapi/Accounting.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Accounting.java index cebd3c7..4c243c2 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Accounting.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Accounting.java @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; import java.util.List; diff --git a/src/main/java/biz/nellemann/libcvrapi/AccountingDocument.java b/src/main/java/biz/nellemann/libcvrapi/pojo/AccountingDocument.java similarity index 96% rename from src/main/java/biz/nellemann/libcvrapi/AccountingDocument.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/AccountingDocument.java index 1968530..48750dd 100644 --- a/src/main/java/biz/nellemann/libcvrapi/AccountingDocument.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/AccountingDocument.java @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class AccountingDocument { diff --git a/src/main/java/biz/nellemann/libcvrapi/AccountingDocumentSummary.java b/src/main/java/biz/nellemann/libcvrapi/pojo/AccountingDocumentSummary.java similarity index 98% rename from src/main/java/biz/nellemann/libcvrapi/AccountingDocumentSummary.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/AccountingDocumentSummary.java index e1b2abe..8a9eb80 100644 --- a/src/main/java/biz/nellemann/libcvrapi/AccountingDocumentSummary.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/AccountingDocumentSummary.java @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; import java.math.BigDecimal; diff --git a/src/main/java/biz/nellemann/libcvrapi/Address.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Address.java similarity index 96% rename from src/main/java/biz/nellemann/libcvrapi/Address.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Address.java index ff52b0f..40cb90b 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Address.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Address.java @@ -6,7 +6,7 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class Address { diff --git a/src/main/java/biz/nellemann/libcvrapi/Capital.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Capital.java similarity index 95% rename from src/main/java/biz/nellemann/libcvrapi/Capital.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Capital.java index 7b34cc8..cbbe741 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Capital.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Capital.java @@ -6,7 +6,7 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class Capital { diff --git a/src/main/java/biz/nellemann/libcvrapi/Company.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Company.java similarity index 97% rename from src/main/java/biz/nellemann/libcvrapi/Company.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Company.java index 5f062d8..35536da 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Company.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Company.java @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; import java.math.BigDecimal; import java.util.ArrayList; diff --git a/src/main/java/biz/nellemann/libcvrapi/Companyform.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Companyform.java similarity index 96% rename from src/main/java/biz/nellemann/libcvrapi/Companyform.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Companyform.java index 0b772e8..6410a8a 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Companyform.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Companyform.java @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class Companyform { diff --git a/src/main/java/biz/nellemann/libcvrapi/Companystatus.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Companystatus.java similarity index 95% rename from src/main/java/biz/nellemann/libcvrapi/Companystatus.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Companystatus.java index 0aea3d2..6959b57 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Companystatus.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Companystatus.java @@ -6,7 +6,7 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class Companystatus { diff --git a/src/main/java/biz/nellemann/libcvrapi/Contact.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Contact.java similarity index 95% rename from src/main/java/biz/nellemann/libcvrapi/Contact.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Contact.java index d4974c4..1d56ce7 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Contact.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Contact.java @@ -6,7 +6,7 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class Contact { diff --git a/src/main/java/biz/nellemann/libcvrapi/Industrycode.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Industrycode.java similarity index 95% rename from src/main/java/biz/nellemann/libcvrapi/Industrycode.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Industrycode.java index fd1b0dc..7c80230 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Industrycode.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Industrycode.java @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class Industrycode { diff --git a/src/main/java/biz/nellemann/libcvrapi/Info.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Info.java similarity index 97% rename from src/main/java/biz/nellemann/libcvrapi/Info.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Info.java index 84428e5..fd0762d 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Info.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Info.java @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class Info { diff --git a/src/main/java/biz/nellemann/libcvrapi/InfoEmployment.java b/src/main/java/biz/nellemann/libcvrapi/pojo/InfoEmployment.java similarity index 96% rename from src/main/java/biz/nellemann/libcvrapi/InfoEmployment.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/InfoEmployment.java index bcd4d19..4832b22 100644 --- a/src/main/java/biz/nellemann/libcvrapi/InfoEmployment.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/InfoEmployment.java @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class InfoEmployment { diff --git a/src/main/java/biz/nellemann/libcvrapi/Life.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Life.java similarity index 95% rename from src/main/java/biz/nellemann/libcvrapi/Life.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Life.java index d5d238e..946fc85 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Life.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Life.java @@ -6,7 +6,7 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class Life { diff --git a/src/main/java/biz/nellemann/libcvrapi/Shareholder.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Shareholder.java similarity index 95% rename from src/main/java/biz/nellemann/libcvrapi/Shareholder.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Shareholder.java index 97e6ca8..17c8834 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Shareholder.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Shareholder.java @@ -6,7 +6,7 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class Shareholder { diff --git a/src/main/java/biz/nellemann/libcvrapi/Status.java b/src/main/java/biz/nellemann/libcvrapi/pojo/Status.java similarity index 96% rename from src/main/java/biz/nellemann/libcvrapi/Status.java rename to src/main/java/biz/nellemann/libcvrapi/pojo/Status.java index 781369d..c96b375 100644 --- a/src/main/java/biz/nellemann/libcvrapi/Status.java +++ b/src/main/java/biz/nellemann/libcvrapi/pojo/Status.java @@ -17,7 +17,7 @@ * under the License. */ -package biz.nellemann.libcvrapi; +package biz.nellemann.libcvrapi.pojo; public class Status { diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml deleted file mode 100644 index bad4d7f..0000000 --- a/src/main/resources/logback.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n - - - - - - - - - - - - - - diff --git a/src/test/groovy/biz/nellemann/libcvrapi/CvrApiSpec.groovy b/src/test/groovy/biz/nellemann/libcvrapi/CvrApiSpec.groovy index 6329d55..27a39fd 100644 --- a/src/test/groovy/biz/nellemann/libcvrapi/CvrApiSpec.groovy +++ b/src/test/groovy/biz/nellemann/libcvrapi/CvrApiSpec.groovy @@ -5,21 +5,19 @@ import spock.lang.Specification class CvrApiSpec extends Specification { CvrApi api - File testFile - String testJson def setup() { api = new CvrApi("Test User Agent", "testAuthToken") - testFile = new File(getClass().getResource('/company.json').toURI()) - testJson = testFile.getText('UTF-8') } def cleanup() { } - void "test we can parse a company"() { + void "test we can parse company with CVR 25063864"() { when: - def company = api.parseJsonIntoCompany(testJson) + def testFile = new File(getClass().getResource('/25063864.json').toURI()) + def testJson = testFile.getText('UTF-8') + def company = api.parseJsonIntoCompany(testJson) then: company != null @@ -30,5 +28,23 @@ class CvrApiSpec extends Specification { company.info.employment.amountEmployeesHigh == 99 } + void "test we can parse company with CVR 15027800"() { + + when: + def testFile = new File(getClass().getResource('/15027800.json').toURI()) + def testJson = testFile.getText('UTF-8') + def company = api.parseJsonIntoCompany(testJson) + + then: + company != null + company.vat == 15027800 + company.life.name == 'FREJA TRANSPORT & LOGISTICS A/S' + company.secondarynames.contains('KT TRANSPORT A/S') + company.info.employment.amountEmployeesLow == 200 + company.info.employment.amountEmployeesHigh == 499 + } + + // TODO: Get better code coverage in tests, eg. by mocking okHttp interface - but how ? + } diff --git a/src/test/resources/15027800.json b/src/test/resources/15027800.json new file mode 100644 index 0000000..81d338c --- /dev/null +++ b/src/test/resources/15027800.json @@ -0,0 +1,2872 @@ +{ + "vat": "15027800", + "address": { + "street": "Viborgvej", + "streetcode": "9036", + "numberfrom": "52", + "numberto": null, + "letterfrom": null, + "letterto": null, + "floor": null, + "door": null, + "zipcode": "7800", + "cityname": "Skive", + "altcityname": null, + "countrycode": "DK", + "coname": null, + "freetext": null, + "municode": "779", + "muniname": "SKIVE", + "mailbox": null, + "start": "1991-03-08", + "end": null, + "timestamp": "2013-11-22" + }, + "companyform": { + "code": "60", + "description": "A/S", + "longdescription": "Aktieselskab", + "holding": false + }, + "companystatus": { + "text": "NORMAL", + "start": "1991-03-08" + }, + "contact": { + "email": null, + "www": "http://www.freja.com", + "phone": "96705000", + "fax": "97524546" + }, + "status": { + "code": null, + "creditcode": null, + "start": null, + "end": null, + "bankrupt": false + }, + "industrycode": { + "code": "522920", + "text": "Speditører" + }, + "life": { + "start": "1991-03-08", + "end": null, + "name": "FREJA TRANSPORT & LOGISTICS A/S", + "adprotected": false + }, + "accounting": { + "period": { + "start": "--01-01", + "end": "--12-31" + }, + "first": { + "start": "1991-01-01", + "end": "1991-12-31" + }, + "restructuring_period": { + "start": null, + "end": null + }, + "revision": true, + "documents": [ + { + "url": "https://regnskaber.cvrapi.dk/00872051/ZG9rdW1lbnRsYWdlcjovLzAzLzI1LzEyL2Q2LzNlLzRiMTEtNGNkZi1hYTljLTNkOTgzMWMwOGRmNA.pdf", + "type": "AARSRAPPORT", + "start": "2018-01-01", + "end": "2018-12-31", + "publicdate": "2019-05-28", + "extension": "pdf", + "summary": { + "start": "2018-01-01", + "end": "2018-12-31", + "revenue": "1691473000", + "grossprofitloss": null, + "employeebenefitsexpense": "-165341000", + "depreciationamortisationexpenseprofitorloss": "-8905000", + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": "44759000", + "equity": "142801000", + "assets": "463250000", + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": "197371000", + "landandbuildings": "18896000", + "currentassets": "265879000", + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": "11374000", + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": 30.825903939557474, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/00872051/ZG9rdW1lbnRsYWdlcjovLzAzLzZlLzEzLzcxLzNjL2VkZDUtNDk4OS04NDAyLWEwNzdmNGY1ODQ3Mw.pdf", + "type": "AARSRAPPORT", + "start": "2017-01-01", + "end": "2017-12-31", + "publicdate": "2018-05-14", + "extension": "pdf", + "summary": { + "start": "2017-01-01", + "end": "2017-12-31", + "revenue": "1303580000", + "grossprofitloss": null, + "employeebenefitsexpense": "-131017000", + "depreciationamortisationexpenseprofitorloss": "-9620000", + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": "7733000", + "equity": "128075000", + "assets": "372457000", + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": "165565000", + "landandbuildings": "3877000", + "currentassets": "206892000", + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": "15263000", + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": 34.38651978617666, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/00872051/ZG9rdW1lbnRsYWdlcjovLzAzLzUzL2I5LzA1L2MwLzM3NzItNGQxMS05ZmIyLWJjZTE5ZTkwZDMxYg.pdf", + "type": "AARSRAPPORT", + "start": "2016-01-01", + "end": "2016-12-31", + "publicdate": "2017-05-30", + "extension": "pdf", + "summary": { + "start": "2016-01-01", + "end": "2016-12-31", + "revenue": "1243881000", + "grossprofitloss": null, + "employeebenefitsexpense": "-125146000", + "depreciationamortisationexpenseprofitorloss": "-9571000", + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": "7864000", + "equity": "120342000", + "assets": "359351000", + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": "178696000", + "landandbuildings": "3877000", + "currentassets": "180655000", + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": "-12528000", + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": 33.48870602836781, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/00872051/ZG9rdW1lbnRsYWdlcjovLzAzLzQ4LzdkLzMzLzkwLzQ3MDEtNGEyOS1hOGE1LTczM2ZjYjU2MjBhNA.pdf", + "type": "AARSRAPPORT", + "start": "2015-01-01", + "end": "2015-12-31", + "publicdate": "2016-05-26", + "extension": "pdf", + "summary": { + "start": "2015-01-01", + "end": "2015-12-31", + "revenue": "1256760000", + "grossprofitloss": null, + "employeebenefitsexpense": "-127383000", + "depreciationamortisationexpenseprofitorloss": "-9397000", + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": "10358000", + "equity": "112478000", + "assets": "368044000", + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": "188022000", + "landandbuildings": "3877000", + "currentassets": "180022000", + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": "-12630000", + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": 30.56101987805806, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/00872051/ZG9rdW1lbnRsYWdlcjovLzAzLzQ4LzljLzFiL2Y0LzhiOTQtNDIyOS05ZTNmLTM0N2U0ZDRkMDIwNg.pdf", + "type": "AARSRAPPORT", + "start": "2014-01-01", + "end": "2014-12-31", + "publicdate": "2015-05-21", + "extension": "pdf", + "summary": { + "start": "2014-01-01", + "end": "2014-12-31", + "revenue": "1139812000", + "grossprofitloss": null, + "employeebenefitsexpense": "-111541000", + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": "53296000", + "equity": "99969000", + "assets": "344135000", + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": "194531000", + "landandbuildings": "3877000", + "currentassets": "149604000", + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": "8530000", + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": 29.04935563078443, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAxMzAxMDE7MjAxMzEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2013-01-01", + "end": "2013-12-31", + "publicdate": "2014-05-13", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAxMjAxMDE7MjAxMjEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2012-01-01", + "end": "2012-12-31", + "publicdate": "2013-07-19", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAxMTAxMDE7MjAxMTEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2011-01-01", + "end": "2011-12-31", + "publicdate": "2012-05-25", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAxMDAxMDE7MjAxMDEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2010-01-01", + "end": "2010-12-31", + "publicdate": "2011-05-13", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAwOTAxMDE7MjAwOTEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2009-01-01", + "end": "2009-12-31", + "publicdate": "2010-05-20", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAwODAxMDE7MjAwODEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2008-01-01", + "end": "2008-12-31", + "publicdate": "2009-06-08", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAwNzAxMDE7MjAwNzEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2007-01-01", + "end": "2007-12-31", + "publicdate": "2008-05-29", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAwNjAxMDE7MjAwNjEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2006-01-01", + "end": "2006-12-31", + "publicdate": "2007-05-30", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAwNTAxMDE7MjAwNTEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2005-01-01", + "end": "2005-12-31", + "publicdate": "2006-05-16", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAwNDAxMDE7MjAwNDEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2004-01-01", + "end": "2004-12-31", + "publicdate": "2005-06-17", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAwMzAxMDE7MjAwMzEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2003-01-01", + "end": "2003-12-31", + "publicdate": "2004-05-13", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAwMjAxMDE7MjAwMjEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2002-01-01", + "end": "2002-12-31", + "publicdate": "2003-04-30", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAwMTAxMDE7MjAwMTEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2001-01-01", + "end": "2001-12-31", + "publicdate": "2002-06-10", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MjAwMDAxMDE7MjAwMDEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "2000-01-01", + "end": "2000-12-31", + "publicdate": "2001-06-15", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MTk5OTAxMDE7MTk5OTEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "1999-01-01", + "end": "1999-12-31", + "publicdate": "2000-05-29", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MTk5ODAxMDE7MTk5ODEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "1998-01-01", + "end": "1998-12-31", + "publicdate": "1999-06-14", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MTk5NzAxMDE7MTk5NzEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "1997-01-01", + "end": "1997-12-31", + "publicdate": "1998-07-06", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MTk5NjAxMDE7MTk5NjEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "1996-01-01", + "end": "1996-12-31", + "publicdate": "1997-07-03", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + }, + { + "url": "https://regnskaber.cvrapi.dk/tiff/00872051/Y3ZyLmRrOi8vcGRmcy8xNTAyNzgwMDtBL1MxOTc5ODE7MTk5NTAxMDE7MTk5NTEyMzE7UjtS.pdf", + "type": "AARSRAPPORT", + "start": "1995-01-01", + "end": "1995-12-31", + "publicdate": "1996-05-28", + "extension": "pdf", + "summary": { + "start": null, + "end": null, + "revenue": null, + "grossprofitloss": null, + "employeebenefitsexpense": null, + "depreciationamortisationexpenseprofitorloss": null, + "profitlossfromordinaryoperatingactivities": null, + "incomefrominvestmentsingroupenterprises": null, + "otherfinanceincome": null, + "otherfinanceexpenses": null, + "profitlossfromordinaryactivitiesbeforetax": null, + "taxexpenseonordinaryactivities": null, + "taxexpense": null, + "profitloss": null, + "equity": null, + "assets": null, + "proposeddividendrecognisedinequity": null, + "proposeddividend": null, + "dividend": null, + "noncurrentassets": null, + "landandbuildings": null, + "currentassets": null, + "inventories": null, + "shorttermtradereceivables": null, + "cashandcashequivalents": null, + "equityloan": null, + "provisions": null, + "longtermliabilitiesotherthanprovisions": null, + "shorttermliabilitiesotherthanprovisions": null, + "liabilitiesandequity": null, + "coverage": null, + "operatingmargin": null, + "roi": null, + "liquidityratio": null, + "solvencyratio": null, + "equityreturn": null, + "averagenumberofemployees": null + } + } + ], + "tax": [ + { + "year": 2012, + "tradeid": 15027800, + "managementvat": 20305738, + "companytype": "Datterselskab", + "taxlaw": "Selskabsskatteloven § 1.1.1", + "taxableincome": 0, + "deficit": 0, + "paidtax": 0, + "tonnageorcarbon": null + }, + { + "year": 2013, + "tradeid": 15027800, + "managementvat": 20305738, + "companytype": "Datterselskab", + "taxlaw": "Selskabsskatteloven § 1.1.1", + "taxableincome": 0, + "deficit": 0, + "paidtax": 0, + "tonnageorcarbon": null + }, + { + "year": 2014, + "tradeid": 15027800, + "managementvat": 20305738, + "companytype": "Datterselskab", + "taxlaw": "Selskabsskatteloven § 1.1.1", + "taxableincome": 0, + "deficit": 0, + "paidtax": 0, + "tonnageorcarbon": null + }, + { + "year": 2015, + "tradeid": 15027800, + "managementvat": 20305738, + "companytype": "Datterselskab", + "taxlaw": "Selskabsskatteloven § 1.1.1", + "taxableincome": 0, + "deficit": 0, + "paidtax": 0, + "tonnageorcarbon": null + }, + { + "year": 2016, + "tradeid": 15027800, + "managementvat": 20305738, + "companytype": "Datterselskab", + "taxlaw": "Selskabsskatteloven § 1.1.1", + "taxableincome": 0, + "deficit": 0, + "paidtax": 0, + "tonnageorcarbon": null + }, + { + "year": 2017, + "tradeid": 15027800, + "managementvat": 20305738, + "companytype": "Datterselskab", + "taxlaw": "Selskabsskatteloven § 1.1.1", + "taxableincome": 0, + "deficit": 0, + "paidtax": 0, + "tonnageorcarbon": null + } + ] + }, + "capital": { + "capital": "10000000", + "currency": "DKK", + "partial": false, + "ipo": false + }, + "shareholder": { + "below_5_percent": false, + "public": false + }, + "info": { + "articles_of_association": "2018-06-01", + "purpose": "Selskabets formål er at drive speditionsvirksomhed, vognmandskørsel samt handel. Selskabets virksomhed omfatter ikke køb og salg af fast ejendom for fremmed regning.", + "bind": "Selskabet tegnes alene af bestyrelsens formand, af en direktør i forening med 2 bestyrelsesmedlemmer eller af den samlede bestyrelse.", + "modes": { + "legislation_money_laundering": false, + "social_economic": false, + "government": false + }, + "attributes": [], + "demerges": [ + { + "start": "2003-08-25", + "end": "2003-08-25", + "outgoing": [ + { + "company": { + "vat": "27330606", + "slug": null, + "life": { + "start": "2003-08-25", + "end": null, + "name": "EJENDOMSSELSKABET VIBORGVEJ 52, 7800 SKIVE ApS", + "adprotected": false + } + } + } + ] + } + ], + "merges": null, + "lei": { + "id": "5493004DX7XI1RJPFT16" + }, + "employment": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2019", + "month": "2" + } + }, + "secondarynames": [ + "FREJA LOGISTIC A/S", + "SPEDITION FREJA A/S", + "LOADMASTER A/S", + "KOMBI TRAFIK EUROPA A/S", + "KOMBI SHIP LIMITED A/S", + "KT TRANSPORT A/S", + "KT DANMARK A/S", + "KT A/S", + "CARGO EXPRESS INTERNATIONAL TRANSPORT OG SPEDITION A/S", + "CARGO NORD A/S", + "FREJA AIR & SEA A/S", + "FREJA PROJECT LOGISTICS A/S", + "FREJA ROAD A/S", + "FREJA SOLUTION A/S", + "FREJA LINES A/S", + "FREJA SHIPPING A/S", + "FREJA SHIPPING-GROUP A/S", + "FREJA GLOBAL FORWARDING A/S", + "FREJA EXPRESS A/S", + "FREJA DEDICATED SERVICES A/S", + "FREJA CONSULTANCY A/S", + "TRANSCARGO A/S. INTERNATIONAL TRANSPORT & SPEDITION" + ], + "industrycodes": [], + "subsidiaries": [ + "1004821252", + "1020650059", + "1003632607", + "1023638432", + "1015106316", + "1004368880", + "1010437349", + "1020650083", + "1002965463", + "1002563291" + ], + "employment": [ + { + "months": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2019", + "month": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2019", + "month": "1" + } + ] + }, + { + "months": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "12" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "11" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "10" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "9" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "8" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "7" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "6" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "5" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "month": "1" + } + ], + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2018", + "quarter": "1" + } + ] + }, + { + "months": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "12" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "11" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "10" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "9" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "8" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "7" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "6" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "5" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "month": "1" + } + ], + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2017" + } + }, + { + "months": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "month": "12" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "month": "11" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "month": "10" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "month": "9" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "month": "8" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "month": "7" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "month": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "month": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "month": "1" + } + ], + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2016" + } + }, + { + "months": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "month": "12" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "month": "11" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "month": "10" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "month": "9" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "month": "8" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "month": "5" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "month": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "month": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "month": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "month": "1" + } + ], + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015", + "quarter": "2" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2015" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2014", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2014", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2014", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2014", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2014" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2013", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2013", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2013", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2013", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2013" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2012", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2012", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2012", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2012", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2012" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2011", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2011", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2011", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2011", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2011" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2010", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2010", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2010", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2010", + "quarter": "1" + } + ] + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2009", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2009", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2009", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2009", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2009" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2008", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2008", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2008", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2008", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2008" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2007", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2007", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2007", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2007", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2007" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2006", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2006", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2006", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2006", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2006" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2005", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2005", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2005", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2005", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_200_499", + "amountEmployeesLow": "200", + "amountEmployeesHigh": "499", + "year": "2005" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2004", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2004", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2004", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2004", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2004" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2003", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2003", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2003", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2003", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2003" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2002", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2002", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2002", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2002", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2002" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2001", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2001", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2001", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2001", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2001" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2000", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2000", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2000", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2000", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "2000" + } + }, + { + "quarters": [ + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "1999", + "quarter": "4" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "1999", + "quarter": "3" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "1999", + "quarter": "2" + }, + { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "1999", + "quarter": "1" + } + ], + "year": { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "1999" + } + }, + { + "year": { + "intervalAmountEmployees": "ANTAL_100_199", + "amountEmployeesLow": "100", + "amountEmployeesHigh": "199", + "year": "1998" + } + }, + { + "year": { + "intervalAmountEmployees": "ANTAL_50_99", + "amountEmployeesLow": "50", + "amountEmployeesHigh": "99", + "year": "1997" + } + } + ], + "participants": [ + { + "participantnumber": "4003974974", + "address": { + "street": null, + "streetcode": null, + "numberfrom": null, + "numberto": null, + "letterfrom": null, + "letterto": null, + "floor": null, + "door": null, + "zipcode": null, + "cityname": null, + "altcityname": null, + "countrycode": "DK", + "coname": null, + "freetext": null, + "municode": null, + "muniname": null, + "mailbox": null, + "start": null, + "end": null, + "timestamp": null, + "unlisted": false + }, + "life": { + "name": "Frede Alstrup", + "profession": "Kørselsleder", + "deceased": true + }, + "participant": true, + "roles": [ + { + "type": "founder", + "life": { + "start": "1991-03-08", + "end": null, + "title": null + } + } + ] + }, + { + "participantnumber": "4004090198", + "address": { + "street": "Vesterhåb", + "streetcode": "9448", + "numberfrom": "63", + "numberto": null, + "letterfrom": null, + "letterto": null, + "floor": null, + "door": null, + "zipcode": "8300", + "cityname": "Odder", + "altcityname": null, + "countrycode": "DK", + "coname": null, + "freetext": null, + "municode": "727", + "muniname": "ODDER", + "mailbox": null, + "start": null, + "end": null, + "timestamp": null, + "unlisted": false + }, + "life": { + "name": "Jan Erik Soll Sunde", + "profession": null, + "deceased": false + }, + "participant": true, + "roles": [ + { + "type": "director", + "life": { + "start": "2019-05-10", + "end": null, + "title": "Direktør" + } + } + ] + }, + { + "participantnumber": "4004100256", + "address": { + "street": "Pinstrup Høj", + "streetcode": "1686", + "numberfrom": "1", + "numberto": null, + "letterfrom": null, + "letterto": null, + "floor": null, + "door": null, + "zipcode": "9240", + "cityname": "Nibe", + "altcityname": null, + "countrycode": "DK", + "coname": null, + "freetext": null, + "municode": "851", + "muniname": "AALBORG", + "mailbox": null, + "start": null, + "end": null, + "timestamp": null, + "unlisted": false + }, + "life": { + "name": "Lars Bakkegaard", + "profession": null, + "deceased": false + }, + "participant": true, + "roles": [ + { + "type": "board", + "life": { + "election_format": "Generalforsamling", + "start": "2014-05-09", + "end": null, + "title": null + } + } + ] + }, + { + "participantnumber": "4004152411", + "address": { + "street": "Nordhøjen", + "streetcode": "5755", + "numberfrom": "15", + "numberto": null, + "letterfrom": null, + "letterto": null, + "floor": null, + "door": null, + "zipcode": "4000", + "cityname": "Roskilde", + "altcityname": "Himmelev", + "countrycode": "DK", + "coname": null, + "freetext": null, + "municode": "265", + "muniname": "ROSKILDE", + "mailbox": null, + "start": null, + "end": null, + "timestamp": null, + "unlisted": false + }, + "life": { + "name": "Ulrik Egmose Rasmussen", + "profession": null, + "deceased": false + }, + "participant": true, + "roles": [ + { + "type": "board", + "life": { + "election_format": "Generalforsamling", + "start": "2019-05-14", + "end": null, + "title": "Bestyrelsesmedlem" + } + } + ] + }, + { + "participantnumber": "4004173092", + "address": { + "street": "Durupvej", + "streetcode": "134", + "numberfrom": "23", + "numberto": null, + "letterfrom": null, + "letterto": null, + "floor": null, + "door": null, + "zipcode": "7870", + "cityname": "Roslev", + "altcityname": "Glyngøre", + "countrycode": "DK", + "coname": null, + "freetext": null, + "municode": "779", + "muniname": "SKIVE", + "mailbox": null, + "start": null, + "end": null, + "timestamp": null, + "unlisted": false + }, + "life": { + "name": "Jørgen Jørgensen Hansen", + "profession": "Speditør", + "deceased": false + }, + "participant": true, + "roles": [ + { + "type": "founder", + "life": { + "start": "1991-03-08", + "end": null, + "title": null + } + }, + { + "type": "board", + "life": { + "election_format": "Generalforsamling", + "start": "2014-05-09", + "end": null, + "title": "Formand" + } + }, + { + "type": "real_owner", + "life": { + "owner_percent": 62.45, + "owner_voting_percent": 62.45, + "special_ownership": "Har indirekte besiddelser", + "start": "2014-04-28", + "end": null + } + } + ] + }, + { + "vat": "14807381", + "address": { + "street": "Durupvej", + "streetcode": "134", + "numberfrom": "23", + "numberto": null, + "letterfrom": null, + "letterto": null, + "floor": null, + "door": null, + "zipcode": "7870", + "cityname": "Roslev", + "altcityname": "Glyngøre", + "countrycode": "DK", + "coname": null, + "freetext": null, + "municode": "779", + "muniname": "SKIVE", + "mailbox": null, + "start": "2007-01-01", + "end": null, + "timestamp": "2006-12-28" + }, + "companyform": { + "code": "80", + "description": "APS", + "longdescription": "Anpartsselskab", + "holding": false + }, + "companystatus": { + "text": "NORMAL", + "start": "1990-10-30" + }, + "life": { + "start": "1990-10-30", + "end": null, + "name": "AH SKIVE ApS", + "adprotected": false + }, + "company": true, + "roles": [ + { + "type": "founder", + "life": { + "start": "1991-03-08", + "end": null, + "title": null + } + } + ] + }, + { + "vat": "20222670", + "address": { + "street": "Kystvejen", + "streetcode": "4654", + "numberfrom": "29", + "numberto": null, + "letterfrom": null, + "letterto": null, + "floor": null, + "door": null, + "zipcode": "8000", + "cityname": "Aarhus C", + "altcityname": null, + "countrycode": "DK", + "coname": null, + "freetext": null, + "municode": "751", + "muniname": "AARHUS", + "mailbox": null, + "start": "2010-08-19", + "end": null, + "timestamp": "2014-05-27" + }, + "companyform": { + "code": "60", + "description": "A/S", + "longdescription": "Aktieselskab", + "holding": false + }, + "companystatus": { + "text": "NORMAL", + "start": "1997-08-15" + }, + "life": { + "start": "1997-08-15", + "end": null, + "name": "BDO STATSAUTORISERET REVISIONSAKTIESELSKAB", + "adprotected": true + }, + "company": true, + "roles": [ + { + "type": "accountant", + "life": { + "start": "2005-10-06", + "end": null + } + } + ] + }, + { + "vat": "35839224", + "address": { + "street": "Viborgvej", + "streetcode": "9036", + "numberfrom": "52", + "numberto": null, + "letterfrom": null, + "letterto": null, + "floor": null, + "door": null, + "zipcode": "7800", + "cityname": "Skive", + "altcityname": null, + "countrycode": "DK", + "coname": null, + "freetext": null, + "municode": "779", + "muniname": "SKIVE", + "mailbox": null, + "start": "2014-04-28", + "end": null, + "timestamp": "2014-04-29" + }, + "companyform": { + "code": "60", + "description": "A/S", + "longdescription": "Aktieselskab", + "holding": true + }, + "companystatus": { + "text": "NORMAL", + "start": "2014-04-28" + }, + "life": { + "start": "2014-04-28", + "end": null, + "name": "FREJA TRANSPORT & LOGISTICS HOLDING A/S", + "adprotected": false + }, + "company": true, + "roles": [ + { + "type": "owner", + "life": { + "owner_percent": 100, + "owner_voting_percent": 100, + "start": "2014-04-28", + "end": null + } + } + ] + }, + { + "participantnumber": "4008084699", + "address": { + "street": null, + "streetcode": null, + "numberfrom": null, + "numberto": null, + "letterfrom": null, + "letterto": null, + "floor": null, + "door": null, + "zipcode": null, + "cityname": null, + "altcityname": null, + "countrycode": "NO", + "coname": null, + "freetext": "Frøyas Vei 2A, NO-1412 Sofiemyr", + "municode": null, + "muniname": null, + "mailbox": null, + "start": null, + "end": null, + "timestamp": null, + "unlisted": false + }, + "life": { + "name": "Kjell-Arne Eloranta", + "profession": null, + "deceased": false + }, + "participant": true, + "roles": [ + { + "type": "board", + "life": { + "election_format": "Generalforsamling", + "start": "2019-05-10", + "end": null, + "title": "Bestyrelsesmedlem" + } + } + ] + } + ], + "participations": [] +} diff --git a/src/test/resources/company.json b/src/test/resources/25063864.json similarity index 100% rename from src/test/resources/company.json rename to src/test/resources/25063864.json diff --git a/src/test/resources/logback-test.xml b/src/test/resources/logback-test.xml deleted file mode 100644 index 28fbcce..0000000 --- a/src/test/resources/logback-test.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n - - - - - - - - - - - - - - -