forked from gbif/eml-profile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheml-ebv-profile.html
1498 lines (1278 loc) · 180 KB
/
eml-ebv-profile.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>EBV metadata standard</title>
<meta name="description" content="EBV EML profile">
<meta name="author" content="Christian Langer">
<style type="text/css">
body{
text-align:center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
}
[hidden] {
display: none;
}
section {
margin: 5px;
padding:10px;
}
label {
display: block;
}
label>span {
margin-right: 5px;
min-width: 50px;
}
button[type='submit']:before {
content: "OK";
}
button.add:before {
content: "+ ";
}
button.remove:before {
content: "-";
}
input[data-xsd2html2xml-duration='days']+span:after {
content: " (days)";
}
input[data-xsd2html2xml-duration='minutes']+span:after {
content: " (minutes)";
}
fieldset {
padding: 30px;
display:inline-block;
background-color: #ebebeb;
border: 1px solid #c3c3c3;
border-radius: 10px;
}
fieldset > section > fieldset > section > fieldset,
fieldset > section > fieldset > section > fieldset > fieldset {
background-color: #e0e0e0;
}
legend {
color: #038c7c;
font-size: 25px;
}
button {
color: #333;
background-color: #fff;
border-color: #ccc;
display: inline-block;
margin-bottom: 0;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
background-image: none;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin: 0 10px 0 10px;
}
.form-control {
display: block;
width: 95%;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
margin: 10px;
}
select.form-control{
height: calc(2.25rem + 2px);
}
input[type='radio'] {
float: left;
}
hr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 1200px){
.container {
width: 1170px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
</style>
<script type="text/javascript">
/* POLYFILLS */
/* add .matches if not natively supported */
if (!Element.prototype.matches)
Element.prototype.matches = Element.prototype.msMatchesSelector ||
Element.prototype.webkitMatchesSelector;
/* add .closest if not natively supported */
if (!Element.prototype.closest)
Element.prototype.closest = function(s) {
var el = this;
do {
if (el.nodeType !== 1) return null;
if (el.matches(s)) return el;
el = el.parentElement || el.parentNode;
} while (el !== null);
return null;
};
/* add .forEach if not natively supported */
if (!NodeList.prototype.forEach) {
NodeList.prototype.forEach = function(callback) {
var i = 0;
while (i != this.length) {
callback.apply(this, [this[i], i, this]);
i++;
}
};
}
/* add .previousElementSibling if not supported */
(function(arr) {
arr.forEach(function(item) {
if (item.hasOwnProperty('previousElementSibling')) {
return;
}
Object.defineProperty(item, 'previousElementSibling', {
configurable: true,
enumerable: true,
get: function() {
let el = this;
while (el = el.previousSibling) {
if (el.nodeType === 1) {
return el;
}
}
return null;
},
set: undefined
});
});
})([Element.prototype, CharacterData.prototype]);
</script>
<script type="text/javascript">
/* XML GENERATORS */
var htmlToXML = function(root) {
var namespaces = [];
var prefixes = [];
document.querySelectorAll("[data-xsd2html2xml-namespace]:not([data-xsd2html2xml-namespace=''])").forEach(function(o) {
if (namespaces.indexOf(
o.getAttribute("data-xsd2html2xml-namespace")
) == -1) {
namespaces.push(
o.getAttribute("data-xsd2html2xml-namespace")
);
prefixes.push(
o.getAttribute("data-xsd2html2xml-name").substring(
0, o.getAttribute("data-xsd2html2xml-name").indexOf(":")
)
);
}
});
var namespaceString = "";
namespaces.forEach(function(o, i) {
namespaceString = namespaceString.concat(
"xmlns".concat(
(prefixes[i] == "" ? "=" : ":".concat(prefixes[i].concat("=")))
).concat(
"\"".concat(namespaces[i]).concat("\" ")
)
)
});
return String.fromCharCode(60).concat("?xml version=\"1.0\"?").concat(String.fromCharCode(62)).concat(getXML(root, false, namespaceString.trim()));
};
var getXML = function(parent, attributesOnly, namespaceString) {
var xml = "";
var children = [].slice.call(parent.children);
children.forEach(function(o) {
if (!o.hasAttribute("hidden")) {
switch (o.getAttribute("data-xsd2html2xml-type")) {
case "element":
if (!attributesOnly) xml = xml.concat(String.fromCharCode(60)).concat(o.getAttribute("data-xsd2html2xml-name")).concat(getXML(o, true)).concat(String.fromCharCode(62)).concat(function() {
if (o.nodeName.toLowerCase() === "label") {
return getContent(o);
} else return getXML(o)
}()).concat(String.fromCharCode(60)).concat("/").concat(o.getAttribute("data-xsd2html2xml-name")).concat(String.fromCharCode(62));
break;
case "attribute":
if (attributesOnly)
if (getContent(o) ||
(o.getElementsByTagName("input").length > 0 ?
o.getElementsByTagName("input")[0].getAttribute("data-xsd2html2xml-primitive").toLowerCase() === "boolean" :
false
))
xml = xml.concat(" ").concat(o.getAttribute("data-xsd2html2xml-name")).concat("=\"").concat(getContent(o)).concat("\"");
break;
case "content":
if (!attributesOnly) xml = xml.concat(getContent(o));
break;
default:
if (!attributesOnly) {
if (!o.getAttribute("data-xsd2html2xml-choice"))
xml = xml.concat(getXML(o));
if (o.getAttribute("data-xsd2html2xml-choice")) {
var node = o.previousElementSibling;
while (node.hasAttribute("data-xsd2html2xml-choice")) {
node = node.previousElementSibling;
};
if (node.getElementsByTagName("input")[0].checked)
xml = xml.concat(getXML(o));
};
}
break;
}
}
});
if (namespaceString) {
xml = xml.substring(0, xml.indexOf(String.fromCharCode(62))).concat(" ").concat(namespaceString).concat(xml.substring(xml.indexOf(String.fromCharCode(62))));
}
return xml;
};
var getContent = function(node) {
if (node.getElementsByTagName("input").length != 0) {
switch (node.getElementsByTagName("input")[0].getAttribute("type").toLowerCase()) {
case "checkbox":
return node.getElementsByTagName("input")[0].checked;
case "file":
case "range":
case "date":
case "time":
case "datetime-local":
return node.getElementsByTagName("input")[0].getAttribute("value");
default:
switch (node.getElementsByTagName("input")[0].getAttribute("data-xsd2html2xml-primitive").toLowerCase()) {
case "gday":
case "gmonth":
case "gmonthday":
case "gyear":
case "gyearmonth":
return node.getElementsByTagName("input")[0].getAttribute("value");
default:
return node.getElementsByTagName("input")[0].value;
}
}
} else if (node.getElementsByTagName("select").length != 0) {
return node.getElementsByTagName("select")[0].value;
} else if (node.getElementsByTagName("textarea").length != 0) {
return node.getElementsByTagName("textarea")[0].value;
}
}
</script>
<script type="text/javascript">
/* HTML POPULATORS */
var addHiddenFields = function() {
document.querySelectorAll("[data-xsd2html2xml-min], [data-xsd2html2xml-max]").forEach(function(o) {
//add hidden element
var newNode = o.previousElementSibling.cloneNode(true);
newNode.setAttribute("hidden", "");
newNode.querySelectorAll("input, textarea, select").forEach(function(p) {
p.setAttribute("disabled", "");
});
o.parentElement.insertBefore(
newNode, o
);
});
};
var ensureMinimum = function() {
document.querySelectorAll("[data-xsd2html2xml-min], [data-xsd2html2xml-max]").forEach(function(o) {
//add minimum number of elements
if (o.hasAttribute("data-xsd2html2xml-min")) {
//if no minimum, remove element
if (o.getAttribute("data-xsd2html2xml-min") === "0"
//check for input elements existing to handle empty elements
&&
o.previousElementSibling.previousElementSibling.querySelector("input, textarea, select")
//check if element has been populated with data from an xml document
&&
!o.previousElementSibling.previousElementSibling.querySelector("input, textarea, select").hasAttribute("data-xsd2html2xml-filled")) {
clickRemoveButton(
o.parentElement.children[0].querySelector("legend > button.remove, span > button.remove")
);
//if there is only one allowed element that has been filled, disable the button
} else if (o.getAttribute("data-xsd2html2xml-max") === "1"
//check for input elements existing to handle empty elements
&&
o.previousElementSibling.previousElementSibling.querySelector("input, textarea, select")
//check if element has been populated with data from an xml document
&&
o.previousElementSibling.previousElementSibling.querySelector("input, textarea, select").hasAttribute("data-xsd2html2xml-filled")) {
o.setAttribute("disabled", "disabled");
//else, add up to minimum number of elements
} else {
var remainder = o.getAttribute("data-xsd2html2xml-min") - (o.parentNode.children.length - 2);
for (i = 0; i < remainder; i++) {
clickAddButton(o);
};
};
};
});
};
var setValue = function(element, value) {
element.querySelector("input, textarea, select").setAttribute("data-xsd2html2xml-filled", "true");
if (element.querySelector("input") !== null) {
if (element.querySelector("input").getAttribute("data-xsd2html2xml-primitive") === "boolean") {
if (value === "true") {
element.querySelector("input").setAttribute("checked", "checked");
};
} else {
element.querySelector("input").setAttribute("value", value);
};
if (element.querySelector("input").getAttribute("type") === "file") {
element.querySelector("input").removeAttribute("required");
element.querySelector("input").setAttribute("data-xsd2html2xml-required", "true");
};
};
if (element.querySelector("textarea") !== null) {
element.querySelector("textarea").textContent = value;
};
if (element.querySelector("select") !== null) {
element.querySelector("select option[value = '".concat(value).concat("']")).setAttribute("selected", "selected");
};
};
var parseNode = function(node, element) {
//iterate through the node's attributes and fill them out
for (var i = 0; i < node.attributes.length; i++) {
var attribute = element.querySelector(
"[data-xsd2html2xml-xpath = '".concat(
element.getAttribute("data-xsd2html2xml-xpath").concat(
"/@".concat(node.attributes[i].nodeName)
//"/@*[name() = \"".concat(node.attributes[i].nodeName).concat("\"]")
)
).concat("']")
);
if (attribute !== null) {
setValue(attribute, node.attributes[i].nodeValue);
};
};
//if there is only one (non-element) node, it must contain the value; note: this will not work for potential mixed="true" support
if (node.childNodes.length === 1 && node.childNodes[0].nodeType === Node.TEXT_NODE) {
//in the case of complexTypes with simpleContents, select the sub-element that actually contains the input element
if (element.querySelectorAll("[data-xsd2html2xml-xpath='".concat(element.getAttribute("data-xsd2html2xml-xpath")).concat("']")).length > 0) {
setValue(element.querySelector("[data-xsd2html2xml-xpath='".concat(element.getAttribute("data-xsd2html2xml-xpath")).concat("']")), node.childNodes[0].nodeValue);
} else {
setValue(element, node.childNodes[0].nodeValue);
};
//else, iterate through the children
} else {
var previousChildName;
for (var i = 0; i < node.childNodes.length; i++) {
var childNode = node.childNodes[i];
if (childNode.nodeType === Node.ELEMENT_NODE) {
//find the corresponding element
var childElement = element.querySelector(
"[data-xsd2html2xml-xpath = '".concat(
element.getAttribute("data-xsd2html2xml-xpath").concat(
"/".concat(childNode.nodeName)
//"/*[name() = \"".concat(childNode.nodeName).concat("\"]")
)
).concat("']")
);
//if there is an add-button (and it is not the first child node being parsed), add an element
var button;
if (childElement.parentElement.lastElementChild.nodeName.toLowerCase() === "button") {
button = childElement.parentElement.lastElementChild;
} else if (childElement.parentElement.parentElement.parentElement.lastElementChild.nodeName.toLowerCase() === "button" &&
!childElement.parentElement.parentElement.parentElement.lastElementChild.hasAttribute("data-xsd2html2xml-element")) {
button = childElement.parentElement.parentElement.parentElement.lastElementChild;
};
if (button !== null && childNode.nodeName === previousChildName) {
clickAddButton(button);
parseNode(
childNode,
button.previousElementSibling.previousElementSibling
//childElement.parentElement.lastElementChild.previousElementSibling.previousElementSibling
);
//else, use the already generated element
} else {
parseNode(
childNode,
childElement
);
};
previousChildName = childNode.nodeName;
}
};
}
};
</script>
<script type="text/javascript">
/* VALUE FIXERS */
var setValues = function() {
/* specifically set values on ranges */
document.querySelectorAll("[type='range']").forEach(function(o) {
if (o.getAttribute("value")) {
o.value = o.getAttribute("value").replace(/\D/g, "");
} else if (o.getAttribute("min")) {
o.value = o.getAttribute("min");
} else if (o.getAttribute("max")) {
o.value = o.getAttribute("max");
} else {
o.value = 0;
o.onchange();
};
o.previousElementSibling.textContent = o.value;
});
/* specifically set values on datepickers */
document.querySelectorAll("[data-xsd2html2xml-primitive='gday']").forEach(function(o) {
if (o.getAttribute("value")) {
o.value = o.getAttribute("value").replace(/-+0?/g, "");
}
});
document.querySelectorAll("[data-xsd2html2xml-primitive='gmonth']").forEach(function(o) {
if (o.getAttribute("value")) {
o.value = o.getAttribute("value").replace(/-+0?/g, "");
}
});
document.querySelectorAll("[data-xsd2html2xml-primitive='gmonthday']").forEach(function(o) {
if (o.getAttribute("value")) {
o.value = new Date().getFullYear().toString().concat(o.getAttribute("value").substring(1));
}
});
};
</script>
<script type="text/javascript">
/* EVENT HANDLERS */
var clickAddButton = function(button) {
var newNode = button.previousElementSibling.cloneNode(true);
newNode.removeAttribute("hidden");
newNode.querySelectorAll("input, select, textarea").forEach(function(o) {
if (o.closest("[hidden]") == null)
o.removeAttribute("disabled");
});
//set a new random id for radio buttons
newNode.querySelectorAll("input[type='radio']").forEach(function(o) {
if (o.parentElement.previousElementSibling != null &&
o.parentElement.previousElementSibling.previousElementSibling != null &&
o.parentElement.previousElementSibling.previousElementSibling.children.length > 0 &&
o.parentElement.previousElementSibling.previousElementSibling.children[0].hasAttribute("type") &&
o.parentElement.previousElementSibling.previousElementSibling.children[0].getAttribute("type") === "radio") {
o.setAttribute("name", o.parentElement.previousElementSibling.previousElementSibling.children[0].getAttribute("name"));
} else {
o.setAttribute("name", o.getAttribute("name").concat(
Math.random().toString().substring(2)
));
};
o.setAttribute("onclick", "clickRadioInput(this, '".concat(o.getAttribute("name")).concat("');"));
});
button.parentNode.insertBefore(
newNode, button.previousElementSibling
);
if ((button.parentNode.children.length - 2) == button.getAttribute("data-xsd2html2xml-max"))
button.setAttribute("disabled", "disabled");
}
var clickRemoveButton = function(button) {
if ((button.closest("section").children.length - 2) == button.closest("section").lastElementChild.getAttribute("data-xsd2html2xml-min"))
button.closest("section").lastElementChild.click();
if ((button.closest("section").children.length - 2) == button.closest("section").lastElementChild.getAttribute("data-xsd2html2xml-max"))
button.closest("section").lastElementChild.removeAttribute("disabled");
button.closest("section").removeChild(
button.closest("fieldset, label")
);
}
var clickRadioInput = function(input, name) {
var activeSections = [];
var currentSection = input.parentElement.nextElementSibling;
while (currentSection && currentSection.hasAttribute("data-xsd2html2xml-choice")) {
activeSections.push(currentSection);
currentSection = currentSection.nextElementSibling;
};
document.querySelectorAll("[name=".concat(name).concat("]")).forEach(function(o) {
o.removeAttribute("checked");
var section = o.parentElement.nextElementSibling;
while (section && section.hasAttribute("data-xsd2html2xml-choice")) {
section.querySelectorAll("input, select, textarea").forEach(function(p) {
var contained = false;
activeSections.forEach(function(q) {
if (q.contains(p)) contained = true;
});
if (contained) {
if (p.closest("[data-xsd2html2xml-choice]") === section) {
if (p.closest("*[hidden]") === null)
p.removeAttribute("disabled");
else
p.setAttribute("disabled", "disabled");
}
} else {
p.setAttribute("disabled", "disabled");
};
});
section = section.nextElementSibling;
};
});
input.setAttribute("checked", "checked");
}
var pickFile = function(input, file, type) {
var resetFilePicker = function(input) {
input.removeAttribute("value");
input.removeAttribute("type");
input.setAttribute("type", "file");
}
var fileReader = new FileReader();
fileReader.onloadend = function() {
if (fileReader.error) {
alert(fileReader.error);
resetFilePicker(input);
} else {
input.setAttribute("value",
(type.endsWith(":base64binary")) ?
fileReader.result.substring(fileReader.result.indexOf(",") + 1)
//convert base64 to base16 (hexBinary)
:
atob(fileReader.result.substring(fileReader.result.indexOf(",") + 1))
.split('')
.map(function(aChar) {
return ('0' + aChar.charCodeAt(0).toString(16)).slice(-2);
})
.join('')
.toUpperCase()
);
};
};
if (file) {
fileReader.readAsDataURL(file);
} else {
resetFilePicker(input);
}
if (input.getAttribute("data-xsd2html2xml-required")) input.setAttribute("required", "required");
}
</script>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded",
function() {
/* INITIAL CALLS */
addHiddenFields();
setValues();
ensureMinimum();
document.querySelectorAll("[data-xsd2html2xml-filled='true']").forEach(function(o) {
if (o.closest("[data-xsd2html2xml-choice]")) {
var node = o.closest("[data-xsd2html2xml-choice]").previousElementSibling;
while (node) {
if (!node.hasAttribute("data-xsd2html2xml-choice")) {
node.querySelector("input[type='radio']").click();
break;
} else {
node = node.previousElementSibling;
};
};
};
});
}
);
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#datepicker" ).datepicker({
dateFormat: "yy-mm-dd"
});
});
</script>
<style>
table {
border: 1px solid #eaeaea;
width:100%;
text-align: left;
}
.bg-color-row{
background-color: #f9f9f9;
}
table th {
width:200px;
padding:10px
}
table td{
width:600px;
padding:10px;
}
</style>
</head>
<body>
<div class="container">
<h1>EBV Metadata EML Profile</h1>
<table>
<tr>
<th>Name</th>
<td>EBV Metadata EML Profile</td>
</tr>
<tr class="bg-color-row">
<th>DOI</th>
<td><a href="https://doi.org/10.5281/zenodo.3362351" target="_blank">https://doi.org/10.5281/zenodo.3362351</a></td>
</tr>
<tr>
<th>License</th>
<td><a href="https://creativecommons.org/licenses/by/4.0/legalcode" target="_blank">Creative Commons Attribution 4.0 International</a></td>
</tr>
<tr class="bg-color-row">
<th>Citation</th>
<td>Christian Langer, Martin Hohmuth, John Wieczorek, Robert Guralnick, Néstor Fernández, & Markus Döring. (2019, August 7). ChristianLanger/eml-profile: EBV-EML-Schema (Version v0.5). Zenodo. <a href="https://doi.org/10.5281/zenodo.3362351" target="_blank">https://doi.org/10.5281/zenodo.3362351</a></td>
</tr>
<tr>
<th>Github</th>
<td><a href="https://github.com/ChristianLanger/eml-profile" target="_blank">https://github.com/ChristianLanger/eml-profile</a></td>
</tr>
<tr class="bg-color-row">
<th>Contributers</th>
<td>Christian Langer (iDiv), Martin Hohmuth (iDiv), John Wieczorek (UC Berkeley), Robert Guralnick (UF), Néstor Fernández (iDiv), Markus Döring (GBIF)</td>
</tr>
<tr>
<th>Description</th>
<td><p>Version v0.5 of the EBV Metadata EML Profile</p>
<p>Version v0.5 is focused on species-level EBVs, especially on the species populations EBV class, and maybe equally applicable to the species traits EBV class.</p>
<p>However, this version doesn´t cover other EBV classes related to ecosystem function/structure or community composition and genetic composition. These classes will need some additional terms as well as have no need for some current terms (e.g. taxonomic coverage). For instance, ecosystem function and ecosystem structure EBVs will need some other dimension than taxonomy, e.g. fields related to what type of ecosystems and habitats are captured.</p>
<p>This HTML file was automatically generated from the XSD file. For a detailed description of the individual classes and properties, please refer to the source code of the XSD profile schema (<a href="https://github.com/ChristianLanger/eml-profile/blob/master/eml-ebv-profile.xsd" target="_blank">eml-ebv-profile.xsd</a>).</p>
</td>
</tr>
</table>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="dataset" data-xsd2html2xml-xpath="/dataset" style="background-color:#f3f3f3">
<legend>dataset</legend>
<h4>The dataset element is a wrapper for all other elements relating to a single dataset</h4>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="alternateIdentifier" data-xsd2html2xml-xpath="/dataset/alternateIdentifier"><b>alternateIdentifier</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern=".{0,}" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="This is the only identifier issued by the EBV resource for the metadata document; it is a UUID" /><span>This is the only identifier issued by the EBV resource for the metadata document; it is a UUID<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="unbounded" onclick="clickAddButton(this);">alternateIdentifier</button></section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="title" data-xsd2html2xml-xpath="/dataset/title">
<legend> title <button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</legend>
<label data-xsd2html2xml-namespace="http://www.w3.org/1999/xhtml" data-xsd2html2xml-type="attribute" data-xsd2html2xml-name="lang" data-xsd2html2xml-xpath="/dataset/title/@lang"><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value.replace(/\s+/g, " ").trim()); } else { this.removeAttribute("value"); };" pattern="([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{1,8})*" data-xsd2html2xml-primitive="language" data-xsd2html2xml-description=" " /><span>
</span></label><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="content" data-xsd2html2xml-name="title" data-xsd2html2xml-xpath="/dataset/title"><span>The 'title' field provides a description of the resource that is being documented that is long enough to differentiate it from other similar resources.<br>Multiple titles may be provided, particularly when trying to express the title in more than one language.</span></label>
</fieldset>
<button type="button" class="add" data-xsd2html2xml-min="1" data-xsd2html2xml-max="unbounded" onclick="clickAddButton(this);"> title </button>
</section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="ebv" data-xsd2html2xml-xpath="/dataset/ebv">
<legend>ebv<button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</legend>
<h4>The detailed information about the EBV candidate in the domain of the GEO BON List of Essential Biodiversity Variables.</h4>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="class" data-xsd2html2xml-xpath="/dataset/ebv/class"><b>ebvClass</b><select class="form-control" onchange="this.childNodes.forEach(function(o) { if (o.nodeType == Node.ELEMENT_NODE) o.removeAttribute("selected"); }); this.children[this.selectedIndex].setAttribute("selected","selected");" required="required" data-xsd2html2xml-description="A class name in the domain of the GEO BON List of Essential Biodiversity Variables.">
<option value="Genetic composition">Genetic composition</option>
<option value="Species populations">Species populations</option>
<option value="Species traits">Species traits</option>
<option value="Community composition">Community composition</option>
<option value="Ecosystem function">Ecosystem function</option>
<option value="Ecosystem structure">Ecosystem structure</option>
</select><span>A class name in the domain of the GEO BON List of Essential Biodiversity Variables.</span></label></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="name" data-xsd2html2xml-xpath="/dataset/ebv/name"><b>ebvName</b><select class="form-control" onchange="this.childNodes.forEach(function(o) { if (o.nodeType == Node.ELEMENT_NODE) o.removeAttribute("selected"); }); this.children[this.selectedIndex].setAttribute("selected","selected");" required="required" data-xsd2html2xml-description="A name of the Essential Biodiversity Variable, preferably in the domain of the GEO BON List of Essential Biodiversity Variables.">
<option value="Co-ancestry">Co-ancestry</option>
<option value="Allelic diversity">Allelic diversity</option>
<option value="Population genetic differentiation">Population genetic differentiation</option>
<option value="Breed and variety diversity">Breed and variety diversity</option>
<option value="Species distribution">Species distribution</option>
<option value="Population abundance">Population abundance</option>
<option value="Population structure by age/size class">Population structure by age/size class</option>
<option value="Phenology">Phenology</option>
<option value="Morphology">Morphology</option>
<option value="Reproduction">Reproduction</option>
<option value="Physiology">Physiology</option>
<option value="Movement">Movement</option>
<option value="Taxonomic diversity">Taxonomic diversity</option>
<option value="Species interactions">Species interactions</option>
<option value="Net primary productivity">Net primary productivity</option>
<option value="Secondary productivity">Secondary productivity</option>
<option value="Nutrient retention">Nutrient retention</option>
<option value="Disturbance regime">Disturbance regime</option>
<option value="Habitat structure">Habitat structure</option>
<option value="Ecosystem extent and fragmentation">Ecosystem extent and fragmentation</option>
<option value="Ecosystem composition by functional type">Ecosystem composition by functional type</option>
</select><span>A name of the Essential Biodiversity Variable, preferably in the domain of the GEO BON List of Essential Biodiversity Variables.</span></label></section>
</fieldset>
<button type="button" class="add" data-xsd2html2xml-min="1" data-xsd2html2xml-max="unbounded" onclick="clickAddButton(this);">ebv</button>
</section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="creator" data-xsd2html2xml-xpath="/dataset/creator">
<legend>creator<button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</legend>
<h4>The creator is the person who created the resource (not necessarily the author of this metadata about the resource).<br>This is the person or institution to contact with questions about the use, interpretation of a dataset.</h4>
<label><input type="radio" name="idm47764258727312" required="required" onclick="clickRadioInput(this, 'idm47764258727312');" data-xsd2html2xml-description="1" /><span><b>organizationName</b></span></label>
<section data-xsd2html2xml-choice="true"><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="organizationName" data-xsd2html2xml-xpath="/dataset/creator/organizationName"><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The full name of the organization that is associated with the resource. This field is intended to describe which institution or overall organization is associated with the resource being described." /><span>The full name of the organization that is associated with the resource.<br>This field is intended to describe which institution or overall organization is associated with the resource being described.</span></label></section><label><input type="radio" name="idm47764258727312" required="required" onclick="clickRadioInput(this, 'idm47764258727312');" data-xsd2html2xml-description="2" /><span><b>individualName</b></span></label>
<section data-xsd2html2xml-choice="true">
<p>The individualName field contains subfields so that a person's name can be broken down into parts.</p>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="givenName" data-xsd2html2xml-xpath="/dataset/creator/individualName/givenName">givenName<input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The given name field can be used for first name of the individual associated with the resource, or for any other names that are not intended to be alphabetized, (as appropriate). " /><span>The given name field can be used for first name of the individual associated with the resource, or for any other names that are not intended to be alphabetized, (as appropriate). <button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">givenName </button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="surName" data-xsd2html2xml-xpath="/dataset/creator/individualName/surName">surName<input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The surname field is used for the last name of the individual associated with the resource. This is typically the family name of an individual, for example, the name by which s/he is referred to in citations. " /><span>The surname field is used for the last name of the individual associated with the resource.<br>This is typically the family name of an individual, for example, the name by which s/he is referred to in citations. </span></label></section>
</section><label><input type="radio" name="idm47764258727312" required="required" onclick="clickRadioInput(this, 'idm47764258727312');" data-xsd2html2xml-description="3" /><span><b>positionName</b></span></label>
<section data-xsd2html2xml-choice="true"><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="positionName" data-xsd2html2xml-xpath="/dataset/creator/positionName"><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="This field is intended to be used instead of a particular person or full organization name. If the associated person who holds the role changes frequently, then Position Name would be used for consistency. E.g., Data Manager." /><span>This field is intended to be used instead of a particular person or full organization name.<br>If the associated person who holds the role changes frequently, then Position Name would be used for consistency. E.g., Data Manager.</span></label></section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="address" data-xsd2html2xml-xpath="/dataset/creator/address">
<legend>address<button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</legend>
<p>The address field is a container for multiple subfields that describe the physical or electronic address of the responsible party for a resource.</p>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="deliveryPoint" data-xsd2html2xml-xpath="/dataset/creator/address/deliveryPoint"><b>deliveryPoint</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The delivery point field is used for the physical address for postal communication, e.g., GEO BON Secretariat, Deutscher Platz 5e" /><span>The delivery point field is used for the physical address for postal communication, e.g., GEO BON Secretariat, Deutscher Platz 5e<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">deliveryPoint</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="city" data-xsd2html2xml-xpath="/dataset/creator/address/city"><b>city</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The city field is used for the city name of the contact associated with a particular resource." /><span>The city field is used for the city name of the contact associated with a particular resource.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">city</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="administrativeArea" data-xsd2html2xml-xpath="/dataset/creator/address/administrativeArea"><b>administrativeArea</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The administrative area field is the equivalent of a 'state' in the U.S., or Province in Canada. This field is intended to accommodate the many types of international administrative areas." /><span>The administrative area field is the equivalent of a 'state' in the U.S., or Province in Canada. This field is intended to accommodate the many types of international administrative areas.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">administrativeArea</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="postalCode" data-xsd2html2xml-xpath="/dataset/creator/address/postalCode"><b>postalCode</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The postal code is equivalent to a U.S. zip code, or the number used for routing to an international address. " /><span>The postal code is equivalent to a U.S. zip code, or the number used for routing to an international address. <button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">postalCode</button></section>
<section>
<label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="country" data-xsd2html2xml-xpath="/dataset/creator/address/country"><b>country</b>
<input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The country field is used for the name of the contact's country." />
<span>The country field is used for the name of the contact's country.
<button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</span></label>
<button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">country</button>
</section>
</fieldset>
<button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">address</button>
</section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="phone" data-xsd2html2xml-xpath="/dataset/creator/phone"><b>phone</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern=".{0,}" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The phone field describes information about the responsible party's telephone, be it a voice phone, fax." /><span>The phone field describes information about the responsible party's telephone, be it a voice phone, fax.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">phone</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="email" data-xsd2html2xml-xpath="/dataset/creator/email"><b>email</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The electronic mail address is the email address for the party. It is intended to be an Internet SMTP email address, which should consist of a username followed by the @ symbol, followed by the email server domain name address." /><span>The electronic mail address is the email address for the party.<br>It is intended to be an Internet SMTP email address, which should consist of a username followed by the @ symbol, followed by the email server domain name address.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">email</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="homepage" data-xsd2html2xml-xpath="/dataset/creator/homepage"><b>homepage</b><input type="url" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value.replace(/\s+/g, " ").trim()); } else { this.removeAttribute("value"); };" required="required" pattern=".{0,}" data-xsd2html2xml-primitive="anyuri" data-xsd2html2xml-description="A link to associated online information, usually a web site. When the party represents an organization, this is the URL to a website or other online information about the organization. If the party is an individual, it might be their personal web site or other related online information about the party." /><span>A link to associated online information, usually a web site.<br>When the party represents an organization, this is the URL to a website or other online information about the organization.<br>If the party is an individual, it might be their personal web site or other related online information about the party.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">homepage</button></section>
</fieldset>
<button type="button" class="add" data-xsd2html2xml-min="1" data-xsd2html2xml-max="unbounded" onclick="clickAddButton(this);">creator</button>
</section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="metadataProvider" data-xsd2html2xml-xpath="/dataset/metadataProvider">
<legend>metadataProvider<button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</legend>
<h4>The party responsible for the creation of the metadata document</h4>
<label><input type="radio" name="idm47764255720672" required="required" onclick="clickRadioInput(this, 'idm47764255720672');" data-xsd2html2xml-description="1" /><span><b>organizationName</b></span></label>
<section data-xsd2html2xml-choice="true"><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="organizationName" data-xsd2html2xml-xpath="/dataset/metadataProvider/organizationName"><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The full name of the organization that is associated with the resource. This field is intended to describe which institution or overall organization is associated with the resource being described." /><span>The full name of the organization that is associated with the resource.<br>This field is intended to describe which institution or overall organization is associated with the resource being described.</span></label></section>
<label><input type="radio" name="idm47764255720672" required="required" onclick="clickRadioInput(this, 'idm47764255720672');" data-xsd2html2xml-description="2" /><span><b>individualName</b></span></label>
<section data-xsd2html2xml-choice="true">
<p>The individualName field contains subfields so that a person's name can be broken down into parts.</p>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="givenName" data-xsd2html2xml-xpath="/dataset/metadataProvider/individualName/givenName">givenName<input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The given name field can be used for first name of the individual associated with the resource, or for any other names that are not intended to be alphabetized, (as appropriate). " /><span>The given name field can be used for first name of the individual associated with the resource, or for any other names that are not intended to be alphabetized, (as appropriate). <button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">givenName</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="surName" data-xsd2html2xml-xpath="/dataset/metadataProvider/individualName/surName">surName<input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The surname field is used for the last name of the individual associated with the resource. This is typically the family name of an individual, for example, the name by which s/he is referred to in citations. " /><span>The surname field is used for the last name of the individual associated with the resource.<br>This is typically the family name of an individual, for example, the name by which s/he is referred to in citations. </span></label></section>
</section>
<label><input type="radio" name="idm47764255720672" required="required" onclick="clickRadioInput(this, 'idm47764255720672');" data-xsd2html2xml-description="3" /><span><b>positionName</b></span></label>
<section data-xsd2html2xml-choice="true"><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="positionName" data-xsd2html2xml-xpath="/dataset/metadataProvider/positionName"><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="This field is intended to be used instead of a particular person or full organization name. If the associated person who holds the role changes frequently, then Position Name would be used for consistency. E.g., Data Manager." /><span>This field is intended to be used instead of a particular person or full organization name.<br>If the associated person who holds the role changes frequently, then Position Name would be used for consistency. E.g., Data Manager.</span></label></section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="address" data-xsd2html2xml-xpath="/dataset/metadataProvider/address">
<legend>address<button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</legend>
<p>The address field is a container for multiple subfields that describe the physical or electronic address of the responsible party for a resource.</p>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="deliveryPoint" data-xsd2html2xml-xpath="/dataset/metadataProvider/address/deliveryPoint"><b>deliveryPoint</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The delivery point field is used for the physical address for postal communication, e.g., GEO BON Secretariat, Deutscher Platz 5e" /><span>The delivery point field is used for the physical address for postal communication, e.g., GEO BON Secretariat, Deutscher Platz 5e<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">deliveryPoint</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="city" data-xsd2html2xml-xpath="/dataset/metadataProvider/address/city"><b>city</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The city field is used for the city name of the contact associated with a particular resource." /><span>The city field is used for the city name of the contact associated with a particular resource.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">city</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="administrativeArea" data-xsd2html2xml-xpath="/dataset/metadataProvider/address/administrativeArea"><b>administrativeArea</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The administrative area field is the equivalent of a 'state' in the U.S., or Province in Canada. This field is intended to accommodate the many types of international administrative areas." /><span>The administrative area field is the equivalent of a 'state' in the U.S., or Province in Canada. This field is intended to accommodate the many types of international administrative areas.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">administrativeArea</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="postalCode" data-xsd2html2xml-xpath="/dataset/metadataProvider/address/postalCode"><b>postalCode</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The postal code is equivalent to a U.S. zip code, or the number used for routing to an international address. " /><span>The postal code is equivalent to a U.S. zip code, or the number used for routing to an international address. <button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">postalCode</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="country" data-xsd2html2xml-xpath="/dataset/metadataProvider/address/country"><b>country</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The country field is used for the name of the contact's country." /><span>The country field is used for the name of the contact's country.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">country</button></section>
</fieldset>
<button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">address</button>
</section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="phone" data-xsd2html2xml-xpath="/dataset/metadataProvider/phone"><b>phone</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern=".{0,}" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The phone field describes information about the responsible party's telephone, be it a voice phone, fax." /><span>The phone field describes information about the responsible party's telephone, be it a voice phone, fax.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">phone</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="email" data-xsd2html2xml-xpath="/dataset/metadataProvider/email"><b>email</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The electronic mail address is the email address for the party. It is intended to be an Internet SMTP email address, which should consist of a username followed by the @ symbol, followed by the email server domain name address." /><span>The electronic mail address is the email address for the party.<br>It is intended to be an Internet SMTP email address, which should consist of a username followed by the @ symbol, followed by the email server domain name address.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">email</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="homepage" data-xsd2html2xml-xpath="/dataset/metadataProvider/homepage"><b>homepage</b><input type="url" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value.replace(/\s+/g, " ").trim()); } else { this.removeAttribute("value"); };" required="required" pattern=".{0,}" data-xsd2html2xml-primitive="anyuri" data-xsd2html2xml-description="A link to associated online information, usually a web site. When the party represents an organization, this is the URL to a website or other online information about the organization. If the party is an individual, it might be their personal web site or other related online information about the party." /><span>A link to associated online information, usually a web site.<br>When the party represents an organization, this is the URL to a website or other online information about the organization.<br>If the party is an individual, it might be their personal web site or other related online information about the party.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">homepage</button></section>
</fieldset>
<button type="button" class="add" data-xsd2html2xml-min="1" data-xsd2html2xml-max="unbounded" onclick="clickAddButton(this);"> metadataProvider</button>
</section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="associatedParty" data-xsd2html2xml-xpath="/dataset/associatedParty">
<legend>associatedParty<button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</legend>
<h4>A party associated with the resource. Parties have particular roles.</h4>
<label><input type="radio" name="idm47764256828416" required="required" onclick="clickRadioInput(this, 'idm47764256828416');" data-xsd2html2xml-description="1" /><span><b>organizationName</b></span></label>
<section data-xsd2html2xml-choice="true"><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="organizationName" data-xsd2html2xml-xpath="/dataset/associatedParty/organizationName"><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The full name of the organization that is associated with the resource. This field is intended to describe which institution or overall organization is associated with the resource being described." /><span>The full name of the organization that is associated with the resource. This field is intended to describe which institution or overall organization is associated with the resource being described.</span></label></section><label><input type="radio" name="idm47764256828416" required="required" onclick="clickRadioInput(this, 'idm47764256828416');" data-xsd2html2xml-description="2" /><span><b>individualName</b></span></label>
<section data-xsd2html2xml-choice="true">
<p>The individualName field contains subfields so that a person's name can be broken down into parts.</p>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="givenName" data-xsd2html2xml-xpath="/dataset/associatedParty/individualName/givenName">givenName<input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The given name field can be used for first name of the individual associated with the resource, or for any other names that are not intended to be alphabetized, (as appropriate). " /><span>The given name field can be used for first name of the individual associated with the resource, or for any other names that are not intended to be alphabetized, (as appropriate). <button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">givenName</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="surName" data-xsd2html2xml-xpath="/dataset/associatedParty/individualName/surName">surName<input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The surname field is used for the last name of the individual associated with the resource. This is typically the family name of an individual, for example, the name by which s/he is referred to in citations. " /><span>The surname field is used for the last name of the individual associated with the resource.<br>This is typically the family name of an individual, for example, the name by which s/he is referred to in citations. </span></label></section>
</section><label><input type="radio" name="idm47764256828416" required="required" onclick="clickRadioInput(this, 'idm47764256828416');" data-xsd2html2xml-description="3" /><span><b>positionName</b></span></label>
<section data-xsd2html2xml-choice="true"><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="positionName" data-xsd2html2xml-xpath="/dataset/associatedParty/positionName"><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="This field is intended to be used instead of a particular person or full organization name. If the associated person who holds the role changes frequently, then Position Name would be used for consistency. E.g., Data Manager." /><span>This field is intended to be used instead of a particular person or full organization name.<br>If the associated person who holds the role changes frequently, then Position Name would be used for consistency. E.g., Data Manager.</span></label></section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="address" data-xsd2html2xml-xpath="/dataset/associatedParty/address">
<legend>address<button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</legend>
<p>The address field is a container for multiple subfields that describe the physical or electronic address of the responsible party for a resource.</p>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="deliveryPoint" data-xsd2html2xml-xpath="/dataset/associatedParty/address/deliveryPoint"><b>deliveryPoint</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The delivery point field is used for the physical address for postal communication, e.g., GEO BON Secretariat, Deutscher Platz 5e" /><span>The delivery point field is used for the physical address for postal communication, e.g., GEO BON Secretariat, Deutscher Platz 5e<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">deliveryPoint</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="city" data-xsd2html2xml-xpath="/dataset/associatedParty/address/city"><b>city</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The city field is used for the city name of the contact associated with a particular resource." /><span>The city field is used for the city name of the contact associated with a particular resource.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">city</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="administrativeArea" data-xsd2html2xml-xpath="/dataset/associatedParty/address/administrativeArea"><b>administrativeArea</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The administrative area field is the equivalent of a 'state' in the U.S., or Province in Canada. This field is intended to accommodate the many types of international administrative areas." /><span>The administrative area field is the equivalent of a 'state' in the U.S., or Province in Canada. This field is intended to accommodate the many types of international administrative areas.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">administrativeArea</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="postalCode" data-xsd2html2xml-xpath="/dataset/associatedParty/address/postalCode"><b>postalCode</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The postal code is equivalent to a U.S. zip code, or the number used for routing to an international address. " /><span>The postal code is equivalent to a U.S. zip code, or the number used for routing to an international address. <button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">postalCode</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="country" data-xsd2html2xml-xpath="/dataset/associatedParty/address/country"><b>country</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The country field is used for the name of the contact's country." /><span>The country field is used for the name of the contact's country.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">country</button></section>
</fieldset>
<button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">address</button>
</section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="phone" data-xsd2html2xml-xpath="/dataset/associatedParty/phone"><b>phone</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern=".{0,}" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The phone field describes information about the responsible party's telephone, be it a voice phone, fax." /><span>The phone field describes information about the responsible party's telephone, be it a voice phone, fax.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">phone</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="email" data-xsd2html2xml-xpath="/dataset/associatedParty/email"><b>email</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The electronic mail address is the email address for the party. It is intended to be an Internet SMTP email address, which should consist of a username followed by the @ symbol, followed by the email server domain name address." /><span>The electronic mail address is the email address for the party.<br>It is intended to be an Internet SMTP email address, which should consist of a username followed by the @ symbol, followed by the email server domain name address.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">email</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="homepage" data-xsd2html2xml-xpath="/dataset/associatedParty/homepage"><b>homepage</b><input type="url" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value.replace(/\s+/g, " ").trim()); } else { this.removeAttribute("value"); };" required="required" pattern=".{0,}" data-xsd2html2xml-primitive="anyuri" data-xsd2html2xml-description="A link to associated online information, usually a web site. When the party represents an organization, this is the URL to a website or other online information about the organization. If the party is an individual, it might be their personal web site or other related online information about the party." /><span>A link to associated online information, usually a web site. When the party represents an organization, this is the URL to a website or other online information about the organization. If the party is an individual, it might be their personal web site or other related online information about the party.<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">homepage</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="role" data-xsd2html2xml-xpath="/dataset/associatedParty/role"><b>role</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern=".{0,}" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="Use this field to describe the role the party played with respect to the resource. Some potential roles include technician, reviewer, principal investigator, and many others." /><span>Use this field to describe the role the party played with respect to the resource. Some potential roles include technician, reviewer, principal investigator, and many others.</span></label></section>
</fieldset>
<button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="unbounded" onclick="clickAddButton(this);">associatedParty</button>
</section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="pubDate" data-xsd2html2xml-xpath="/dataset/pubDate">
<legend>pubDate</legend>
<label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="content" data-xsd2html2xml-name="pubDate" data-xsd2html2xml-xpath="/dataset/pubDate">
<input type="text" id="datepicker" class="form-control" placeholder="YYYY-MM-DD" onchange="if (this.value) { this.setAttribute("value", this.value.replace(/\s+/g, " ").trim()); } else { this.removeAttribute("value"); };" required="required" pattern=".{0,}" data-xsd2html2xml-primitive="" data-xsd2html2xml-description="The date on which the resource was published" />The date on which the resource was published
</label>
</fieldset>
</section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="license" data-xsd2html2xml-xpath="/dataset/license">
<legend>license</legend>
<label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="content" data-xsd2html2xml-name="license" data-xsd2html2xml-xpath="/dataset/license"><select class="form-control" onchange="this.childNodes.forEach(function(o) { if (o.nodeType == Node.ELEMENT_NODE) o.removeAttribute("selected"); }); this.children[this.selectedIndex].setAttribute("selected","selected");" required="required" data-xsd2html2xml-description="A legal document giving official permission to do something with the dataset.">
<option value="CCO">CCO</option>
<option value="CC BY">CC BY</option>
<option value="CC BY-NC">CC BY-NC</option>
</select>A legal document giving official permission to do something with the dataset.</label>
</fieldset>
</section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="citation" data-xsd2html2xml-xpath="/dataset/citation">
<legend>citation</legend>
<h4>A reference for the dataset as a statement indicating how this data should be cited (attributed) when used.</h4>
<label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="content" data-xsd2html2xml-name="citation" data-xsd2html2xml-xpath="/dataset/citation"><b>citation</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern=".{0,}" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="A single citation for use when citing the dataset" /><span>A single citation for use when citing the dataset<br><br></span></label><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="attribute" data-xsd2html2xml-name="identifier" data-xsd2html2xml-xpath="/dataset/citation/@identifier"><b>identifier</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" pattern=".{0,}" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="A URI, DOI or other persistent identifier for the citation" /><span>A URI, DOI or other persistent identifier for the citation</span></label>
</fieldset>
</section>
<section>
<label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="language" data-xsd2html2xml-xpath="/dataset/language"><b>language</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The language in which the resource (not the metadata document) is written" /><span>The language in which the resource (not the metadata document) is written<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="1" onclick="clickAddButton(this);">language</button></section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="content" data-xsd2html2xml-name="para" data-xsd2html2xml-xpath="/dataset/abstract/para">
<legend>abstract <button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</legend>
<h4>A brief overview describing the dataset</h4>
<section>
<div class="form-group">
<textarea class="form-control" rows="10" cols="100"></textarea>
</div>
</section>
</fieldset>
<button type="button" class="add" data-xsd2html2xml-min="1" data-xsd2html2xml-max="unbounded" onclick="clickAddButton(this);">abstract</button>
</section>
<section>
<fieldset data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="keywordSet" data-xsd2html2xml-xpath="/dataset/keywordSet">
<legend>keywordSet<button type="button" class="remove" onclick="clickRemoveButton(this);"></button>
</legend>
<h4>A wrapper element for the keyword and keywordThesaurus elements</h4>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="keyword" data-xsd2html2xml-xpath="/dataset/keywordSet/keyword"><b>keyword</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="This field names a keyword or key phrase that concisely describes the resource or is related to the resource. Each keyword field should contain one and only one keyword" /><span>This field names a keyword or key phrase that concisely describes the resource or is related to the resource.<br>Each keyword field should contain one and only one keyword<button type="button" class="remove" onclick="clickRemoveButton(this);"></button></span></label><button type="button" class="add" data-xsd2html2xml-min="1" data-xsd2html2xml-max="unbounded" onclick="clickAddButton(this);">keyword</button></section>
<section><label data-xsd2html2xml-namespace="" data-xsd2html2xml-type="element" data-xsd2html2xml-name="keywordThesaurus" data-xsd2html2xml-xpath="/dataset/keywordSet/keywordThesaurus"><b>keywordThesaurus</b><input type="text" class="form-control" onchange="if (this.value) { this.setAttribute("value", this.value); } else { this.removeAttribute("value"); };" required="required" pattern="[\s]*[\S][\s\S]*" data-xsd2html2xml-primitive="string" data-xsd2html2xml-description="The name of the official keyword thesaurus from which keyword was derived" /><span>The name of the official keyword thesaurus from which keyword was derived</span></label></section>
</fieldset>
<button type="button" class="add" data-xsd2html2xml-min="0" data-xsd2html2xml-max="unbounded" onclick="clickAddButton(this);">keywordSet</button>
</section>