-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathold-input-forms.xml
1694 lines (1589 loc) · 87.9 KB
/
old-input-forms.xml
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"?>
<!DOCTYPE input-forms SYSTEM "input-forms.dtd">
<input-forms>
<!-- The form-map maps collection handles to forms. DSpace does not -->
<!-- require a collection name to be unique, not even within a community. -->
<!-- DSpace does however ensure that each collection's handle is unique. -->
<!-- Form-map provides the means to associate a unique collection name -->
<!-- with a form. The form-map also provides the special handle "default" -->
<!-- (which is never a collection), here mapped to "traditional". Any -->
<!-- collection which does not appear in this map will be associated with -->
<!-- the mapping for handle "default". -->
<form-map>
<name-map collection-handle="default" form-name="traditional" />
</form-map>
<!-- The form-definitions map lays out the detailed definition of all the -->
<!-- submission forms. Each separate form set has a unique name as an -->
<!-- attribute. This name matches one of the names in the form-map. One -->
<!-- named form set has the name "traditional"; as this name suggests, -->
<!-- it is the old style and is also the default, which gets used when -->
<!-- the specified collection has no correspondingly-named form set. -->
<!-- -->
<!-- Each form set contains an ordered set of pages; each page defines -->
<!-- one submission metadata entry screen. Each page has an ordered list -->
<!-- of field definitions, Each field definition corresponds to one -->
<!-- metatdata entry (a so-called row), which has a DC element name, a -->
<!-- displayed label, a text string prompt which is called a hint, and -->
<!-- an input-type. Each field also may hold optional elements: DC -->
<!-- qualifier name, a repeatable flag, and a text string whose presence -->
<!-- serves as a 'this field is required' flag. -->
<form-definitions>
<form name="traditional">
<page number="1">
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>contributor</dc-element>
<dc-qualifier>author</dc-qualifier>
<repeatable>true</repeatable>
<label>Autores</label>
<input-type>name</input-type>
<hint>Introduza os nomes dos autores do trabalho.</hint>
<required>Tem que introduzir o nome do(s) autor(es).</required>
</field>
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>title</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Título</label>
<input-type>onebox</input-type>
<hint>Introduza o título principal do registo.</hint>
<required>Tem que introduzir um título principal do registo.</required>
</field>
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>title</dc-element>
<dc-qualifier>alternative</dc-qualifier>
<repeatable>true</repeatable>
<label>Outros Títulos</label>
<input-type>onebox</input-type>
<hint>Se necessário, indique o título alternativo ou tradução.</hint>
<required></required>
</field>
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>date</dc-element>
<dc-qualifier>issued</dc-qualifier>
<repeatable>false</repeatable>
<label>Data</label>
<input-type>date</input-type>
<hint>Forneça a data da publicação ou distribuição pública. Pode deixar o mês e/ou o dia em branco se não se aplicar.</hint>
<required>Tem que inserir pelo menos o ano.</required>
</field>
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>publisher</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Editora</label>
<input-type>onebox</input-type>
<hint>Introduza o nome da entidade responsável pela publicação ou impressão.</hint>
<required></required>
</field>
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>relation</dc-element>
<dc-qualifier>publisherversion</dc-qualifier>
<repeatable>false</repeatable>
<label>Versão da Editora</label>
<input-type>onebox</input-type>
<hint>Introduza o endereço eletrónico da versão do artigo publicado na editora. Algumas revistas exigem a colocação de um link para a sua versão.
Exemplo: http://www.springerlink.com/.</hint>
<required></required>
</field>
<!-- Substituir -->
<!-- <field>
<dc-schema>degois</dc-schema>
<dc-element>publication</dc-element>
<dc-qualifier>firstPage</dc-qualifier>
<repeatable>false</repeatable>
<label>Primeira Página</label>
<input-type>onebox</input-type>
<hint>No caso de artigos em revista, capítulos de livro, etc...</hint>
<required></required>
</field>
<field>
<dc-schema>degois</dc-schema>
<dc-element>publication</dc-element>
<dc-qualifier>lastPage</dc-qualifier>
<repeatable>false</repeatable>
<label>Última Página</label>
<input-type>onebox</input-type>
<hint>No caso de artigos em revista, capítulos de livro, etc...</hint>
<required></required>
</field>
<field>
<dc-schema>degois</dc-schema>
<dc-element>publication</dc-element>
<dc-qualifier>issue</dc-qualifier>
<repeatable>false</repeatable>
<label>Número da Edição</label>
<input-type>onebox</input-type>
<hint>Se o registo tiver um número de edição associado.</hint>
<required></required>
</field>
<field>
<dc-schema>degois</dc-schema>
<dc-element>publication</dc-element>
<dc-qualifier>volume</dc-qualifier>
<repeatable>false</repeatable>
<label>Volume</label>
<input-type>onebox</input-type>
<hint>Introduza o número do volume ou a série da revista em que foi publicado.</hint>
<required></required>
</field> -->
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>identifier</dc-element>
<dc-qualifier>citation</dc-qualifier>
<repeatable>false</repeatable>
<label>Citação</label>
<input-type>onebox</input-type>
<hint>Introduza a referência bibliográfica (citação) deste artigo.</hint>
<required></required>
</field>
<!-- <field>
<dc-schema>dc</dc-schema>
<dc-element>relation</dc-element>
<dc-qualifier>ispartofseries</dc-qualifier>
<repeatable>true</repeatable>
<label>Série/Número</label>
<input-type>series</input-type>
<hint>Introduza o nome da série e número atribuído ao item pela sua comunidade.</hint>
<required></required>
</field> -->
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>identifier</dc-element>
<dc-qualifier>doi</dc-qualifier>
<repeatable></repeatable>
<label>DOI</label>
<input-type>onebox</input-type>
<hint>Se este registo tiver algum identificador DOI associado, insira em baixo.</hint>
<required></required>
</field>
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>identifier</dc-element>
<dc-qualifier></dc-qualifier>
<!-- An input-type of qualdrop_value MUST be marked as repeatable -->
<repeatable>true</repeatable>
<label>Identificadores</label>
<input-type value-pairs-name="common_identifiers">qualdrop_value</input-type>
<hint>Se este registo tiver algum identificador associado, insira em baixo.</hint>
<required></required>
</field>
<!-- <field>
<dc-schema>dc</dc-schema>
<dc-element>peerreviewed</dc-element>
<label>Revisão por Pares (peer-review)</label>
<input-type value-pairs-name="yes_no">list</input-type>
<hint>Indique se a versão que está a depositar foi revista por pares especialistas (refereeing).</hint>
<required></required>
</field> -->
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>type</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Tipo</label>
<input-type value-pairs-name="common_types">dropdown</input-type>
<hint>Selecione o tipo do conteúdo que está a depositar.</hint>
<required></required>
</field>
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>language</dc-element>
<dc-qualifier>iso</dc-qualifier>
<repeatable>false</repeatable>
<label>Idioma</label>
<input-type value-pairs-name="common_iso_languages">dropdown</input-type>
<hint>Selecione o idioma do conteúdo principal do trabalho. Se a língua Não aparecer na lista em baixo selecione "Outra". Se ao conteúdo Não se aplicar uma língua (por exemplo, uma imagem) selecione "N/A".</hint>
<required>Insira o idioma do documento</required>
</field>
<field><!-- #TODO Colocar com esquema OAIRE oaire.version -->
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier>version</dc-qualifier>
<repeatable>false</repeatable>
<label>Estado da Publicação</label>
<input-type value-pairs-name="dc_publicationstatus">dropdown</input-type>
<hint>Indique o estado atual da publicação</hint>
<required>Insira o Estado da Publicação</required>
</field>
<!-- <field>
<dc-schema>degois</dc-schema>
<dc-element>publication</dc-element>
<dc-qualifier>title</dc-qualifier>
<repeatable>false</repeatable>
<label>Título da Revista, Periódico, Monografia ou Evento</label>
<input-type>onebox</input-type>
<hint></hint>
</field>
<field>
<dc-schema>degois</dc-schema>
<dc-element>publication</dc-element>
<dc-qualifier>location</dc-qualifier>
<repeatable>false</repeatable>
<label>Local de Edição ou do Evento</label>
<input-type>onebox</input-type>
<hint></hint>
</field> -->
</page>
<page number="2">
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>subject</dc-element>
<dc-qualifier></dc-qualifier>
<!-- An input-type of twobox MUST be marked as repeatable -->
<repeatable>true</repeatable>
<label>Palavras Chave</label>
<input-type>twobox</input-type>
<hint>Introduza as palavras chave ou assuntos.</hint>
<required></required>
<vocabulary>srsc</vocabulary>
</field>
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier>abstract</dc-qualifier>
<repeatable>true</repeatable>
<label>Resumo</label>
<input-type>textarea</input-type>
<hint>Introduza em baixo o resumo (abstract) no idioma principal do registo. </hint>
<required></required>
</field>
<!--
Pensar em alternativas para metadados:
http://openaire-guidelines-for-literature-repository-managers.readthedocs.io/en/latest/field_projectid.html#dci-fundingreference
Example:
<fundingReference>
<funderName>European Commission</funderName>
<funderIdentifier funderIdentifierType="Crossref Funder ID">http://doi.org/10.13039/100010661</funderIdentifier>
<fundingStream>Horizon 2020 Framework Programme</fundingStream>
<awardNumber awardURI="http://cordis.europa.eu/project/rcn/194062_en.html">643410</awardNumber>
<awardTitle>Open Access Infrastructure for Research in Europe 2020</awardTitle>
</fundingReference>
-->
<field>
<dc-schema>dc</dc-schema>
<dc-element>relation</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Projeto Financiado</label>
<input-type>onebox</input-type>
<hint>Caso a publicação tenha resultado de projeto(s) financiado(s) pela Comissão Europeia (FP7, H2020, ERC), Fundação para a Ciência e Tecnologia ou Wellcome Trust, identifique esse(s) projeto(s) aqui. Essa identificação é geralmente um requisito dos financiadores.
Para identificar o(s) projeto(s) insira um dos seus elementos identificativos (número, nome, acrónimo ou referência) e selecione da lista que lhe é apresentada. Dúvidas ou mais informações aceda <a href="http://projeto.rcaap.pt/index.php/lang-pt/como-auto-arquivar-documentos/politica-fct" target="_blank">aqui</a></hint>
</field>
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>rights</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Acesso</label>
<input-type value-pairs-name="common_rights">dropdown</input-type>
<hint>Esta coleção é de Acesso Aberto. Caso pretenda que este documento tenha outra condição de acesso indique-a aqui.</hint>
<required></required>
</field>
<!--
Redefinir http://openaire-guidelines-for-literature-repository-managers.readthedocs.io/en/latest/field_embargoenddate.html#dci-dateembargo
-->
<field><!-- Usar oaire.date.available -->
<dc-schema>dc</dc-schema>
<dc-element>date</dc-element>
<dc-qualifier>embargo</dc-qualifier>
<repeatable>false</repeatable>
<label>Data Final do Embargo</label>
<input-type>date</input-type>
<hint>Caso tenha indicado "Acesso Embargado" no campo "Acesso", indique a data do final do embargo, a partir da qual o documento passará a estar disponível em Acesso Aberto. Deve indicar pelo menos o Ano e o Mês.</hint>
</field>
<!-- <field> <! Identificar forma ou manter Requisito FCT
<dc-schema>rcaap</dc-schema>
<dc-element>embargofct</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Justificação do Prolongamento do Embargo</label>
<input-type>textarea</input-type>
<hint>No caso da publicação ter financiamento FCT e de ter indicado um período de embargo superior a 12 meses (nas ciências sociais e humanidades) ou 6 meses para as restantes áreas indique as razões.</hint>
</field> -->
<!-- <field>
<dc-schema>rcaap</dc-schema>
<dc-element>contributor</dc-element>
<dc-qualifier>authoremail</dc-qualifier>
<repeatable>false</repeatable>
<label>Contacto do autor(a) para envio de pedido de cópia </label>
<input-type>onebox</input-type>
<hint>De acordo com a informação anterior, se o registo for de acesso restrito ou embargado, insira aqui o e-mail do autor(a) para posterior envio de resposta a eventuais pedidos de cópia ou de acesso.</hint>
<required></required>
</field> -->
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>rights</dc-element>
<dc-qualifier>uri</dc-qualifier>
<repeatable>false</repeatable>
<label>Licença Creative Commons</label>
<input-type value-pairs-name="creative_commons">dropdown</input-type>
<hint>Associe uma licença <a href="https://creativecommons.org/licenses/" target="_blank" >Creative Commons 4.0 Internacional</a> ao seu trabalho, escolhendo-a da lista apresentada. No caso de trabalhos financiados pela FCT o uso da licença CC-BY é recomendado, mas torna-se obrigatório caso a publicação tenha tido Custos de Processamento da Publicação (CPP ou APC) suportados por verbas da FCT. Saiba mais <a href="http://projeto.rcaap.pt/index.php/lang-pt/como-auto-arquivar-documentos/politica-fct" target="_blank" >aqui</a></hint>
</field>
<field><!-- OK -->
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier>sponsorship</dc-qualifier>
<repeatable>false</repeatable>
<label>Patrocinadores</label>
<input-type>textarea</input-type>
<hint> Introduza os nomes de eventuais patrocinadores na caixa em baixo. </hint>
<required></required>
</field>
<!-- <field>
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Descrição</label>
<input-type>textarea</input-type>
<hint> Descrição adicional e comentários. </hint>
<required></required>
</field> -->
</page>
</form>
<!-- Thesis form -->
<form name="thesis">
<page number="1">
<field>
<dc-schema>dc</dc-dcschema>
<dc-element>title</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Título</label>
<input-type>onebox</input-type>
<hint>Introduza o título da tese ou dissertação. O título não deve terminar com pontuação. Não é possível formatar em itálico. Se tiver um subtítulo coloque [ : ]. Use maiúsculas apenas para a primeira letra e nomes próprios.
<br>Exemplo: <b>Título do Trabalho : subtítulo do trabalho</b>
</hint>
<required>Tem que introduzir um título principal do trabalho.</required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>title</dc-element>
<dc-qualifier>alterdnative</dc-qualifier>
<repeatable>false</repeatable>
<label>Outro Título</label>
<input-type>onebox</input-type>
<hint>Introduza se necessário outro título associado ao trabalho.</hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>contributor</dc-element>
<dc-qualifier>author</dc-qualifier>
<repeatable>false</repeatable>
<label>Autor</label>
<input-type>name</input-type>
<hint>Introduza o nome do autor da tese ou dissertação.</hint>
<required>Tem que introduzir em baixo o nome do autor.</required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>contributor</dc-element>
<dc-qualifier>advisor</dc-qualifier>
<repeatable>true</repeatable>
<label>Orientador(es)</label>
<input-type>name</input-type>
<hint>Introduza em baixo o nome do(s) orientador(es) ou revisor(es) do trabalho.</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>date</dc-element>
<dc-qualifier>issued</dc-qualifier>
<repeatable>false</repeatable>
<label>Data de Defesa</label>
<input-type>date</input-type>
<hint>Introduza a data em que o trabalho foi defendido.</hint>
<required>Tem que inserir pelo menos o ano.</required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>date</dc-element>
<dc-qualifier>submitted</dc-qualifier>
<repeatable>false</repeatable>
<label>Data de submissão</label>
<input-type>date</input-type>
<hint>Introduza a data em que o trabalho foi submetido para defesa.</hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>identifier</dc-element>
<dc-qualifier>tid</dc-qualifier>
<repeatable>false</repeatablte>
<label>Identificador do Trabalho (TID)</label>
<input-type>onebox</input-type>
<hint>Indique o identificador do trabalho atribuído pelo RENATES.</hint>
<!-- <required>Tem que indicar o identificador do trabalho (TID).</required> ativar apenas quando forem implementados os TIDs -->
<required></required>
</field>
<field>
<dc-schema>thesis</dc-schema>
<dc-element>degree</dc-element>
<dc-qualifier>name</dc-qualifier>
<repeatable>false</repeatable>
<label>Designação</label>
<input-type>onebox</input-type>
<hint>Designação do grau associado ao trabalho, tal como apresentado na obra. (exemplo: Mestrado em Tecnologias Educativas)</hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>type</dc-element>
<dc-qualifier></dc-qualifier>
<label>Tipo</label>
<input-type value-pairs-name="thesis_types">dropdown</input-type>
<hint>Indique qual o tipo de trabalho.</hint>
<required>é obrigatório selecionar uma tipologia do trabalho.</required>
</field>
<!-- <field>
<dc-schema>thesis</dc-schema>
<dc-element>degree</dc-element>
<dc-qualifier>level</dc-qualifier>
<repeatable>false</repeatable>
<label>Grau Obtido</label>
<input-type>onebox</input-type>
<hint>Designação do grau obtido</hint>
</field> Retirado por ser redundante com o campo da tipologia de trabalho -->
<!-- Campo áreas científicas inicial <field>
<dc-schema>thesis</dc-schema>
<dc-element>degree</dc-element>
<dc-qualifier>discipline</dc-qualifier>
<repeatable>true</repeatable>
<label>Área Científica</label>
<input-type>onebox</input-type>
<hint>Área científica associada ao trabalho</hint>
</field> -->
<field>
<dc-schema>dc</dc-schema>
<dc-element>subject</dc-element>
<dc-qualifier>fos</dc-qualifier>
<repeatable>true</repeatable>
<label>Domínio Científico</label>
<input-type>onebox</input-type>
<hint>Clique em "Assuntos" para selecionar a área científica associada ao trabalho de acordo com classificação <a href="http://www.oecd.org/science/inno/38235147.pdf" target="_blank">FOS</a>.</hint>
<vocabulary closed="false">fos</vocabulary>
<required></required>
</field>
<!-- ** Será preenchido por defeito
<field><dc-schema>thesis</dc-schema><dc-element>degree</dc-element><dc-qualifier>grantor</dc-qualifier><repeatable>false</repeatable><label>Instituição</label><input-type>onebox</input-type><hint>Nome da Instituição que atribui o grau ao trabalho. Deve ser incluído tal como é indicado no documento. </hint><required>Deve indicar o nome da instituição</required></field> -->
</page>
<page number="2">
<field>
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier>abstract</dc-qualifier>
<repeatable>true</repeatable>
<label>Resumo</label>
<input-type>textarea</input-type>
<hint>Introduza em baixo o resumo (abstract) no idioma principal do trabalho. Caso tenha resumo(s) noutro(s) idioma(s) clique no botão "Adicionar mais".</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>subject</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Palavras-chave</label>
<input-type>twobox</input-type>
<hint>Introduza as palavras-chave ou assuntos.</hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>language</dc-element>
<dc-qualifier>iso</dc-qualifier>
<repeatable>false</repeatable>
<label>Idioma</label>
<input-type value-pairs-name="common_iso_languages">dropdown</input-type>
<hint>Selecione o idioma predominante do trabalho. Se o idioma não aparecer listado em baixo selecione "Outro".</hint>
<required>Insira o idioma do documento</required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>relation</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Projeto ou Bolsa de Financiamento</label>
<input-type>onebox</input-type>
<hint>Caso o trabalho tenha resultado de bolsa ou projeto(s) financiado(s) pela Comissão Europeia (FP7, H2020, ERC), Fundação para a Ciência e Tecnologia ou Wellcome Trust, identifique esse(s) projeto(s) ou bolsa aqui. Essa identificação é geralmente um requisito dos financiadores.
Para identificar o(s) projeto(s) ou bolsa insira um dos seus elementos identificativos (número, nome, acrónimo ou referência) e selecione da lista que lhe é apresentada. Dúvidas ou mais informações aceda <a href="http://projeto.rcaap.pt/index.php/lang-pt/como-auto-arquivar-documentos/politica-fct" target="_blank">aqui</a></hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>rights</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Acesso</label>
<input-type value-pairs-name="common_rights">dropdown</input-type>
<hint>Esta coleção é por predefinição de Acesso Aberto, caso pretenda que este trabalho tenha outra condição de acesso indique-a aqui.</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>date</dc-element>
<dc-qualifier>embargo</dc-qualifier>
<repeatable>false</repeatable>
<label>Data Final do Embargo</label>
<input-type>date</input-type>
<hint>Caso tenha indicado "Acesso Embargado" no campo "Acesso", indique a data do final do embargo, a partir da qual o documento passará a estar disponível em Acesso Aberto. Deve indicar pelo menos o ano e o mês.</hint>
</field>
<field>
<dc-schema>rcaap</dc-schema>
<dc-element>embargofct</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Justificação do Prolongamento do Embargo</label>
<input-type>textarea</input-type>
<hint>No caso da publicação ter financiamento FCT e de ter indicado um período de embargo superior a 12 meses (nas ciências sociais e humanidades) ou 6 meses para as restantes áreas indique as razões.</hint>
</field>
<field>
<dc-schema>rcaap</dc-schema>
<dc-element>contributor</dc-element>
<dc-qualifier>authoremail</dc-qualifier>
<repeatable>false</repeatable>
<label>Contacto do autor(a) para envio de pedido de cópia </label>
<input-type>onebox</input-type>
<hint>De acordo com a informação anterior, se a tese for de acesso restrito ou embargado, insira aqui o e-mail do autor(a) da tese para posterior envio de resposta a eventuais pedidos de cópia ou de acesso.</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>rights</dc-element>
<dc-qualifier>uri</dc-qualifier>
<repeatable>false</repeatable>
<label>Licença Creative Commons</label>
<input-type value-pairs-name="creative_commons">dropdown</input-type>
<hint>Associe uma licença <a href="https://creativecommons.org/licenses/" target="_blank" >Creative Commons 4.0 Internacional</a> ao seu trabalho, escolhendo-a da lista apresentada. No caso de trabalhos financiados pela FCT o uso da licença CC-BY é recomendado.</hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier>sponsorship</dc-qualifier>
<repeatable>true</repeatable>
<label>Outra(s) entidade(s) patrocinadora(s)</label>
<input-type>textarea</input-type>
<hint>Introduza os nomes de eventuais patrocinadores do trabalho</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Comentários</label>
<input-type>textarea</input-type>
<hint>Insira alguma informação adicional se necessário. </hint>
</field>
</page>
</form>
<form name="thesisTID">
<page number="1">
<field>
<dc-schema>dc</dc-schema>
<dc-element>title</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Título</label>
<input-type>onebox</input-type>
<hint>Introduza o título da tese ou dissertação. O título não deve terminar com pontuação. Não é possível formatar em itálico. Se tiver um subtítulo coloque [ : ]. Use maiúsculas apenas para a primeira letra e nomes próprios.
<br>Exemplo: <b>Título do Trabalho : subtítulo do trabalho</b>
</hint>
<required>Tem que introduzir um título principal do trabalho.</required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>title</dc-element>
<dc-qualifier>alternative</dc-qualifier>
<repeatable>false</repeatable>
<label>Outro Título</label>
<input-type>onebox</input-type>
<hint>Introduza se necessário outro título associado ao trabalho.</hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>contributor</dc-element>
<dc-qualifier>author</dc-qualifier>
<repeatable>false</repeatable>
<label>Autor</label>
<input-type>name</input-type>
<hint>Introduza o nome do autor da tese ou dissertação.</hint>
<required>Tem que introduzir em baixo o nome do autor.</required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>contributor</dc-element>
<dc-qualifier>advisor</dc-qualifier>
<repeatable>true</repeatable>
<label>Orientador(es)</label>
<input-type>name</input-type>
<hint>Introduza em baixo o nome do(s) orientador(es) ou revisor(es) do trabalho.</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>date</dc-element>
<dc-qualifier>issued</dc-qualifier>
<repeatable>false</repeatable>
<label>Data de Defesa</label>
<input-type>date</input-type>
<hint>Introduza a data em que o trabalho foi defendido.</hint>
<required>Tem que inserir pelo menos o ano.</required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>date</dc-element>
<dc-qualifier>submitted</dc-qualifier>
<repeatable>false</repeatable>
<label>Data de submissão</label>
<input-type>date</input-type>
<hint>Introduza a data em que o trabalho foi submetido para defesa.</hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>identifier</dc-element>
<dc-qualifier>tid</dc-qualifier>
<repeatable>false</repeatable>
<label>Identificador do Trabalho (TID)</label>
<input-type>onebox</input-type>
<hint>Indique o identificador do trabalho atribuído pelo RENATES.</hint>
<required>Tem que indicar o identificador do trabalho (TID).</required>
<!--<required></required>-->
</field>
<field>
<dc-schema>thesis</dc-schema>
<dc-element>degree</dc-element>
<dc-qualifier>name</dc-qualifier>
<repeatable>false</repeatable>
<label>Designação</label>
<input-type>onebox</input-type>
<hint>Designação do grau associado ao trabalho, tal como apresentado na obra. (exemplo: Mestrado em Tecnologias Educativas)</hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>type</dc-element>
<dc-qualifier></dc-qualifier>
<label>Tipo</label>
<input-type value-pairs-name="thesis_types">dropdown</input-type>
<hint>Indique qual o tipo de trabalho.</hint>
<required>é obrigatório selecionar uma tipologia do trabalho.</required>
</field>
<!-- <field>
<dc-schema>thesis</dc-schema>
<dc-element>degree</dc-element>
<dc-qualifier>level</dc-qualifier>
<repeatable>false</repeatable>
<label>Grau Obtido</label>
<input-type>onebox</input-type>
<hint>Designação do grau obtido</hint>
</field> Retirado por ser redundante com o campo da tipologia de trabalho -->
<!-- Campo áreas cientÃficas inicial <field>
<dc-schema>thesis</dc-schema>
<dc-element>degree</dc-element>
<dc-qualifier>discipline</dc-qualifier>
<repeatable>true</repeatable>
<label>Área Científica</label>
<input-type>onebox</input-type>
<hint>Área científica associada ao trabalho</hint>
</field> -->
<field>
<dc-schema>dc</dc-schema>
<dc-element>subject</dc-element>
<dc-qualifier>fos</dc-qualifier>
<repeatable>true</repeatable>
<label>Domínio Científico</label>
<input-type>onebox</input-type>
<hint>Clique em "Assuntos" para selecionar a área científica associada ao trabalho de acordo com classificação <a href="http://www.oecd.org/science/inno/38235147.pdf" target="_blank">FOS</a>.</hint>
<vocabulary closed="false">fos</vocabulary>
<required></required>
</field>
<!-- ** Será preenchido por defeito
<field><dc-schema>thesis</dc-schema><dc-element>degree</dc-element><dc-qualifier>grantor</dc-qualifier><repeatable>false</repeatable><label>Instituição</label><input-type>onebox</input-type><hint>Nome da Instituição que atribui o grau ao trabalho. Deve ser incluído tal como é indicado no documento. </hint><required>Deve indicar o nome da instituição</required></field> -->
</page>
<page number="2">
<field>
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier>abstract</dc-qualifier>
<repeatable>true</repeatable>
<label>Resumo</label>
<input-type>textarea</input-type>
<hint>Introduza em baixo o resumo (abstract) no idioma principal do trabalho. Caso tenha resumo(s) noutro(s) idioma(s) clique no botão "Adicionar mais".</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>subject</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Palavras-chave</label>
<input-type>twobox</input-type>
<hint>Introduza as palavras-chave ou assuntos.</hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>language</dc-element>
<dc-qualifier>iso</dc-qualifier>
<repeatable>false</repeatable>
<label>Idioma</label>
<input-type value-pairs-name="common_iso_languages">dropdown</input-type>
<hint>Selecione o idioma predominante do trabalho. Se o idioma não aparecer listado em baixo selecione "Outro".</hint>
<required>Insira o idioma do documento</required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>relation</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Projeto ou Bolsa de Financiamento</label>
<input-type>onebox</input-type>
<hint>Caso o trabalho tenha resultado de bolsa ou projeto(s) financiado(s) pela Comissão Europeia (FP7, H2020, ERC), Fundação para a Ciência e Tecnologia ou Wellcome Trust, identifique esse(s) projeto(s) ou bolsa aqui. Essa identificação é geralmente um requisito dos financiadores.
Para identificar o(s) projeto(s) ou bolsa insira um dos seus elementos identificativos (número, nome, acrónimo ou referência) e selecione da lista que lhe é apresentada. Dúvidas ou mais informações aceda <a href="http://projeto.rcaap.pt/index.php/lang-pt/como-auto-arquivar-documentos/politica-fct" target="_blank">aqui</a></hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>rights</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Acesso</label>
<input-type value-pairs-name="common_rights">dropdown</input-type>
<hint>Esta coleção é por predefinição de Acesso Aberto, caso pretenda que este trabalho tenha outra condição de acesso indique-a aqui.</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>date</dc-element>
<dc-qualifier>embargo</dc-qualifier>
<repeatable>false</repeatable>
<label>Data Final do Embargo</label>
<input-type>date</input-type>
<hint>Caso tenha indicado "Acesso Embargado" no campo "Acesso", indique a data do final do embargo, a partir da qual o documento passará a estar disponível em Acesso Aberto. Deve indicar pelo menos o ano e o mês.</hint>
</field>
<field>
<dc-schema>rcaap</dc-schema>
<dc-element>embargofct</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Justificação do Prolongamento do Embargo</label>
<input-type>textarea</input-type>
<hint>No caso da publicação ter financiamento FCT e de ter indicado um período de embargo superior a 12 meses (nas ciências sociais e humanidades) ou 6 meses para as restantes áreas indique as razões.</hint>
</field>
<field>
<dc-schema>rcaap</dc-schema>
<dc-element>contributor</dc-element>
<dc-qualifier>authoremail</dc-qualifier>
<repeatable>false</repeatable>
<label>Contacto do autor(a) para envio de pedido de cópia </label>
<input-type>onebox</input-type>
<hint>De acordo com a informação anterior, se a tese for de acesso restrito ou embargado, insira aqui o e-mail do autor(a) da tese para posterior envio de resposta a eventuais pedidos de cópia ou de acesso.</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>rights</dc-element>
<dc-qualifier>uri</dc-qualifier>
<repeatable>false</repeatable>
<label>Licença Creative Commons</label>
<input-type value-pairs-name="creative_commons">dropdown</input-type>
<hint>Associe uma licença Creative Commons 4.0 Internacional ao seu trabalho, escolhendo-a da lista apresentada. No caso de trabalhos financiados pela FCT o uso da licença CC-BY é recomendado. Saiba mais <a href="http://projeto.rcaap.pt/index.php/lang-pt/como-auto-arquivar-documentos/politica-fct" target="_blank" >aqui</a></hint>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier>sponsorship</dc-qualifier>
<repeatable>true</repeatable>
<label>Outra(s) entidade(s) patrocinadora(s)</label>
<input-type>textarea</input-type>
<hint>Introduza os nomes de eventuais patrocinadores do trabalho</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Comentários</label>
<input-type>textarea</input-type>
<hint>Insira alguma informação adicional se necessário. </hint>
</field>
</page>
</form>
<form name="ddi">
<page number="1">
<field>
<dc-schema>dc</dc-schema>
<dc-element>title</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Título</label>
<input-type>onebox</input-type>
<hint>Introduza o título do Estudo</hint>
<required>Tem que introduzir um título principal do registo.</required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>title</dc-element>
<dc-qualifier>alternative</dc-qualifier>
<repeatable>true</repeatable>
<label>Sub-títutlo</label>
<input-type>onebox</input-type>
<hint>Se o registo tiver um título alternativo, subtítulo ou título em inglês, insira-o em baixo.</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>identifier</dc-element>
<dc-qualifier>citation</dc-qualifier>
<repeatable>false</repeatable>
<label>Citação Bibliográfica</label>
<input-type>onebox</input-type>
<hint>Introduza a citação para a publicação anterior deste item.</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>creator</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Investigador / Instituição Responsável</label>
<input-type>onebox</input-type>
<hint>Introduza o nome do Investigador ou Instituição responsável pelos dados (Authority Entity / Primary Investigator)</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>subject</dc-element>
<dc-qualifier></dc-qualifier>
<!-- An input-type of twobox MUST be marked as repeatable -->
<repeatable>true</repeatable>
<label>Palavras Chave</label>
<input-type>twobox</input-type>
<hint>Introduza as palavras chave ou frases do assunto.</hint>
<required></required>
<vocabulary>srsc</vocabulary>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>description</dc-element>
<dc-qualifier>abstract</dc-qualifier>
<repeatable>false</repeatable>
<label>Resumo / Abstract</label>
<input-type>textarea</input-type>
<hint> Introduza em baixo o resumo (abstract) no idioma principal. </hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>coverage</dc-element>
<dc-qualifier>temporal</dc-qualifier>
<repeatable>true</repeatable>
<label>Período de Tempo Coberto pelos Dados</label>
<input-type>onebox</input-type>
<hint>Introduza o período temporal do trabalho</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>coverage</dc-element>
<dc-qualifier>spatial</dc-qualifier>
<repeatable>true</repeatable>
<label>País ou Âmbito Geográfico</label>
<input-type>onebox</input-type>
<hint>Introduza a abrangência geográfica dos dados recolhidos</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>coverage</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Unidade Geográfica, Unidade de Análise e Universo</label>
<input-type>onebox</input-type>
<hint>Rever esta informação!!!!!!!!!!</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>date</dc-element>
<dc-qualifier>issued</dc-qualifier>
<repeatable>false</repeatable>
<label>Data</label>
<input-type>date</input-type>
<hint>Forneça a data da publicação ou distribuição pública. Pode deixar o mês e/ou o dia em branco se não se aplicar.</hint>
<required>Tem que inserir pelo menos o ano.</required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>type</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>true</repeatable>
<label>Tipo de Dados</label>
<input-type value-pairs-name="ddi_types">dropdown</input-type>
<hint>Seleccione o tipo do conteúdo que está a depositar. Para seleccionar mais do que um valor da lista, pressione a tecla "CTRL" ou "Shift".
Seleccione o tipo (em maiúsculas) e o sub-tipo. ?? necessário ?? </hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>publisher</dc-element>
<dc-qualifier></dc-qualifier>
<repeatable>false</repeatable>
<label>Entidade Responsável pela Aplicação do Questionário</label>
<input-type>onebox</input-type>
<hint>Introduza o nome da entidade Responsável pela aplicação do questionário.</hint>
<required></required>
</field>
<field>
<dc-schema>dc</dc-schema>
<dc-element>contributor</dc-element>
<dc-qualifier>author</dc-qualifier>
<repeatable>true</repeatable>
<label>Autores</label>
<input-type>name</input-type>
<hint>Introduza os nomes dos autores."titl"</hint>
<required></required>