-
Notifications
You must be signed in to change notification settings - Fork 1
/
metadatakatalog.xsd
1270 lines (1087 loc) · 40.1 KB
/
metadatakatalog.xsd
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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns="http://www.arkivverket.no/standarder/noark5/metadatakatalog"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.arkivverket.no/standarder/noark5/metadatakatalog"
elementFormDefault="qualified" version="3.1">
<!--
Noark 5
XML Schema for arkivuttrekk fra Noark 5-løsninger
Skjema for metadatakatalog
2013-02-14 - Endringer fra versjon 3.0 til versjon 3.1:
1. Endret version-attributtet i xs:schema fra 3.0 til 3.1.
2. Rettet M620 - tilknyttetDato fra xs:date til xs:dateTime
-->
<xs:annotation>
<xs:documentation xml:lang="no">Noark 5</xs:documentation>
<xs:documentation xml:lang="no">XML Schema for arkivuttrekk fra Noark 5-løsninger</xs:documentation>
<xs:documentation xml:lang="no">Skjema for metadatakatalog</xs:documentation>
<xs:documentation xml:lang="no">Grupper av metadata:</xs:documentation>
<xs:documentation xml:lang="no">M001-M019: Identifikasjon</xs:documentation>
<xs:documentation xml:lang="no">M020-M049: Kjernemetadata (jf. Dublin Core)</xs:documentation>
<xs:documentation xml:lang="no">M050-M079: Status</xs:documentation>
<xs:documentation xml:lang="no">M080-M099: Typer</xs:documentation>
<xs:documentation xml:lang="no">M100-M199: Datoer</xs:documentation>
<xs:documentation xml:lang="no">M200-M299: Referanser</xs:documentation>
<xs:documentation xml:lang="no">M300-M369: Arkiv- og saksbehandlingsfunksjonalitet</xs:documentation>
<xs:documentation xml:lang="no">M370-M399: Møtebehandling</xs:documentation>
<xs:documentation xml:lang="no">M400-M449: Korrespondanse</xs:documentation>
<xs:documentation xml:lang="no">M450-M499: Bevaring og kassasjon</xs:documentation>
<xs:documentation xml:lang="no">M500-M579: Skjerming og gradering</xs:documentation>
<xs:documentation xml:lang="no">M580-M599: Brukeradministrasjon og administrativ oppbygning</xs:documentation>
<xs:documentation xml:lang="no">M600-M659: Logging av hendelser</xs:documentation>
<xs:documentation xml:lang="no">M660-M679: Logging av arbeidsflyt</xs:documentation>
<xs:documentation xml:lang="no">M680-M699: Logging av endringer</xs:documentation>
<xs:documentation xml:lang="no">M700-M799: Tekniske metadata</xs:documentation>
</xs:annotation>
<!-- M001-M019: Identifikasjon -->
<xs:simpleType name="uuid">
<xs:restriction base="xs:string">
<xs:pattern value="([0-9a-fA-F]{8}(-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12})"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="systemID">
<xs:annotation>
<xs:documentation>M001</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="klasseID">
<xs:annotation>
<xs:documentation>M002</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="mappeID">
<xs:annotation>
<xs:documentation>M003</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="registreringsID">
<xs:annotation>
<xs:documentation>M004</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="versjonsnummer">
<xs:annotation>
<xs:documentation>M005</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="arkivskaperID">
<xs:annotation>
<xs:documentation>M006</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="dokumentnummer">
<xs:annotation>
<xs:documentation>M007</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="moetenummer">
<xs:annotation>
<xs:documentation>M008</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="sakspartID">
<xs:annotation>
<xs:documentation>M010</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="saksaar">
<xs:annotation>
<xs:documentation>M011</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="sakssekvensnummer">
<xs:annotation>
<xs:documentation>M012</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="journalaar">
<xs:annotation>
<xs:documentation>M013</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="journalsekvensnummer">
<xs:annotation>
<xs:documentation>M014</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="journalpostnummer">
<xs:annotation>
<xs:documentation>M015</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<!-- M020-M049: Kjernemetadata (jf. Dublin Core) -->
<xs:simpleType name="beskrivelse">
<xs:annotation>
<xs:documentation>M021</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="noekkelord">
<xs:annotation>
<xs:documentation>M022</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="arkivskaperNavn">
<xs:annotation>
<xs:documentation>M023</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<!-- M050-M079: Status -->
<xs:simpleType name="arkivstatus">
<xs:annotation>
<xs:documentation>M050</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Opprettet"/>
<xs:enumeration value="Avsluttet"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="arkivdelstatus">
<xs:annotation>
<xs:documentation>M051</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Aktiv periode"/>
<xs:enumeration value="Overlappingsperiode"/>
<xs:enumeration value="Avsluttet periode"/>
<xs:enumeration value="Uaktuelle mapper"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="saksstatus">
<xs:annotation>
<xs:documentation>M052</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Under behandling"/>
<xs:enumeration value="Avsluttet"/>
<xs:enumeration value="Utgår"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="journalstatus">
<xs:annotation>
<xs:documentation>M053</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Journalført"/>
<xs:enumeration value="Ferdigstilt fra saksbehandler"/>
<xs:enumeration value="Godkjent av leder"/>
<xs:enumeration value="Ekspedert"/>
<xs:enumeration value="Arkivert"/>
<xs:enumeration value="Utgår"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="dokumentstatus">
<xs:annotation>
<xs:documentation>M054</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Dokumentet er under redigering"/>
<xs:enumeration value="Dokumentet er ferdigstilt"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="moeteregistreringsstatus">
<xs:annotation>
<xs:documentation>M055</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="presedensstatus">
<xs:annotation>
<xs:documentation>M056</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Gjeldende"/>
<xs:enumeration value="Foreldet"/>
</xs:restriction>
</xs:simpleType>
<!-- M080-M099: Typer -->
<xs:simpleType name="journalposttype">
<xs:annotation>
<xs:documentation>M082</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Inngående dokument"/>
<xs:enumeration value="Utgående dokument"/>
<xs:enumeration value="Organinternt dokument for oppfølging"/>
<xs:enumeration value="Organinternt dokument uten oppfølging"/>
<xs:enumeration value="Saksframlegg"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="dokumenttype">
<xs:annotation>
<xs:documentation>M083</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="merknadstype">
<xs:annotation>
<xs:documentation>M084</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="moeteregistreringstype">
<xs:annotation>
<xs:documentation>M085</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="moetedokumentregistreringstype">
<xs:restriction base="xs:string">
<xs:enumeration value="Protokoll"/>
<xs:enumeration value="Innkalling"/>
<xs:enumeration value="Tilleggsinnkalling"/>
<xs:enumeration value="Annet"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="klassifikasjonstype">
<xs:annotation>
<xs:documentation>M086</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="korrespondanseparttype">
<xs:annotation>
<xs:documentation>M087</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Avsender"/>
<xs:enumeration value="Mottaker"/>
<xs:enumeration value="Kopimottaker"/>
<xs:enumeration value="Gruppemottaker"/>
<xs:enumeration value="Intern avsender"/>
<xs:enumeration value="Intern mottaker"/>
<!-- Lagt til i NOARK v5.4 -->
<xs:enumeration value="Intern kopimottaker"/>
<xs:enumeration value="Medavsender"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="korrespondansepartEnhetstype">
<xs:restriction base="xs:string">
<xs:enumeration value="Person"/>
<xs:enumeration value="Organisasjon"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="organisasjonsnummer">
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="moetesakstype">
<xs:annotation>
<xs:documentation>M088</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Orienteringssak"/>
<xs:enumeration value="Referatsak"/>
<xs:enumeration value="Delegert sak"/>
<xs:enumeration value="Politisk sak"/>
<xs:enumeration value="Interpellasjon"/>
<xs:enumeration value="Annet"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="slettingstype">
<xs:annotation>
<xs:documentation>M089</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Sletting av produksjonsformat"/>
<xs:enumeration value="Sletting av tidligere versjon"/>
<xs:enumeration value="Sletting av variant med sladdet informasjon"/>
<xs:enumeration value="Sletting av hele innholdet i arkivdelen"/>
</xs:restriction>
</xs:simpleType>
<!-- M100-M199: Datoer -->
<xs:simpleType name="saksdato">
<xs:annotation>
<xs:documentation>M100</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="journaldato">
<xs:annotation>
<xs:documentation>M101</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="moetedato">
<xs:annotation>
<xs:documentation>M102</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="dokumentetsDato">
<xs:annotation>
<xs:documentation>M103</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="mottattDato">
<xs:annotation>
<xs:documentation>M104</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="sendtDato">
<xs:annotation>
<xs:documentation>M105</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="utlaantDato">
<xs:annotation>
<xs:documentation>M106</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="arkivperiodeStartDato">
<xs:annotation>
<xs:documentation>M107</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="arkivperiodeSluttDato">
<xs:annotation>
<xs:documentation>M108</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="forfallsdato">
<xs:annotation>
<xs:documentation>M109</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="offentlighetsvurdertDato">
<xs:annotation>
<xs:documentation>M110</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="presedensDato">
<xs:annotation>
<xs:documentation>M111</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="journalStartDato">
<xs:annotation>
<xs:documentation>M112</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="journalSluttDato">
<xs:annotation>
<xs:documentation>M113</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<!-- M200-M299: Referanser -->
<xs:simpleType name="referanseForloeper">
<xs:annotation>
<xs:documentation>M202</xs:documentation>
</xs:annotation>
<xs:restriction base="uuid"/>
</xs:simpleType>
<xs:simpleType name="referanseArvtaker">
<xs:annotation>
<xs:documentation>M203</xs:documentation>
</xs:annotation>
<xs:restriction base="uuid"/>
</xs:simpleType>
<xs:simpleType name="referanseArkivdel">
<xs:annotation>
<xs:documentation>M208</xs:documentation>
</xs:annotation>
<xs:restriction base="uuid"/>
</xs:simpleType>
<xs:simpleType name="referanseSekundaerKlassifikasjon">
<xs:annotation>
<xs:documentation>M209</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="referanseTilMappe">
<xs:annotation>
<xs:documentation>M210</xs:documentation>
</xs:annotation>
<xs:restriction base="uuid"/>
</xs:simpleType>
<xs:simpleType name="referanseTilRegistrering">
<xs:annotation>
<xs:documentation>M212</xs:documentation>
</xs:annotation>
<xs:restriction base="uuid"/>
</xs:simpleType>
<xs:simpleType name="referanseTilMoetesak">
<xs:restriction base="uuid"/>
</xs:simpleType>
<xs:simpleType name="referanseAvskrivesAvJournalpost">
<xs:annotation>
<xs:documentation>M215</xs:documentation>
</xs:annotation>
<xs:restriction base="uuid"/>
</xs:simpleType>
<xs:simpleType name="tilknyttetRegistreringSom">
<xs:annotation>
<xs:documentation>M217</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Hoveddokument"/>
<xs:enumeration value="Vedlegg"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="referanseDokumentfil">
<xs:annotation>
<xs:documentation>M218</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="referanseTilKlasse">
<xs:annotation>
<xs:documentation>M219</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="referanseForrigeMoete">
<xs:annotation>
<xs:documentation>M221</xs:documentation>
</xs:annotation>
<xs:restriction base="uuid"/>
</xs:simpleType>
<xs:simpleType name="referanseNesteMoete">
<xs:annotation>
<xs:documentation>M222</xs:documentation>
</xs:annotation>
<xs:restriction base="uuid"/>
</xs:simpleType>
<!--
<xs:simpleType name="referanseTilMoeteregistrering">
<xs:annotation>
<xs:documentation>M223</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="referanseFraMoeteregistrering">
<xs:annotation>
<xs:documentation>M224</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
-->
<!-- M300-M369: Arkiv- og saksbehandlingsfunksjonalitet -->
<xs:simpleType name="dokumentmedium">
<xs:annotation>
<xs:documentation>M300</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Fysisk medium"/>
<xs:enumeration value="Elektronisk arkiv"/>
<xs:enumeration value="Blandet fysisk og elektronisk arkiv"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="oppbevaringssted">
<xs:annotation>
<xs:documentation>M301</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="sakspartNavn">
<xs:annotation>
<xs:documentation>M302</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="sakspartRolle">
<xs:annotation>
<xs:documentation>M303</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="antallVedlegg">
<xs:annotation>
<xs:documentation>M304</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="administrativEnhet">
<xs:annotation>
<xs:documentation>M305</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="saksbehandler">
<xs:annotation>
<xs:documentation>M307</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="journalenhet">
<xs:annotation>
<xs:documentation>M308</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="utlaantTil">
<xs:annotation>
<xs:documentation>M309</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="merknadstekst">
<xs:annotation>
<xs:documentation>M310</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="presedensHjemmel">
<xs:annotation>
<xs:documentation>M311</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="rettskildefaktor">
<xs:annotation>
<xs:documentation>M312</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="seleksjon">
<xs:annotation>
<xs:documentation>M313</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<!-- M370-M399: Møtebehandling -->
<xs:simpleType name="utvalg">
<xs:annotation>
<xs:documentation>M370</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="moetested">
<xs:annotation>
<xs:documentation>M371</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="moetedeltakerNavn">
<xs:annotation>
<xs:documentation>M372</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="moetedeltakerFunksjon">
<xs:annotation>
<xs:documentation>M373</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<!-- M400-M449: Korrespondanse -->
<xs:simpleType name="postadresse">
<xs:annotation>
<xs:documentation>M406</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="postnummer">
<xs:annotation>
<xs:documentation>M407</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="poststed">
<xs:annotation>
<xs:documentation>M408</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="land">
<xs:annotation>
<xs:documentation>M409</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="epostadresse">
<xs:annotation>
<xs:documentation>M410</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="telefonnummer">
<xs:annotation>
<xs:documentation>M411</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="kontaktperson">
<xs:annotation>
<xs:documentation>M412</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<!-- M450-M499: Bevaring og kassasjon -->
<xs:simpleType name="kassasjonsvedtak">
<xs:annotation>
<xs:documentation>M450</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Bevares"/>
<xs:enumeration value="Kasseres"/>
<xs:enumeration value="Vurderes senere"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="bevaringstid">
<xs:annotation>
<xs:documentation>M451</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="kassasjonsdato">
<xs:annotation>
<xs:documentation>M452</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="kassasjonshjemmel">
<xs:annotation>
<xs:documentation>M453</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<!-- M500-M579: Skjerming og gradering -->
<xs:simpleType name="tilgangsrestriksjon">
<xs:annotation>
<xs:documentation>M500</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="skjermingshjemmel">
<xs:annotation>
<xs:documentation>M501</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="skjermingMetadata">
<xs:annotation>
<xs:documentation>M502</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="skjermingDokument">
<xs:annotation>
<xs:documentation>M503</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Skjerming av hele dokumentet"/>
<xs:enumeration value="Skjerming av deler av dokumentet"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="skjermingsvarighet">
<xs:annotation>
<xs:documentation>M504</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="skjermingOpphoererDato">
<xs:annotation>
<xs:documentation>M505</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="gradering">
<xs:annotation>
<xs:documentation>M506</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Strengt hemmelig (sikkerhetsgrad)"/>
<xs:enumeration value="Hemmelig (sikkerhetsgrad)"/>
<xs:enumeration value="Konfidensielt (sikkerhetsgrad)"/>
<xs:enumeration value="Begrenset (sikkerhetsgrad)"/>
<xs:enumeration value="Fortrolig (beskyttelsesgrad)"/>
<xs:enumeration value="Strengt fortrolig (beskyttelsesgrad)"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="elektroniskSignaturSikkerhetsnivaa">
<xs:annotation>
<xs:documentation>M507</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="elektroniskSignaturVerifisert">
<xs:annotation>
<xs:documentation>M508</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Signatur påført, ikke verifisert"/>
<xs:enumeration value="Signatur påført og verifisert"/>
</xs:restriction>
</xs:simpleType>
<!-- M580-M599: Brukeradministrasjon og administrativ oppbygning -->
<xs:simpleType name="brukerNavn">
<xs:annotation>
<xs:documentation>M580</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="brukerRolle">
<xs:annotation>
<xs:documentation>M581</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="brukerstatus">
<xs:annotation>
<xs:documentation>M582</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="administrativEnhetNavn">
<xs:annotation>
<xs:documentation>M583</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="administrativEnhetsstatus">
<xs:annotation>
<xs:documentation>M584</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="referanseOverordnetEnhet">
<xs:annotation>
<xs:documentation>M585</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<!-- M600-M659: Logging av hendelser -->
<xs:simpleType name="opprettetDato">
<xs:annotation>
<xs:documentation>M600</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="opprettetAv">
<xs:annotation>
<xs:documentation>M601</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="avsluttetDato">
<xs:annotation>
<xs:documentation>M602</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="avsluttetAv">
<xs:annotation>
<xs:documentation>M603</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="arkivertDato">
<xs:annotation>
<xs:documentation>M604</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="arkivertAv">
<xs:annotation>
<xs:documentation>M605</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="antallJournalposter">
<xs:annotation>
<xs:documentation>M609</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="merknadsdato">
<xs:annotation>
<xs:documentation>M611</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="merknadRegistrertAv">
<xs:annotation>
<xs:documentation>M612</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="slettetDato">
<xs:annotation>
<xs:documentation>M613</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="slettetAv">
<xs:annotation>
<xs:documentation>M614</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="konvertertDato">
<xs:annotation>
<xs:documentation>M615</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="konvertertAv">
<xs:annotation>
<xs:documentation>M616</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="avskrivningsdato">
<xs:annotation>
<xs:documentation>M617</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date"/>
</xs:simpleType>
<xs:simpleType name="avskrevetAv">
<xs:annotation>
<xs:documentation>M618</xs:documentation>