-
Notifications
You must be signed in to change notification settings - Fork 0
/
scb.json
7953 lines (7953 loc) · 221 KB
/
scb.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Alkoholsortimentsnämnden": {
"org_nr": "202100-5943",
"created_by": "2007:1216",
"email": "[email protected]",
"phone": "087000800",
"website": "www.kammarkollegiet.se/rattsavdelningen/alkoholsortimentsnamnden",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "Box 2218",
"postcode": "103 15",
"city": "STOCKHOLM"
},
"office_address": {
"address": "",
"postcode": "000 00",
"city": "STOCKHOLM"
},
"start": 2008
},
"ALLMÄNNA REKLAMATIONSNÄMNDEN": {
"org_nr": "202100-3625",
"created_by": "2015:739",
"email": "[email protected]",
"phone": "0850886000",
"website": "www.arn.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 174",
"postcode": "101 23",
"city": "STOCKHOLM"
},
"office_address": {
"address": "KUNGSHOLMSTORG 5",
"postcode": "112 21",
"city": "STOCKHOLM"
}
},
"Ansvarsnämnden för djurens hälso- och sjukvård": {
"org_nr": "202100-6834",
"created_by": "2009:302",
"email": "[email protected]",
"phone": "036155853",
"website": "www.vetansvar.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 322",
"postcode": "551 15",
"city": "JÖNKÖPING"
},
"office_address": {
"address": "Vallgatan 8",
"postcode": "553 16",
"city": "JÖNKÖPING"
}
},
"ARBETSFÖRMEDLINGEN": {
"org_nr": "202100-2114",
"created_by": "2007:1030",
"email": "[email protected]",
"phone": "0771600053",
"website": "www.arbetsformedlingen.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "ELEKTROGATAN 4",
"postcode": "171 54",
"city": "SOLNA"
}
},
"ARBETSGIVARVERKET": {
"org_nr": "202100-3476",
"created_by": "2007:829",
"email": "[email protected]",
"phone": "087001300",
"website": "www.arbetsgivarverket.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "Mäster Samuelsgatan 60 9 tr",
"postcode": "111 21",
"city": "STOCKHOLM"
},
"office_address": {
"address": "Mäster Samuelsgatan 60",
"postcode": "111 21",
"city": "STOCKHOLM"
}
},
"ARBETSMILJÖVERKET": {
"org_nr": "202100-2148",
"created_by": "2007:913",
"email": "[email protected]",
"phone": "0107309000",
"website": "www.av.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 9082",
"postcode": "171 09",
"city": "SOLNA"
},
"office_address": {
"address": "SVETSARVÄGEN 12 2TR",
"postcode": "171 41",
"city": "SOLNA"
},
"short_name": "AV"
},
"Arvfondsdelegationen": {
"org_nr": "202100-5950",
"created_by": "2004:484",
"email": "[email protected]",
"phone": "087000800",
"website": "www.arvsfonden.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 2218",
"postcode": "103 15",
"city": "STOCKHOLM"
},
"office_address": {
"address": "Slottsbacken 6",
"postcode": "111 30",
"city": "STOCKHOLM"
},
"start": 2008
},
"BARNOMBUDSMANNEN": {
"org_nr": "202100-3690",
"created_by": "2007:1021",
"email": "[email protected]",
"phone": "086922950",
"website": "www.barnombudsmannen.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 22106",
"postcode": "104 22",
"city": "STOCKHOLM"
},
"office_address": {
"address": "NORR MÄLARSTRAND 6",
"postcode": "112 20",
"city": "STOCKHOLM"
}
},
"BLEKINGE TEKNISKA HÖGSKOLA": {
"org_nr": "202100-4011",
"created_by": "1993:100",
"email": "[email protected]",
"phone": "0455385000",
"website": "www.bth.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "VALHALLAVÄGEN 1",
"postcode": "371 41",
"city": "KARLSKRONA"
}
},
"BOKFÖRINGSNÄMNDEN": {
"org_nr": "202100-3278",
"created_by": "2017:153",
"email": "[email protected]",
"phone": "0840898990",
"website": "www.bfn.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 7849",
"postcode": "103 99",
"city": "STOCKHOLM"
},
"office_address": {
"address": "BRUNNSGATAN 3",
"postcode": "111 38",
"city": "STOCKHOLM"
}
},
"BOLAGSVERKET": {
"org_nr": "202100-5489",
"created_by": "2007:1110",
"email": "[email protected]",
"phone": "0771670670",
"website": "www.bolagsverket.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "STUVARVÄGEN 21",
"postcode": "852 29",
"city": "SUNDSVALL"
}
},
"BOVERKET": {
"org_nr": "202100-3989",
"created_by": "2012:546",
"email": "[email protected]",
"phone": "0455353000",
"website": "www.boverket.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 534",
"postcode": "371 23",
"city": "KARLSKRONA"
},
"office_address": {
"address": "DROTTNINGGATAN 18",
"postcode": "371 11",
"city": "KARLSKRONA"
}
},
"BROTTSFÖREBYGGANDE RÅDET": {
"org_nr": "202100-0068",
"created_by": "2016:1201",
"email": "[email protected]",
"phone": "0852758400",
"website": "www.bra.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 1386",
"postcode": "111 93",
"city": "STOCKHOLM"
},
"office_address": {
"address": "TEGNÉRGATAN 23",
"postcode": "111 40",
"city": "STOCKHOLM"
}
},
"BROTTSOFFERMYNDIGHETEN": {
"org_nr": "202100-3435",
"created_by": "2007:1171",
"email": "[email protected]",
"phone": "090708200",
"website": "www.brottsoffermyndigheten.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 470",
"postcode": "901 09",
"city": "UMEÅ"
},
"office_address": {
"address": "STORGATAN 49",
"postcode": "903 26",
"city": "UMEÅ"
}
},
"CENTRALA DJURFÖRSÖKSETISKA NÄMNDEN": {
"org_nr": "202100-6909",
"created_by": "1988:539",
"email": "[email protected]",
"phone": "",
"website": "www.cdfn.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "",
"postcode": "000 00",
"city": "JÖNKÖPING"
}
},
"CENTRALA STUDIESTÖDSNÄMNDEN": {
"org_nr": "202100-1819",
"created_by": "2007:1071",
"email": "[email protected]",
"phone": "060186000",
"website": "www.csn.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "NORRA TJÄRNGATAN 2",
"postcode": "852 33",
"city": "SUNDSVALL"
}
},
"Delegationen för folkrättslig granskning av vapenprojekt": {
"org_nr": "202100-6842",
"created_by": "2007:936",
"email": "",
"phone": "",
"website": "",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "",
"postcode": "000 00",
"city": "STOCKHOLM"
}
},
"Diskrimineringsombudsmannen": {
"org_nr": "202100-6073",
"created_by": "2008:1401",
"email": "[email protected]",
"phone": "0812020700",
"website": "www.do.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "Box 4057",
"postcode": "169 04",
"city": "SOLNA"
},
"office_address": {
"address": "Råsundavägen 18",
"postcode": "169 67",
"city": "SOLNA"
},
"start": 2009
},
"Domarnämnden": {
"org_nr": "202100-6081",
"created_by": "2010:1793",
"email": "[email protected]",
"phone": "0856166950",
"website": "www.domstol.se/domarnamnden",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 2330",
"postcode": "103 18",
"city": "STOCKHOLM"
},
"office_address": {
"address": "BIRGER JARLS TORG 5",
"postcode": "111 28",
"city": "STOCKHOLM"
},
"start": 2008
},
"E-hälsomyndigheten": {
"org_nr": "202100-6552",
"created_by": "2013:1031",
"email": "[email protected]",
"phone": "0104586200",
"website": "www.ehalsomyndigheten.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "Box 913",
"postcode": "391 29",
"city": "KALMAR"
},
"office_address": {
"address": "SÖDRA LÅNGGATAN 60",
"postcode": "392 31",
"city": "KALMAR"
},
"start": 2014
},
"EKOBROTTSMYNDIGHETEN": {
"org_nr": "202100-4979",
"created_by": "2015:744",
"email": "[email protected]",
"phone": "0105629000",
"website": "www.ekobrottsmyndigheten.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 22098",
"postcode": "104 22",
"city": "STOCKHOLM"
},
"office_address": {
"address": "Hantverkargatan 11",
"postcode": "112 21",
"city": "STOCKHOLM"
}
},
"EKONOMISTYRNINGSVERKET": {
"org_nr": "202100-5026",
"created_by": "2016:1023",
"email": "[email protected]",
"phone": "086904300",
"website": "www.esv.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 45316",
"postcode": "104 30",
"city": "STOCKHOLM"
},
"office_address": {
"address": "DROTTNINGGATAN 89",
"postcode": "113 60",
"city": "STOCKHOLM"
}
},
"ELSÄKERHETSVERKET": {
"org_nr": "202100-4466",
"created_by": "2007:1121",
"email": "[email protected]",
"phone": "0101680500",
"website": "www.elsakerhetsverket.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 4",
"postcode": "681 21",
"city": "KRISTINEHAMN"
},
"office_address": {
"address": "Nya kyrkogatan 18 B",
"postcode": "681 31",
"city": "KRISTINEHAMN"
}
},
"Energimarknadsinspektionen": {
"org_nr": "202100-5695",
"created_by": "2016:742",
"email": "[email protected]",
"phone": "016162700",
"website": "www.ei.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 155",
"postcode": "631 03",
"city": "ESKILSTUNA"
},
"office_address": {
"address": "Libergsgatan 6",
"postcode": "632 21",
"city": "ESKILSTUNA"
},
"start": 2008
},
"ETIKPRÖVNINGSMYNDIGHETEN": {
"org_nr": "202100-6925",
"created_by": "2018:1879",
"email": "[email protected]",
"phone": "0104750800",
"website": "www.etikprovning.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "Box 2110",
"postcode": "750 02",
"city": "UPPSALA"
},
"office_address": {
"address": "DROTTNINGGATAN 7",
"postcode": "752 37",
"city": "UPPSALA"
},
"start": 2019
},
"EXPORTKREDITNÄMNDEN": {
"org_nr": "202100-2098",
"created_by": "2007:1217",
"email": "[email protected]",
"phone": "087880000",
"website": "www.ekn.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 3064",
"postcode": "103 61",
"city": "STOCKHOLM"
},
"office_address": {
"address": "KUNGSGATAN 36",
"postcode": "111 35",
"city": "STOCKHOLM"
}
},
"FASTIGHETSMÄKLARINSPEKTIONEN": {
"org_nr": "202100-4870",
"created_by": "2009:606",
"email": "[email protected]",
"phone": "0104580100",
"website": "www.fmi.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 5045",
"postcode": "650 05",
"city": "KARLSTAD"
},
"office_address": {
"address": "VÅXNÄSGATAN 10",
"postcode": "653 40",
"city": "KARLSTAD"
}
},
"FIDEIKOMMISSNÄMNDEN": {
"org_nr": "202100-0043",
"created_by": "2007:1074",
"email": "[email protected]",
"phone": "087000800",
"website": "www.kammarkollegiet.se/om-oss/kammarkollegiets-uppgifter/kammarkollegiets-stod-till-andra-myndigheter/fideikommissnamnden",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 2218",
"postcode": "103 15",
"city": "STOCKHOLM"
},
"office_address": {
"address": ""
}
},
"FINANSINSPEKTIONEN": {
"org_nr": "202100-4235",
"created_by": "2009:93",
"email": "[email protected]",
"phone": "0840898000",
"website": "www.fi.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 7821",
"postcode": "103 97",
"city": "STOCKHOLM"
},
"office_address": {
"address": "BRUNNSGATAN 3",
"postcode": "111 38",
"city": "STOCKHOLM"
}
},
"FINANSPOLITISKA RÅDET": {
"org_nr": "202100-5687",
"created_by": "2011:446",
"email": "[email protected]",
"phone": "084535990",
"website": "www.fpr.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "Box 3273",
"postcode": "103 65",
"city": "STOCKHOLM"
},
"office_address": {
"address": "Fleminggatan 7",
"postcode": "112 26",
"city": "STOCKHOLM"
}
},
"FOLKE BERNADOTTEAKADEMIN": {
"org_nr": "202100-5380",
"created_by": "2013:727",
"email": "[email protected]",
"phone": "0104562300",
"website": "www.fba.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "Box 27068",
"postcode": "102 51",
"city": "STOCKHOLM"
},
"office_address": {
"address": "Sandövägen 1",
"postcode": "872 64",
"city": "SANDÖVERKEN"
}
},
"Folkhälsomyndigheten": {
"org_nr": "202100-6545",
"created_by": "2021:248",
"email": "[email protected]",
"phone": "0102052000",
"website": "www.folkhalsomyndigheten.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "NOBELS VÄG 18",
"postcode": "171 65",
"city": "SOLNA"
},
"start": 2014
},
"FONDTORGSNÄMNDEN": {
"org_nr": "202100-7030",
"created_by": "2022:759",
"email": "[email protected]",
"phone": "0104598500",
"website": "www.ftn.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 38040",
"postcode": "100 64",
"city": "STOCKHOLM"
},
"office_address": {
"address": "Bruksvägen 11",
"postcode": "147 43",
"city": "TUMBA"
},
"start": 2022
},
"Forskarskattenämnden": {
"org_nr": "202100-5893",
"created_by": "2007:786",
"email": "[email protected]",
"phone": "0105747957",
"website": "www.forskarskattenamnden.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "Box 24144",
"postcode": "104 51",
"city": "STOCKHOLM"
},
"office_address": {
"address": "Karlavägen 108",
"postcode": "115 26",
"city": "STOCKHOLM"
},
"start": 2008
},
"FORSKNINGSRÅDET F MILJÖ, AREELLA NÄRINGAR OCH SAMHÄLLSBYGGANDE": {
"org_nr": "202100-5232",
"created_by": "2009:1024",
"email": "[email protected]",
"phone": "087754000",
"website": "www.formas.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 1206",
"postcode": "111 82",
"city": "STOCKHOLM"
},
"office_address": {
"address": "DROTTNINGGATAN 89",
"postcode": "113 60",
"city": "STOCKHOLM"
}
},
"FORSKNINGSRÅDET FÖR HÄLSA, ARBETSLIV OCH VÄLFÄRD": {
"org_nr": "202100-5240",
"created_by": "2007:1431",
"email": "[email protected]",
"phone": "087754070",
"website": "www.forte.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "MAGNUS LADULÅSGATAN 65",
"postcode": "118 27",
"city": "STOCKHOLM"
},
"office_address": {
"address": "RINGVÄGEN 100",
"postcode": "118 60",
"city": "STOCKHOLM"
}
},
"FORTIFIKATIONSVERKET": {
"org_nr": "202100-4607",
"created_by": "2007:758",
"email": "[email protected]",
"phone": "0104444000",
"website": "www.fortifikationsverket.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "KUNGSGATAN 43",
"postcode": "632 17",
"city": "ESKILSTUNA"
}
},
"FORUM FÖR LEVANDE HISTORIA": {
"org_nr": "202100-5356",
"created_by": "2007:1197",
"email": "[email protected]",
"phone": "087238750",
"website": "www.levandehistoria.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "Box 2123",
"postcode": "103 13",
"city": "STOCKHOLM"
},
"office_address": {
"address": "Stora Nygatan 10-12",
"postcode": "111 27",
"city": "STOCKHOLM"
}
},
"FÖRSVARETS MATERIELVERK": {
"org_nr": "202100-0340",
"created_by": "2007:854",
"email": "[email protected]",
"phone": "087824000",
"website": "www.fmv.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "BANÉRGATAN 62",
"postcode": "115 53",
"city": "STOCKHOLM"
}
},
"FÖRSVARETS RADIOANSTALT": {
"org_nr": "202100-0365",
"created_by": "2007:937",
"email": "[email protected]",
"phone": "0105574600",
"website": "www.fra.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 301",
"postcode": "161 26",
"city": "BROMMA"
},
"office_address": {
"address": "RÖRBYVÄGEN 20",
"postcode": "178 93",
"city": "DROTTNINGHOLM"
}
},
"FÖRSVARSHÖGSKOLAN": {
"org_nr": "202100-4730",
"created_by": "2007:1164",
"email": "[email protected]",
"phone": "0855342500",
"website": "www.fhs.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 27805",
"postcode": "115 93",
"city": "STOCKHOLM"
},
"office_address": {
"address": "DROTTNING KRISTINAS VÄG 37",
"postcode": "114 28",
"city": "STOCKHOLM"
}
},
"FÖRSVARSMAKTEN": {
"org_nr": "202100-4615",
"created_by": "2007:1266",
"email": "[email protected]",
"phone": "087887500",
"website": "www.forsvarsmakten.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "Lidingövägen 24",
"postcode": "115 57",
"city": "STOCKHOLM"
}
},
"FÖRSÄKRINGSKASSAN": {
"org_nr": "202100-5521",
"created_by": "2009:1174",
"email": "[email protected]",
"phone": "087869000",
"website": "www.forsakringskassan.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "LM ERICSSONS VÄG 28",
"postcode": "126 26",
"city": "HÄGERSTEN"
}
},
"GENTEKNIKNÄMNDEN": {
"org_nr": "202100-4813",
"created_by": "2007:1075",
"email": "[email protected]",
"phone": "08271254",
"website": "www.genteknik.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 1035",
"postcode": "101 38",
"city": "STOCKHOLM"
},
"office_address": {
"address": ""
}
},
"Granskningsnämnden för försvarsuppfinningar": {
"org_nr": "202100-6859",
"created_by": "2007:855",
"email": "",
"phone": "",
"website": "",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "",
"postcode": "000 00",
"city": "STOCKHOLM"
}
},
"Gymnastik- och idrottshögskolan": {
"org_nr": "202100-4334",
"created_by": "1993:100",
"email": "[email protected]",
"phone": "0812053700",
"website": "www.gih.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 5626",
"postcode": "114 86",
"city": "STOCKHOLM"
},
"office_address": {
"address": "LIDINGÖVÄGEN 1",
"postcode": "114 33",
"city": "STOCKHOLM"
},
"short_name": "GIH"
},
"GÖTEBORGS UNIVERSITET": {
"org_nr": "202100-3153",
"created_by": "1993:100",
"email": "[email protected]",
"phone": "0317860000",
"website": "www.gu.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 100",
"postcode": "405 30",
"city": "GÖTEBORG"
},
"office_address": {
"address": "Universitetsplatsen 1",
"postcode": "411 24",
"city": "GÖTEBORG"
}
},
"HARPSUNDSNÄMNDEN": {
"org_nr": "202100-4250",
"created_by": "2007:1227",
"email": "[email protected]",
"phone": "015760003",
"website": "www.harpsund.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "HARPSUND",
"postcode": "642 63",
"city": "MELLÖSA"
},
"office_address": {
"address": "HARPSUND",
"postcode": "642 63",
"city": "MELLÖSA"
}
},
"HAVS- OCH VATTENMYNDIGHETEN": {
"org_nr": "202100-6420",
"created_by": "2011:619",
"email": "[email protected]",
"phone": "0106986000",
"website": "www.havochvatten.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 11930",
"postcode": "404 39",
"city": "GÖTEBORG"
},
"office_address": {
"address": "GULLBERGS STRANDGATA 15",
"postcode": "411 04",
"city": "GÖTEBORG"
},
"start": 2011
},
"HÄLSO- & SJUKVÅRDENS ANSVARSNÄMND": {
"org_nr": "202100-3765",
"created_by": "2011:582",
"email": "[email protected]",
"phone": "0752473000",
"website": "www.hsan.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": ""
}
},
"HÖGSKOLAN DALARNA": {
"org_nr": "202100-2908",
"created_by": "1993:100",
"email": "[email protected]",
"phone": "023778000",
"website": "www.du.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "HÖGSKOLEGATAN 2",
"postcode": "791 31",
"city": "FALUN"
}
},
"HÖGSKOLAN I BORÅS": {
"org_nr": "202100-3138",
"created_by": "1993:100",
"email": "[email protected]",
"phone": "0334354000",
"website": "www.hb.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "ALLÉGATAN 1",
"postcode": "503 32",
"city": "BORÅS"
}
},
"HÖGSKOLAN I GÄVLE": {
"org_nr": "202100-2890",
"created_by": "1993:100",
"email": "[email protected]",
"phone": "026648500",
"website": "www.hig.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "KUNGSBÄCKSVÄGEN 47",
"postcode": "802 67",
"city": "GÄVLE"
}
},
"HÖGSKOLAN I HALMSTAD": {
"org_nr": "202100-3203",
"created_by": "1993:100",
"email": "[email protected]",
"phone": "035167100",
"website": "www.hh.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 823",
"postcode": "301 18",
"city": "HALMSTAD"
},
"office_address": {
"address": "KRISTIAN IV:S VÄG 3",
"postcode": "302 50",
"city": "HALMSTAD"
}
},
"HÖGSKOLAN I SKÖVDE": {
"org_nr": "202100-3146",
"created_by": "1993:100",
"email": "[email protected]",
"phone": "0500448000",
"website": "www.his.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": "BOX 408",
"postcode": "541 28",
"city": "SKÖVDE"
},
"office_address": {
"address": "HÖGSKOLEVÄGEN 1",
"postcode": "549 55",
"city": "SKÖVDE"
}
},
"HÖGSKOLAN KRISTIANSTAD": {
"org_nr": "202100-3195",
"created_by": "1993:100",
"email": "[email protected]",
"phone": "0442503000",
"website": "www.hkr.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "ELMETORPSVÄGEN 15",
"postcode": "291 39",
"city": "KRISTIANSTAD"
}
},
"HÖGSKOLAN VÄST": {
"org_nr": "202100-4052",
"created_by": "1993:100",
"email": "[email protected]",
"phone": "0520223000",
"website": "www.hv.se",
"group": "Statliga förvaltningsmyndigheter",
"postal_address": {
"address": ""
},
"office_address": {
"address": "GUSTAVA MELINS GATA 2",
"postcode": "461 32",
"city": "TROLLHÄTTAN"
}
},
"Högskolans avskiljandenämnd": {
"org_nr": "202100-6867",