resme 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +170 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/resme +6 -0
- data/lib/resme.rb +4 -0
- data/lib/resme/cli/command_semantics.rb +155 -0
- data/lib/resme/cli/command_syntax.rb +192 -0
- data/lib/resme/renderer/renderer.rb +103 -0
- data/lib/resme/templates/europass/eu.xml.erb +405 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Achievement.xsd +91 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Certificate.xsd +62 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/CommonTypes.xsd +139 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/ComputerSkill.xsd +112 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/ContactInformation.xsd +321 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Demographics.xsd +122 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/DigitalContent.xsd +164 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/DocumentInformation.xsd +119 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Documentation.xsd +122 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/DrivingSkill.xsd +71 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/EducationalExperience.xsd +137 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/EmploymentExperience.xsd +65 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/EuropassCoverLetter.xsd +70 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/EuropassLearnerInformation.xsd +91 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/EuropassPrintingPreferences.xsd +247 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/EuropassSchema.xsd +133 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Experience.xsd +75 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Headline.xsd +97 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Identification.xsd +54 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Language.xsd +107 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Letter.xsd +129 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/LinguisticSkill.xsd +189 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/OccupationalField.xsd +68 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Organisation.xsd +129 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/PersonName.xsd +71 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/Skill.xsd +71 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/imported/EQF_08_V1.0.0.xsd +115 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/imported/EUDrivingLicence_V1.1.0.xsd +28 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/imported/ISCED97_V1.0.0.xsd +981 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/imported/NACE_COM_V1.0.0.xsd +5630 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/included/EuropassAddressFormats_V1.3.0.xsd +117 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/included/EuropassISCO_88_COM_V1.4.0.xsd +15116 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/included/EuropassISOCountries_V1.6.0.xsd +6180 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/included/EuropassISOLanguages_V1.8.0.xsd +7645 -0
- data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/included/EuropassNationalities_V1.6.0.xsd +6179 -0
- data/lib/resme/templates/europass/europass-xml-schema-doc-v3.3.0.pdf +0 -0
- data/lib/resme/templates/html/css/main.css +87 -0
- data/lib/resme/templates/html/css/normalize.css +424 -0
- data/lib/resme/templates/html/index.html.erb +22 -0
- data/lib/resme/templates/html/js/main.js +0 -0
- data/lib/resme/templates/html/js/plugins.js +24 -0
- data/lib/resme/templates/html/js/vendor/jquery-1.12.0.min.js +5 -0
- data/lib/resme/templates/html/js/vendor/modernizr-2.8.3.min.js +4 -0
- data/lib/resme/templates/resume.json.erb +137 -0
- data/lib/resme/templates/resume.md.erb +120 -0
- data/lib/resme/templates/resume.yml +240 -0
- data/lib/resme/version.rb +3 -0
- data/resme.gemspec +28 -0
- metadata +151 -0
@@ -0,0 +1,71 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xsd:schema
|
3
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
4
|
+
xmlns="http://europass.cedefop.europa.eu/Europass"
|
5
|
+
targetNamespace="http://europass.cedefop.europa.eu/Europass"
|
6
|
+
elementFormDefault="qualified">
|
7
|
+
|
8
|
+
<!--
|
9
|
+
/*
|
10
|
+
* Copyright European Union 2002-2014
|
11
|
+
*
|
12
|
+
*
|
13
|
+
* Licensed under the EUPL, Version 1.1 or – as soon they
|
14
|
+
* will be approved by the European Commission - subsequent
|
15
|
+
* versions of the EUPL (the "Licence");
|
16
|
+
* You may not use this work except in compliance with the
|
17
|
+
* Licence.
|
18
|
+
* You may obtain a copy of the Licence at:
|
19
|
+
*
|
20
|
+
* http://ec.europa.eu/idabc/eupl.html
|
21
|
+
*
|
22
|
+
*
|
23
|
+
* Unless required by applicable law or agreed to in
|
24
|
+
* writing, software distributed under the Licence is
|
25
|
+
* distributed on an "AS IS" basis,
|
26
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
27
|
+
* express or implied.
|
28
|
+
* See the Licence for the specific language governing
|
29
|
+
* permissions and limitations under the Licence.
|
30
|
+
*
|
31
|
+
*/
|
32
|
+
-->
|
33
|
+
|
34
|
+
<xsd:include schemaLocation="CommonTypes.xsd"></xsd:include>
|
35
|
+
|
36
|
+
<!-- Person name Information -->
|
37
|
+
<xsd:complexType name="PersonNameType">
|
38
|
+
<xsd:annotation>
|
39
|
+
<xsd:documentation xml:lang="en">
|
40
|
+
Describes the name of a person. Consists of a first-name and surname.
|
41
|
+
</xsd:documentation>
|
42
|
+
</xsd:annotation>
|
43
|
+
<xsd:sequence>
|
44
|
+
<xsd:element name="Title" type="PersonTitleLabelType" minOccurs="0" maxOccurs="1"/>
|
45
|
+
<xsd:element name="FirstName" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
46
|
+
<xsd:element name="Surname" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
47
|
+
</xsd:sequence>
|
48
|
+
</xsd:complexType>
|
49
|
+
|
50
|
+
<xsd:complexType name="PersonTitleLabelType">
|
51
|
+
<xsd:complexContent>
|
52
|
+
<xsd:restriction base="LabelType">
|
53
|
+
<xsd:sequence>
|
54
|
+
<xsd:element name="Code" minOccurs="0" type="PersonTitleCodesEnumeration"/>
|
55
|
+
<xsd:element name="Label" type="xsd:string" minOccurs="0"/>
|
56
|
+
</xsd:sequence>
|
57
|
+
</xsd:restriction>
|
58
|
+
</xsd:complexContent>
|
59
|
+
</xsd:complexType>
|
60
|
+
|
61
|
+
<xsd:simpleType name="PersonTitleCodesEnumeration">
|
62
|
+
<xsd:restriction base="xsd:string">
|
63
|
+
<xsd:enumeration value="mr"/>
|
64
|
+
<xsd:enumeration value="ms"/>
|
65
|
+
<xsd:enumeration value="mrs"/>
|
66
|
+
<xsd:enumeration value="miss"/>
|
67
|
+
<xsd:enumeration value="dr"/>
|
68
|
+
</xsd:restriction>
|
69
|
+
</xsd:simpleType>
|
70
|
+
|
71
|
+
</xsd:schema>
|
@@ -0,0 +1,71 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xsd:schema
|
3
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
4
|
+
xmlns="http://europass.cedefop.europa.eu/Europass"
|
5
|
+
targetNamespace="http://europass.cedefop.europa.eu/Europass"
|
6
|
+
elementFormDefault="qualified">
|
7
|
+
|
8
|
+
<!--
|
9
|
+
/*
|
10
|
+
* Copyright European Union 2002-2014
|
11
|
+
*
|
12
|
+
*
|
13
|
+
* Licensed under the EUPL, Version 1.1 or – as soon they
|
14
|
+
* will be approved by the European Commission - subsequent
|
15
|
+
* versions of the EUPL (the "Licence");
|
16
|
+
* You may not use this work except in compliance with the
|
17
|
+
* Licence.
|
18
|
+
* You may obtain a copy of the Licence at:
|
19
|
+
*
|
20
|
+
* http://ec.europa.eu/idabc/eupl.html
|
21
|
+
*
|
22
|
+
*
|
23
|
+
* Unless required by applicable law or agreed to in
|
24
|
+
* writing, software distributed under the Licence is
|
25
|
+
* distributed on an "AS IS" basis,
|
26
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
27
|
+
* express or implied.
|
28
|
+
* See the Licence for the specific language governing
|
29
|
+
* permissions and limitations under the Licence.
|
30
|
+
*
|
31
|
+
*/
|
32
|
+
-->
|
33
|
+
<xsd:include schemaLocation="CommonTypes.xsd"/>
|
34
|
+
<xsd:include schemaLocation="Experience.xsd"/>
|
35
|
+
<xsd:include schemaLocation="Certificate.xsd"/>
|
36
|
+
|
37
|
+
|
38
|
+
<xsd:complexType name="SkillType" abstract="true">
|
39
|
+
<xsd:annotation>
|
40
|
+
<xsd:documentation xml:lang="en">
|
41
|
+
Defines a skill. A Skill has a description and may be accompanied by sutiable documentation.
|
42
|
+
Morever a Skill may be acquired during one or more experience periods, and be verified by one or more certificates
|
43
|
+
</xsd:documentation>
|
44
|
+
</xsd:annotation>
|
45
|
+
<xsd:sequence>
|
46
|
+
<xsd:element name="Description" type="xsd:anyType" minOccurs="0"/>
|
47
|
+
<xsd:element name="ProficiencyLevel" type="xsd:anyType" minOccurs="0"/>
|
48
|
+
<xsd:element name="AcquiredDuring" type="AbstractExperienceListType" minOccurs="0"/>
|
49
|
+
<xsd:element name="VerifiedBy" type="CertificateListType" minOccurs="0"/>
|
50
|
+
<xsd:element name="Documentation" type="IntraDocumentDocumentationType" minOccurs="0"/>
|
51
|
+
</xsd:sequence>
|
52
|
+
</xsd:complexType>
|
53
|
+
|
54
|
+
<xsd:complexType name="GenericSkillType">
|
55
|
+
<xsd:annotation>
|
56
|
+
<xsd:documentation xml:lang="en">
|
57
|
+
Defines a generic skill, which is modelled with one unstructured (free text) Description element.
|
58
|
+
It may also accept Documentation information.
|
59
|
+
</xsd:documentation>
|
60
|
+
</xsd:annotation>
|
61
|
+
<xsd:complexContent>
|
62
|
+
<xsd:restriction base="SkillType">
|
63
|
+
<xsd:sequence>
|
64
|
+
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
65
|
+
<xsd:element name="Documentation" type="IntraDocumentDocumentationType" minOccurs="0"/>
|
66
|
+
</xsd:sequence>
|
67
|
+
</xsd:restriction>
|
68
|
+
</xsd:complexContent>
|
69
|
+
</xsd:complexType>
|
70
|
+
|
71
|
+
</xsd:schema>
|
data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/imported/EQF_08_V1.0.0.xsd
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xsd:schema
|
3
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
4
|
+
xmlns:eqf="http://europass.cedefop.europa.eu/EQF/08"
|
5
|
+
targetNamespace="http://europass.cedefop.europa.eu/EQF/08">
|
6
|
+
|
7
|
+
<xsd:annotation>
|
8
|
+
<xsd:documentation xml:lang="en">
|
9
|
+
The European Qualifications Framework (EQF) acts as a translation device to make
|
10
|
+
national qualifications more readable across Europe, promoting workers' and learners'
|
11
|
+
mobility between countries and facilitating their lifelong learning. The core of the EQF
|
12
|
+
concerns eight reference levels describing what a learner knows, understands and
|
13
|
+
is able to do – 'learning outcomes'. Levels range from basic (Level 1) to advanced (Level 8).
|
14
|
+
The EQF applies to all types of education, training and qualifications,
|
15
|
+
from school education to academic, professional and vocational.
|
16
|
+
(http://ec.europa.eu/education/lifelong-learning-policy/eqf_en.htm)
|
17
|
+
</xsd:documentation>
|
18
|
+
</xsd:annotation>
|
19
|
+
<xsd:simpleType name="level">
|
20
|
+
<xsd:annotation>
|
21
|
+
<xsd:documentation xml:lang="en">
|
22
|
+
Each of the 8 levels is defined by a set of descriptors indicating the learning outcomes
|
23
|
+
relevant to qualifications at that level in any system of qualifications.
|
24
|
+
Knowledge: in the context of EQF, knowledge is described as theoretical and/or factual.
|
25
|
+
Skills: in the context of EQF, skills are described as cognitive
|
26
|
+
(involving the use of logical, intuitive and creative thinking)
|
27
|
+
and practical (involving manual dexterity and the use of methods, materials,
|
28
|
+
tools and instruments).
|
29
|
+
Competence: In the context of EQF, competence is described in terms of responsibility and autonomy.
|
30
|
+
</xsd:documentation>
|
31
|
+
</xsd:annotation>
|
32
|
+
<xsd:restriction base="xsd:string">
|
33
|
+
<xsd:enumeration value="1">
|
34
|
+
<xsd:annotation>
|
35
|
+
<xsd:documentation xml:lang="en">
|
36
|
+
Level 1:
|
37
|
+
i) basic general knowledge,
|
38
|
+
ii) basic skills required to carry out simple tasks,
|
39
|
+
iii) work or study under direct supervision in a structured context
|
40
|
+
</xsd:documentation>
|
41
|
+
</xsd:annotation>
|
42
|
+
</xsd:enumeration>
|
43
|
+
<xsd:enumeration value="2">
|
44
|
+
<xsd:annotation>
|
45
|
+
<xsd:documentation xml:lang="en">
|
46
|
+
Level 2:
|
47
|
+
i) basic factual knowledge of a field of work or study
|
48
|
+
ii) basic cognitive and practical skills required to use relevant information in order to carry out tasks and to solve routine problems using simple rules and tools,
|
49
|
+
iii) work or study under supervision with some autonomy
|
50
|
+
</xsd:documentation>
|
51
|
+
</xsd:annotation>
|
52
|
+
</xsd:enumeration>
|
53
|
+
<xsd:enumeration value="3">
|
54
|
+
<xsd:annotation>
|
55
|
+
<xsd:documentation xml:lang="en">
|
56
|
+
Level 3:
|
57
|
+
i) knowledge of facts, principles, processes and general concepts, in a field of work or study,
|
58
|
+
ii) a range of cognitive and practical skills required to accomplish tasks and solve problems by selecting and applying basic methods, tools, materials and information,
|
59
|
+
iii) take responsibility for completion of tasks in work or study; adapt own behaviour to circumstances in solving problems
|
60
|
+
</xsd:documentation>
|
61
|
+
</xsd:annotation>
|
62
|
+
</xsd:enumeration>
|
63
|
+
<xsd:enumeration value="4">
|
64
|
+
<xsd:annotation>
|
65
|
+
<xsd:documentation xml:lang="en">
|
66
|
+
Level 4:
|
67
|
+
i) factual and theoretical knowledge in broad contexts within a field of work or study,
|
68
|
+
ii) a range of cognitive and practical skills required to generate solutions to specific problems in a field of work or study,
|
69
|
+
iii) exercise self-management within the guidelines of work or study contexts that are usually predictable, but are subject to change; supervise the routine work of others, taking some responsibility for the evaluation and improvement of work or study activities
|
70
|
+
</xsd:documentation>
|
71
|
+
</xsd:annotation>
|
72
|
+
</xsd:enumeration>
|
73
|
+
<xsd:enumeration value="5">
|
74
|
+
<xsd:annotation>
|
75
|
+
<xsd:documentation xml:lang="en">
|
76
|
+
Level 5:
|
77
|
+
i) comprehensive, specialised, factual and theoretical knowledge within a field of work or study and an awareness of the boundaries of that knowledge,
|
78
|
+
ii) a comprehensive range of cognitive and practical skills required to develop creative solutions to abstract problems,
|
79
|
+
iii) exercise management and supervision in contexts of work or study activities where there is unpredictable change; review and develop performance of self and others
|
80
|
+
</xsd:documentation>
|
81
|
+
</xsd:annotation>
|
82
|
+
</xsd:enumeration>
|
83
|
+
<xsd:enumeration value="6">
|
84
|
+
<xsd:annotation>
|
85
|
+
<xsd:documentation xml:lang="en">
|
86
|
+
Level 6:
|
87
|
+
i) advanced knowledge of a field of work or study, involving a critical understanding of theories and principles,
|
88
|
+
ii) advanced skills, demonstrating mastery and innovation, required to solve complex and unpredictable problems in a specialised field of work or study,
|
89
|
+
iii) manage complex technical or professional activities or projects, taking responsibility for decision- making in unpredictable work or study contexts; take responsibility for managing professional development of individuals and groups
|
90
|
+
</xsd:documentation>
|
91
|
+
</xsd:annotation>
|
92
|
+
</xsd:enumeration>
|
93
|
+
<xsd:enumeration value="7">
|
94
|
+
<xsd:annotation>
|
95
|
+
<xsd:documentation xml:lang="en">
|
96
|
+
Level 7:
|
97
|
+
i) highly specialised knowledge, some of which is at the forefront of knowledge in a field of work or study, as the basis for original thinking and/or research; critical awareness of knowledge issues in a field and at the interface between different fields,
|
98
|
+
ii) specialised problem-solving skills required in research and/or innovation in order to develop new knowledge and procedures and to integrate knowledge from different fields,
|
99
|
+
iii) manage and transform work or study contexts that are complex, unpredictable and require new strategic approaches; take responsibility for contributing to professional knowledge and practice and/or for reviewing the strategic performance of teams
|
100
|
+
</xsd:documentation>
|
101
|
+
</xsd:annotation>
|
102
|
+
</xsd:enumeration>
|
103
|
+
<xsd:enumeration value="8">
|
104
|
+
<xsd:annotation>
|
105
|
+
<xsd:documentation xml:lang="en">
|
106
|
+
Level 8:
|
107
|
+
i) knowledge at the most advanced frontier of a field of work or study and at the interface between fields,
|
108
|
+
ii) the most advanced and specialised skills and techniques, including synthesis and evaluation, required to solve critical problems in research and/or innovation and to extend and redefine existing knowledge or professional practice,
|
109
|
+
iii) demonstrate substantial authority, innovation, autonomy, scholarly and professional integrity and sustained commitment to the development of new ideas or processes at the forefront of work or study contexts including research
|
110
|
+
</xsd:documentation>
|
111
|
+
</xsd:annotation>
|
112
|
+
</xsd:enumeration>
|
113
|
+
</xsd:restriction>
|
114
|
+
</xsd:simpleType>
|
115
|
+
</xsd:schema>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xsd:schema
|
3
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
4
|
+
xmlns:driving="http://europass.cedefop.europa.eu/EUDriving"
|
5
|
+
targetNamespace="http://europass.cedefop.europa.eu/EUDriving">
|
6
|
+
<xsd:simpleType name="drivinglicence">
|
7
|
+
<xsd:annotation>
|
8
|
+
<xsd:documentation xml:lang="en">European driving licence - vehicle categories (http://ec.europa.eu/youreurope/nav/en/citizens/living/car/driving-license/index_en.html#326_3)</xsd:documentation>
|
9
|
+
</xsd:annotation>
|
10
|
+
<xsd:restriction base="xsd:string">
|
11
|
+
<xsd:enumeration value="A"/>
|
12
|
+
<xsd:enumeration value="A1"/>
|
13
|
+
<xsd:enumeration value="A2"/>
|
14
|
+
<xsd:enumeration value="AM"/>
|
15
|
+
<xsd:enumeration value="B"/>
|
16
|
+
<xsd:enumeration value="B1"/>
|
17
|
+
<xsd:enumeration value="BE"/>
|
18
|
+
<xsd:enumeration value="C"/>
|
19
|
+
<xsd:enumeration value="C1"/>
|
20
|
+
<xsd:enumeration value="C1E"/>
|
21
|
+
<xsd:enumeration value="CE"/>
|
22
|
+
<xsd:enumeration value="D"/>
|
23
|
+
<xsd:enumeration value="D1"/>
|
24
|
+
<xsd:enumeration value="D1E"/>
|
25
|
+
<xsd:enumeration value="DE"/>
|
26
|
+
</xsd:restriction>
|
27
|
+
</xsd:simpleType>
|
28
|
+
</xsd:schema>
|
data/lib/resme/templates/europass/europass-xml-schema-definition-v3.3.0/imported/ISCED97_V1.0.0.xsd
ADDED
@@ -0,0 +1,981 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns:isced="http://europass.cedefop.europa.eu/ISCED/97"
|
4
|
+
targetNamespace="http://europass.cedefop.europa.eu/ISCED/97">
|
5
|
+
<xsd:annotation>
|
6
|
+
<xsd:documentation xml:lang="en">International Standard Classification of Education 1997,
|
7
|
+
desgined by UNESCO
|
8
|
+
(http://www.unesco.org/education/information/nfsunesco/doc/isced_1997.htm)</xsd:documentation>
|
9
|
+
</xsd:annotation>
|
10
|
+
<xsd:simpleType name="field-level1">
|
11
|
+
<xsd:annotation>
|
12
|
+
<xsd:documentation xml:lang="en">ISCED first field classification (1 digit
|
13
|
+
code)</xsd:documentation>
|
14
|
+
</xsd:annotation>
|
15
|
+
<xsd:restriction base="xsd:string">
|
16
|
+
<xsd:enumeration value="0">
|
17
|
+
<xsd:annotation>
|
18
|
+
<xsd:documentation xml:lang="en">GENERAL PROGRAMMES</xsd:documentation>
|
19
|
+
</xsd:annotation>
|
20
|
+
</xsd:enumeration>
|
21
|
+
<xsd:enumeration value="1">
|
22
|
+
<xsd:annotation>
|
23
|
+
<xsd:documentation xml:lang="en">EDUCATION</xsd:documentation>
|
24
|
+
</xsd:annotation>
|
25
|
+
</xsd:enumeration>
|
26
|
+
<xsd:enumeration value="2">
|
27
|
+
<xsd:annotation>
|
28
|
+
<xsd:documentation xml:lang="en">HUMANITIES AND ARTS</xsd:documentation>
|
29
|
+
</xsd:annotation>
|
30
|
+
</xsd:enumeration>
|
31
|
+
<xsd:enumeration value="3">
|
32
|
+
<xsd:annotation>
|
33
|
+
<xsd:documentation xml:lang="en">SOCIAL SCIENCES, BUSINESS AND
|
34
|
+
LAW</xsd:documentation>
|
35
|
+
</xsd:annotation>
|
36
|
+
</xsd:enumeration>
|
37
|
+
<xsd:enumeration value="4">
|
38
|
+
<xsd:annotation>
|
39
|
+
<xsd:documentation xml:lang="en">SCIENCE</xsd:documentation>
|
40
|
+
</xsd:annotation>
|
41
|
+
</xsd:enumeration>
|
42
|
+
<xsd:enumeration value="5">
|
43
|
+
<xsd:annotation>
|
44
|
+
<xsd:documentation xml:lang="en">ENGINEERING, MANUFACTURING AND
|
45
|
+
CONSTRUCTION</xsd:documentation>
|
46
|
+
</xsd:annotation>
|
47
|
+
</xsd:enumeration>
|
48
|
+
<xsd:enumeration value="6">
|
49
|
+
<xsd:annotation>
|
50
|
+
<xsd:documentation xml:lang="en">AGRICULTURE</xsd:documentation>
|
51
|
+
</xsd:annotation>
|
52
|
+
</xsd:enumeration>
|
53
|
+
<xsd:enumeration value="7">
|
54
|
+
<xsd:annotation>
|
55
|
+
<xsd:documentation xml:lang="en">HEALTH AND WELFARE</xsd:documentation>
|
56
|
+
</xsd:annotation>
|
57
|
+
</xsd:enumeration>
|
58
|
+
<xsd:enumeration value="8">
|
59
|
+
<xsd:annotation>
|
60
|
+
<xsd:documentation xml:lang="en">SERVICES</xsd:documentation>
|
61
|
+
</xsd:annotation>
|
62
|
+
</xsd:enumeration>
|
63
|
+
</xsd:restriction>
|
64
|
+
</xsd:simpleType>
|
65
|
+
<xsd:simpleType name="field-level2">
|
66
|
+
<xsd:annotation>
|
67
|
+
<xsd:documentation xml:lang="en">ISCED second field classification (2 digit
|
68
|
+
code)</xsd:documentation>
|
69
|
+
</xsd:annotation>
|
70
|
+
<xsd:restriction base="xsd:string">
|
71
|
+
<xsd:enumeration value="01">
|
72
|
+
<xsd:annotation>
|
73
|
+
<xsd:documentation xml:lang="bg">Основни / обширни общи програми </xsd:documentation>
|
74
|
+
<xsd:documentation xml:lang="cs">Základní / obecné programy</xsd:documentation>
|
75
|
+
<xsd:documentation xml:lang="da">Almene, brede
|
76
|
+
uddannelsesprogrammer</xsd:documentation>
|
77
|
+
<xsd:documentation xml:lang="de">Grundlegende
|
78
|
+
Bildungsprogramme</xsd:documentation>
|
79
|
+
<xsd:documentation xml:lang="el">Βασικά προγράμματα</xsd:documentation>
|
80
|
+
<xsd:documentation xml:lang="en">Basic / broad general
|
81
|
+
programmes</xsd:documentation>
|
82
|
+
<xsd:documentation xml:lang="es">Programas básicos</xsd:documentation>
|
83
|
+
<xsd:documentation xml:lang="et">Põhi-/laialdased
|
84
|
+
üldprogrammid</xsd:documentation>
|
85
|
+
<xsd:documentation xml:lang="fi">Yleissivistävä koulutus/
|
86
|
+
peruskoulutus</xsd:documentation>
|
87
|
+
<xsd:documentation xml:lang="fr">Programmes de base</xsd:documentation>
|
88
|
+
<xsd:documentation xml:lang="hr">Osnovni programi </xsd:documentation>
|
89
|
+
<xsd:documentation xml:lang="hu">Alapfokú/általános
|
90
|
+
programok</xsd:documentation>
|
91
|
+
<xsd:documentation xml:lang="is">Grunnmenntun/víðtæk almenn
|
92
|
+
menntun</xsd:documentation>
|
93
|
+
<xsd:documentation xml:lang="it">Programmi di base</xsd:documentation>
|
94
|
+
<xsd:documentation xml:lang="lt">Įvadinės / bendrosios
|
95
|
+
programos</xsd:documentation>
|
96
|
+
<xsd:documentation xml:lang="lv">Pamatprogrammas/plašas vispārējās
|
97
|
+
programmas</xsd:documentation>
|
98
|
+
<xsd:documentation xml:lang="mt">Programmi ġenerali bażiċi /
|
99
|
+
wesgħin</xsd:documentation>
|
100
|
+
<xsd:documentation xml:lang="nl">Algemeen vormende
|
101
|
+
opleidingen</xsd:documentation>
|
102
|
+
<xsd:documentation xml:lang="no">Grunnleggende/ allmenne
|
103
|
+
utdanningsprogrammer</xsd:documentation>
|
104
|
+
<xsd:documentation xml:lang="pl">Programy podstawowe /
|
105
|
+
ogólnokształcące</xsd:documentation>
|
106
|
+
<xsd:documentation xml:lang="pt">Programas básicos /de carácter
|
107
|
+
geral</xsd:documentation>
|
108
|
+
<xsd:documentation xml:lang="ro">Programe de bază</xsd:documentation>
|
109
|
+
<xsd:documentation xml:lang="sk">Základné / rozšírené všeobecné
|
110
|
+
programy</xsd:documentation>
|
111
|
+
<xsd:documentation xml:lang="sl">Temeljni/splošni izobraževalni
|
112
|
+
programi</xsd:documentation>
|
113
|
+
<xsd:documentation xml:lang="sv">Bred, allmän utbildning</xsd:documentation>
|
114
|
+
<xsd:documentation xml:lang="tr">Temel Programlar </xsd:documentation>
|
115
|
+
</xsd:annotation>
|
116
|
+
</xsd:enumeration>
|
117
|
+
<xsd:enumeration value="09">
|
118
|
+
<xsd:annotation>
|
119
|
+
<xsd:documentation xml:lang="bg">Развитие на личността </xsd:documentation>
|
120
|
+
<xsd:documentation xml:lang="cs">Osobní rozvoj</xsd:documentation>
|
121
|
+
<xsd:documentation xml:lang="da">Personlig udvikling</xsd:documentation>
|
122
|
+
<xsd:documentation xml:lang="de">Persönlichkeitsentwicklung</xsd:documentation>
|
123
|
+
<xsd:documentation xml:lang="el">Προσωπική ανάπτυξη</xsd:documentation>
|
124
|
+
<xsd:documentation xml:lang="en">Personal development</xsd:documentation>
|
125
|
+
<xsd:documentation xml:lang="es">Desarrollo personal</xsd:documentation>
|
126
|
+
<xsd:documentation xml:lang="et">Isiklik areng</xsd:documentation>
|
127
|
+
<xsd:documentation xml:lang="fi">Henkilökohtainen
|
128
|
+
kehittyminen</xsd:documentation>
|
129
|
+
<xsd:documentation xml:lang="fr">Développement personnel</xsd:documentation>
|
130
|
+
<xsd:documentation xml:lang="hr">Osobni razvoj</xsd:documentation>
|
131
|
+
<xsd:documentation xml:lang="hu">Személyiségfejlesztés</xsd:documentation>
|
132
|
+
<xsd:documentation xml:lang="is">Einstaklingsþróun</xsd:documentation>
|
133
|
+
<xsd:documentation xml:lang="it">Sviluppo personale</xsd:documentation>
|
134
|
+
<xsd:documentation xml:lang="lt">Asmeninis tobulėjimas</xsd:documentation>
|
135
|
+
<xsd:documentation xml:lang="lv">Personīgā attīstība</xsd:documentation>
|
136
|
+
<xsd:documentation xml:lang="mt">Żvilupp personali</xsd:documentation>
|
137
|
+
<xsd:documentation xml:lang="nl">Persoonlijke ontwikkeling</xsd:documentation>
|
138
|
+
<xsd:documentation xml:lang="no">Personlig utvikling</xsd:documentation>
|
139
|
+
<xsd:documentation xml:lang="pl">Rozwój osobisty</xsd:documentation>
|
140
|
+
<xsd:documentation xml:lang="pt">Desenvolvimento pessoal</xsd:documentation>
|
141
|
+
<xsd:documentation xml:lang="ro">Dezvoltare personală</xsd:documentation>
|
142
|
+
<xsd:documentation xml:lang="sk">Personálny rozvoj</xsd:documentation>
|
143
|
+
<xsd:documentation xml:lang="sl">Osebnostni razvoj</xsd:documentation>
|
144
|
+
<xsd:documentation xml:lang="sv">Personlig utveckling</xsd:documentation>
|
145
|
+
<xsd:documentation xml:lang="tr">Kişisel Gelişim</xsd:documentation>
|
146
|
+
</xsd:annotation>
|
147
|
+
</xsd:enumeration>
|
148
|
+
<xsd:enumeration value="14">
|
149
|
+
<xsd:annotation>
|
150
|
+
<xsd:documentation xml:lang="bg">Подготовка на учители и
|
151
|
+
педагогика</xsd:documentation>
|
152
|
+
<xsd:documentation xml:lang="cs">Učitelství a pedagogika</xsd:documentation>
|
153
|
+
<xsd:documentation xml:lang="da">Læreruddannelse og
|
154
|
+
pædagogik</xsd:documentation>
|
155
|
+
<xsd:documentation xml:lang="de">Lehrerausbildung und
|
156
|
+
Erziehungswissenschaft</xsd:documentation>
|
157
|
+
<xsd:documentation xml:lang="el">Κατάρτιση διδασκόντων και επιστήμες της
|
158
|
+
εκπαίδευσης</xsd:documentation>
|
159
|
+
<xsd:documentation xml:lang="en">Teacher training and education
|
160
|
+
science</xsd:documentation>
|
161
|
+
<xsd:documentation xml:lang="es">Formación de personal docente y ciencias de la
|
162
|
+
educación</xsd:documentation>
|
163
|
+
<xsd:documentation xml:lang="et">Õpetajakoolitus ja
|
164
|
+
haridusteadus</xsd:documentation>
|
165
|
+
<xsd:documentation xml:lang="fi">Opettajankoulutus ja
|
166
|
+
kasvatustiede</xsd:documentation>
|
167
|
+
<xsd:documentation xml:lang="fr">Formation des enseignants et sciences de
|
168
|
+
l'éducation</xsd:documentation>
|
169
|
+
<xsd:documentation xml:lang="hr">Obrazovanje nastavnika i
|
170
|
+
pedagogija</xsd:documentation>
|
171
|
+
<xsd:documentation xml:lang="hu">Tanárképzés és pedagógia</xsd:documentation>
|
172
|
+
<xsd:documentation xml:lang="is">Uppeldisfræði og
|
173
|
+
kennarapróf</xsd:documentation>
|
174
|
+
<xsd:documentation xml:lang="it">Formazione degli insegnanti e scienze della
|
175
|
+
formazione</xsd:documentation>
|
176
|
+
<xsd:documentation xml:lang="lt">Mokytojų rengimas ir švietimo
|
177
|
+
mokslas</xsd:documentation>
|
178
|
+
<xsd:documentation xml:lang="lv">Skolotāju apmācība un izglītības
|
179
|
+
zinātne</xsd:documentation>
|
180
|
+
<xsd:documentation xml:lang="mt">Taħriġ ta' l-għalliema u xjenza ta'
|
181
|
+
l-edukazzjoni</xsd:documentation>
|
182
|
+
<xsd:documentation xml:lang="nl">Lerarenopleiding en
|
183
|
+
onderwijskunde</xsd:documentation>
|
184
|
+
<xsd:documentation xml:lang="no">Lærerutdanning og
|
185
|
+
pedagogikk</xsd:documentation>
|
186
|
+
<xsd:documentation xml:lang="pl">Kształcenie nauczycieli i
|
187
|
+
pedagogika</xsd:documentation>
|
188
|
+
<xsd:documentation xml:lang="pt">Formação de professores e ciências da
|
189
|
+
educação</xsd:documentation>
|
190
|
+
<xsd:documentation xml:lang="ro">Formarea profesorilor şi ştiinţele
|
191
|
+
educaţiei</xsd:documentation>
|
192
|
+
<xsd:documentation xml:lang="sk">Odborná príprava učiteľov a
|
193
|
+
pedagogika</xsd:documentation>
|
194
|
+
<xsd:documentation xml:lang="sl">Usposabljanje učiteljev/učiteljic in pedagoške
|
195
|
+
znanosti </xsd:documentation>
|
196
|
+
<xsd:documentation xml:lang="sv">Pedagogik och
|
197
|
+
lärarutbildning</xsd:documentation>
|
198
|
+
<xsd:documentation xml:lang="tr">Öğretmen Eğitimi ve Eğitim Bilimleri
|
199
|
+
</xsd:documentation>
|
200
|
+
</xsd:annotation>
|
201
|
+
</xsd:enumeration>
|
202
|
+
<xsd:enumeration value="21">
|
203
|
+
<xsd:annotation>
|
204
|
+
<xsd:documentation xml:lang="bg">Изкуства </xsd:documentation>
|
205
|
+
<xsd:documentation xml:lang="cs">Umění</xsd:documentation>
|
206
|
+
<xsd:documentation xml:lang="da">Kunst</xsd:documentation>
|
207
|
+
<xsd:documentation xml:lang="de">Kunst</xsd:documentation>
|
208
|
+
<xsd:documentation xml:lang="el">Τέχνες</xsd:documentation>
|
209
|
+
<xsd:documentation xml:lang="en">Arts</xsd:documentation>
|
210
|
+
<xsd:documentation xml:lang="es">Artes</xsd:documentation>
|
211
|
+
<xsd:documentation xml:lang="et">Kaunid kunstid</xsd:documentation>
|
212
|
+
<xsd:documentation xml:lang="fi">Taideaineet</xsd:documentation>
|
213
|
+
<xsd:documentation xml:lang="fr">Arts</xsd:documentation>
|
214
|
+
<xsd:documentation xml:lang="hr">Umjetnost</xsd:documentation>
|
215
|
+
<xsd:documentation xml:lang="hu">Művészetek</xsd:documentation>
|
216
|
+
<xsd:documentation xml:lang="is">Listir</xsd:documentation>
|
217
|
+
<xsd:documentation xml:lang="it">Arte</xsd:documentation>
|
218
|
+
<xsd:documentation xml:lang="lt">Menai</xsd:documentation>
|
219
|
+
<xsd:documentation xml:lang="lv">Māksla</xsd:documentation>
|
220
|
+
<xsd:documentation xml:lang="mt">Arti</xsd:documentation>
|
221
|
+
<xsd:documentation xml:lang="nl">Kunsten</xsd:documentation>
|
222
|
+
<xsd:documentation xml:lang="no">Kunstfag</xsd:documentation>
|
223
|
+
<xsd:documentation xml:lang="pl">Sztuka</xsd:documentation>
|
224
|
+
<xsd:documentation xml:lang="pt">Artes</xsd:documentation>
|
225
|
+
<xsd:documentation xml:lang="ro">Artă</xsd:documentation>
|
226
|
+
<xsd:documentation xml:lang="sk">Umenie</xsd:documentation>
|
227
|
+
<xsd:documentation xml:lang="sl">Umetnost</xsd:documentation>
|
228
|
+
<xsd:documentation xml:lang="sv">Konst och media</xsd:documentation>
|
229
|
+
<xsd:documentation xml:lang="tr">Güzel Sanatlar</xsd:documentation>
|
230
|
+
</xsd:annotation>
|
231
|
+
</xsd:enumeration>
|
232
|
+
<xsd:enumeration value="22">
|
233
|
+
<xsd:annotation>
|
234
|
+
<xsd:documentation xml:lang="bg">Хуманитарни науки </xsd:documentation>
|
235
|
+
<xsd:documentation xml:lang="cs">Humanitní vědy</xsd:documentation>
|
236
|
+
<xsd:documentation xml:lang="da">Humaniora</xsd:documentation>
|
237
|
+
<xsd:documentation xml:lang="de">Geisteswissenschaften</xsd:documentation>
|
238
|
+
<xsd:documentation xml:lang="el">Ανθρωπιστικές επιστήμες</xsd:documentation>
|
239
|
+
<xsd:documentation xml:lang="en">Humanities</xsd:documentation>
|
240
|
+
<xsd:documentation xml:lang="es">Humanidades</xsd:documentation>
|
241
|
+
<xsd:documentation xml:lang="et">Humanitaarained</xsd:documentation>
|
242
|
+
<xsd:documentation xml:lang="fi">Humanistiset tieteet</xsd:documentation>
|
243
|
+
<xsd:documentation xml:lang="fr">Lettres</xsd:documentation>
|
244
|
+
<xsd:documentation xml:lang="hr">Humanističke znanosti </xsd:documentation>
|
245
|
+
<xsd:documentation xml:lang="hu">Humán tárgyak</xsd:documentation>
|
246
|
+
<xsd:documentation xml:lang="is">Hugvísindi</xsd:documentation>
|
247
|
+
<xsd:documentation xml:lang="it">Lettere</xsd:documentation>
|
248
|
+
<xsd:documentation xml:lang="lt">Humanitariniai mokslai</xsd:documentation>
|
249
|
+
<xsd:documentation xml:lang="lv">Humanitārās zinātnes</xsd:documentation>
|
250
|
+
<xsd:documentation xml:lang="mt">Umanitajiet</xsd:documentation>
|
251
|
+
<xsd:documentation xml:lang="nl">Geesteswetenschappen</xsd:documentation>
|
252
|
+
<xsd:documentation xml:lang="no">Humanistiske fag</xsd:documentation>
|
253
|
+
<xsd:documentation xml:lang="pl">Nauki humanistyczne</xsd:documentation>
|
254
|
+
<xsd:documentation xml:lang="pt">Letras</xsd:documentation>
|
255
|
+
<xsd:documentation xml:lang="ro">Litere</xsd:documentation>
|
256
|
+
<xsd:documentation xml:lang="sk">Humanitné vedy</xsd:documentation>
|
257
|
+
<xsd:documentation xml:lang="sl">Humanistične vede</xsd:documentation>
|
258
|
+
<xsd:documentation xml:lang="sv">Humaniora</xsd:documentation>
|
259
|
+
<xsd:documentation xml:lang="tr">Beşeri Bilimler</xsd:documentation>
|
260
|
+
</xsd:annotation>
|
261
|
+
</xsd:enumeration>
|
262
|
+
<xsd:enumeration value="31">
|
263
|
+
<xsd:annotation>
|
264
|
+
<xsd:documentation xml:lang="bg">Социална и поведенческа наука </xsd:documentation>
|
265
|
+
<xsd:documentation xml:lang="cs">Společenské vědy a vědy o chování
|
266
|
+
lidí</xsd:documentation>
|
267
|
+
<xsd:documentation xml:lang="da">Samfunds- og adfærdsvidenskab </xsd:documentation>
|
268
|
+
<xsd:documentation xml:lang="de">Sozial- und
|
269
|
+
Verhaltenswissenschaften</xsd:documentation>
|
270
|
+
<xsd:documentation xml:lang="el">Κοινωνικές επιστήμες και επιστήμες της
|
271
|
+
συμπεριφοράς</xsd:documentation>
|
272
|
+
<xsd:documentation xml:lang="en">Social and behavioural
|
273
|
+
science</xsd:documentation>
|
274
|
+
<xsd:documentation xml:lang="es">Ciencias sociales y del
|
275
|
+
comportamiento</xsd:documentation>
|
276
|
+
<xsd:documentation xml:lang="et">Sotsiaalteadused ja käitumise
|
277
|
+
uurimine</xsd:documentation>
|
278
|
+
<xsd:documentation xml:lang="fi">Yhteiskunta- ja
|
279
|
+
käyttäytymistieteet</xsd:documentation>
|
280
|
+
<xsd:documentation xml:lang="fr">Sciences sociales et du
|
281
|
+
comportement</xsd:documentation>
|
282
|
+
<xsd:documentation xml:lang="hr">Društvene znanosti, psihologija i srodne
|
283
|
+
znanosti</xsd:documentation>
|
284
|
+
<xsd:documentation xml:lang="hu">Társadalom- és
|
285
|
+
magatartástudomány</xsd:documentation>
|
286
|
+
<xsd:documentation xml:lang="is">Félags- og atferlisvísindi</xsd:documentation>
|
287
|
+
<xsd:documentation xml:lang="it">Scienze sociali e del
|
288
|
+
comportamento</xsd:documentation>
|
289
|
+
<xsd:documentation xml:lang="lt">Socialiniai ir elgsenos
|
290
|
+
mokslai</xsd:documentation>
|
291
|
+
<xsd:documentation xml:lang="lv">Sociālās uzvedības zinātnes</xsd:documentation>
|
292
|
+
<xsd:documentation xml:lang="mt">Xjenza soċjali u ta'
|
293
|
+
l-imġieba</xsd:documentation>
|
294
|
+
<xsd:documentation xml:lang="nl">Sociale wetenschappen</xsd:documentation>
|
295
|
+
<xsd:documentation xml:lang="no">Samfunns- og
|
296
|
+
atferdsvitenskap</xsd:documentation>
|
297
|
+
<xsd:documentation xml:lang="pl">Nauki społeczne</xsd:documentation>
|
298
|
+
<xsd:documentation xml:lang="pt">Ciências sociais e do
|
299
|
+
comportamento</xsd:documentation>
|
300
|
+
<xsd:documentation xml:lang="ro">Ştiinţe sociale şi
|
301
|
+
comportamentale</xsd:documentation>
|
302
|
+
<xsd:documentation xml:lang="sk">Sociálne a behaviorálne
|
303
|
+
vedy</xsd:documentation>
|
304
|
+
<xsd:documentation xml:lang="sl">Družbene vede in behavioristične
|
305
|
+
znanosti</xsd:documentation>
|
306
|
+
<xsd:documentation xml:lang="sv">Samhälls- och
|
307
|
+
beteendevetenskap</xsd:documentation>
|
308
|
+
<xsd:documentation xml:lang="tr">Sosyal ve Davranış
|
309
|
+
Bilimleri</xsd:documentation>
|
310
|
+
</xsd:annotation>
|
311
|
+
</xsd:enumeration>
|
312
|
+
<xsd:enumeration value="32">
|
313
|
+
<xsd:annotation>
|
314
|
+
<xsd:documentation xml:lang="bg">Журналистика и информация </xsd:documentation>
|
315
|
+
<xsd:documentation xml:lang="cs">Žurnalistika a informace</xsd:documentation>
|
316
|
+
<xsd:documentation xml:lang="da">Journalistik og
|
317
|
+
informationsvidenskab</xsd:documentation>
|
318
|
+
<xsd:documentation xml:lang="de">Journalistik und
|
319
|
+
Informationswissenschaft</xsd:documentation>
|
320
|
+
<xsd:documentation xml:lang="el">Δημοσιογραφία και ενημέρωση</xsd:documentation>
|
321
|
+
<xsd:documentation xml:lang="en">Journalism and information</xsd:documentation>
|
322
|
+
<xsd:documentation xml:lang="es">Periodismo e información</xsd:documentation>
|
323
|
+
<xsd:documentation xml:lang="et">Ajakirjandus ja
|
324
|
+
kommunikatsioon</xsd:documentation>
|
325
|
+
<xsd:documentation xml:lang="fi">Tiedotusoppi</xsd:documentation>
|
326
|
+
<xsd:documentation xml:lang="fr">Journalisme et information</xsd:documentation>
|
327
|
+
<xsd:documentation xml:lang="hr">Novinarstvo i informiranje</xsd:documentation>
|
328
|
+
<xsd:documentation xml:lang="hu">Újságírás és
|
329
|
+
információtudomány</xsd:documentation>
|
330
|
+
<xsd:documentation xml:lang="is">Blaðamennska og
|
331
|
+
upplýsingafræði</xsd:documentation>
|
332
|
+
<xsd:documentation xml:lang="it">Giornalismo e informazione</xsd:documentation>
|
333
|
+
<xsd:documentation xml:lang="lt">Žurnalistika ir informacija</xsd:documentation>
|
334
|
+
<xsd:documentation xml:lang="lv">Žurnālistika un informācija</xsd:documentation>
|
335
|
+
<xsd:documentation xml:lang="mt">Ġurnaliżmu u tagħrif</xsd:documentation>
|
336
|
+
<xsd:documentation xml:lang="nl">Journalistiek en informatie</xsd:documentation>
|
337
|
+
<xsd:documentation xml:lang="no">Journalistikk og
|
338
|
+
informatikk</xsd:documentation>
|
339
|
+
<xsd:documentation xml:lang="pl">Dziennikarstwo i informacja</xsd:documentation>
|
340
|
+
<xsd:documentation xml:lang="pt">Jornalismo e informação</xsd:documentation>
|
341
|
+
<xsd:documentation xml:lang="ro">Jurnalism şi informaţii</xsd:documentation>
|
342
|
+
<xsd:documentation xml:lang="sk">Žurnalistika a informačná
|
343
|
+
veda</xsd:documentation>
|
344
|
+
<xsd:documentation xml:lang="sl">Novinarstvo in informacijske
|
345
|
+
vede</xsd:documentation>
|
346
|
+
<xsd:documentation xml:lang="sv">Journalistik och
|
347
|
+
information</xsd:documentation>
|
348
|
+
<xsd:documentation xml:lang="tr">Gazetecilik ve Bilgi </xsd:documentation>
|
349
|
+
</xsd:annotation>
|
350
|
+
</xsd:enumeration>
|
351
|
+
<xsd:enumeration value="34">
|
352
|
+
<xsd:annotation>
|
353
|
+
<xsd:documentation xml:lang="bg">Бизнес и администрация </xsd:documentation>
|
354
|
+
<xsd:documentation xml:lang="cs">Podnikohospodářství</xsd:documentation>
|
355
|
+
<xsd:documentation xml:lang="da">Virksomhedsøkonomi og
|
356
|
+
administration</xsd:documentation>
|
357
|
+
<xsd:documentation xml:lang="de">Wirtschaft und Verwaltung</xsd:documentation>
|
358
|
+
<xsd:documentation xml:lang="el">Επιχειρήσεις και διοίκηση</xsd:documentation>
|
359
|
+
<xsd:documentation xml:lang="en">Business and administration</xsd:documentation>
|
360
|
+
<xsd:documentation xml:lang="es">Enseñanza comercial y
|
361
|
+
administración</xsd:documentation>
|
362
|
+
<xsd:documentation xml:lang="et">Äri ja haldus</xsd:documentation>
|
363
|
+
<xsd:documentation xml:lang="fi">Kauppa ja hallinto</xsd:documentation>
|
364
|
+
<xsd:documentation xml:lang="fr">Commerce et administration</xsd:documentation>
|
365
|
+
<xsd:documentation xml:lang="hr">Ekonomija i administracija</xsd:documentation>
|
366
|
+
<xsd:documentation xml:lang="hu">Üzleti tevékenység és
|
367
|
+
ügyvitel</xsd:documentation>
|
368
|
+
<xsd:documentation xml:lang="is">Viðskipti og stjórnun</xsd:documentation>
|
369
|
+
<xsd:documentation xml:lang="it">Commercio e amministrazione</xsd:documentation>
|
370
|
+
<xsd:documentation xml:lang="lt">Verslas ir administravimas</xsd:documentation>
|
371
|
+
<xsd:documentation xml:lang="lv">Bizness un administrācija</xsd:documentation>
|
372
|
+
<xsd:documentation xml:lang="mt">Negozju u amministrazzjoni</xsd:documentation>
|
373
|
+
<xsd:documentation xml:lang="nl">Handel en administratie</xsd:documentation>
|
374
|
+
<xsd:documentation xml:lang="no">Forretningsvirksomhet og
|
375
|
+
administrasjon</xsd:documentation>
|
376
|
+
<xsd:documentation xml:lang="pl">Gospodarka i administracja</xsd:documentation>
|
377
|
+
<xsd:documentation xml:lang="pt">Comércio e administração</xsd:documentation>
|
378
|
+
<xsd:documentation xml:lang="ro">Comerţ şi administraţie</xsd:documentation>
|
379
|
+
<xsd:documentation xml:lang="sk">Podnikanie a administratíva</xsd:documentation>
|
380
|
+
<xsd:documentation xml:lang="sl">Poslovne in upravne vede</xsd:documentation>
|
381
|
+
<xsd:documentation xml:lang="sv">Företagsekonomi, handel och
|
382
|
+
administration</xsd:documentation>
|
383
|
+
<xsd:documentation xml:lang="tr">İşletme ve Yönetim</xsd:documentation>
|
384
|
+
</xsd:annotation>
|
385
|
+
</xsd:enumeration>
|
386
|
+
<xsd:enumeration value="38">
|
387
|
+
<xsd:annotation>
|
388
|
+
<xsd:documentation xml:lang="bg">Право </xsd:documentation>
|
389
|
+
<xsd:documentation xml:lang="cs">Právo</xsd:documentation>
|
390
|
+
<xsd:documentation xml:lang="da">Jura</xsd:documentation>
|
391
|
+
<xsd:documentation xml:lang="de">Rechtswissenschaft</xsd:documentation>
|
392
|
+
<xsd:documentation xml:lang="el">Δίκαιο</xsd:documentation>
|
393
|
+
<xsd:documentation xml:lang="en">Law</xsd:documentation>
|
394
|
+
<xsd:documentation xml:lang="es">Derecho</xsd:documentation>
|
395
|
+
<xsd:documentation xml:lang="et">Õigusteadus</xsd:documentation>
|
396
|
+
<xsd:documentation xml:lang="fi">Oikeustiede</xsd:documentation>
|
397
|
+
<xsd:documentation xml:lang="fr">Droit</xsd:documentation>
|
398
|
+
<xsd:documentation xml:lang="hr">Pravo</xsd:documentation>
|
399
|
+
<xsd:documentation xml:lang="hu">Jog</xsd:documentation>
|
400
|
+
<xsd:documentation xml:lang="is">Lögfræði</xsd:documentation>
|
401
|
+
<xsd:documentation xml:lang="it">Giurisprudenza</xsd:documentation>
|
402
|
+
<xsd:documentation xml:lang="lt">Teisė</xsd:documentation>
|
403
|
+
<xsd:documentation xml:lang="lv">Tiesību zinātne</xsd:documentation>
|
404
|
+
<xsd:documentation xml:lang="mt">Liġi</xsd:documentation>
|
405
|
+
<xsd:documentation xml:lang="nl">Rechten</xsd:documentation>
|
406
|
+
<xsd:documentation xml:lang="no">Jus</xsd:documentation>
|
407
|
+
<xsd:documentation xml:lang="pl">Prawo</xsd:documentation>
|
408
|
+
<xsd:documentation xml:lang="pt">Direito</xsd:documentation>
|
409
|
+
<xsd:documentation xml:lang="ro">Drept</xsd:documentation>
|
410
|
+
<xsd:documentation xml:lang="sk">Právo</xsd:documentation>
|
411
|
+
<xsd:documentation xml:lang="sl">Pravo</xsd:documentation>
|
412
|
+
<xsd:documentation xml:lang="sv">Juridik och rättsvetenskap</xsd:documentation>
|
413
|
+
<xsd:documentation xml:lang="tr">Hukuk</xsd:documentation>
|
414
|
+
</xsd:annotation>
|
415
|
+
</xsd:enumeration>
|
416
|
+
<xsd:enumeration value="42">
|
417
|
+
<xsd:annotation>
|
418
|
+
<xsd:documentation xml:lang="bg">Обществени науки (науки за живота) </xsd:documentation>
|
419
|
+
<xsd:documentation xml:lang="cs">Biologie</xsd:documentation>
|
420
|
+
<xsd:documentation xml:lang="da">Biovidenskab- og teknologi</xsd:documentation>
|
421
|
+
<xsd:documentation xml:lang="de">Lebenswissenschaften</xsd:documentation>
|
422
|
+
<xsd:documentation xml:lang="el">Επιστήμες της ζωής</xsd:documentation>
|
423
|
+
<xsd:documentation xml:lang="en">Life sciences</xsd:documentation>
|
424
|
+
<xsd:documentation xml:lang="es">Biología</xsd:documentation>
|
425
|
+
<xsd:documentation xml:lang="et">Bioteadused</xsd:documentation>
|
426
|
+
<xsd:documentation xml:lang="fi">Biotieteet</xsd:documentation>
|
427
|
+
<xsd:documentation xml:lang="fr">Sciences de la vie</xsd:documentation>
|
428
|
+
<xsd:documentation xml:lang="hr">Biologija i srodne znanosti</xsd:documentation>
|
429
|
+
<xsd:documentation xml:lang="hu">Élettel foglalkozó
|
430
|
+
tudományok</xsd:documentation>
|
431
|
+
<xsd:documentation xml:lang="is">Líffræði og umhverfisfræði</xsd:documentation>
|
432
|
+
<xsd:documentation xml:lang="it">Scienze e tecnologie della
|
433
|
+
vita</xsd:documentation>
|
434
|
+
<xsd:documentation xml:lang="lt">Gyvosios gamtos mokslai</xsd:documentation>
|
435
|
+
<xsd:documentation xml:lang="lv">Zinātnes par dzīvību</xsd:documentation>
|
436
|
+
<xsd:documentation xml:lang="mt">Xjenzi tal-ħajja</xsd:documentation>
|
437
|
+
<xsd:documentation xml:lang="nl">Levenswetenschappen</xsd:documentation>
|
438
|
+
<xsd:documentation xml:lang="no">Miljø- og biovitenskap</xsd:documentation>
|
439
|
+
<xsd:documentation xml:lang="pl">Nauki biologiczne</xsd:documentation>
|
440
|
+
<xsd:documentation xml:lang="pt">Ciências da vida</xsd:documentation>
|
441
|
+
<xsd:documentation xml:lang="ro">Ştiinţele vieţii</xsd:documentation>
|
442
|
+
<xsd:documentation xml:lang="sk">Vedy o živote</xsd:documentation>
|
443
|
+
<xsd:documentation xml:lang="sl">Veda o življenju</xsd:documentation>
|
444
|
+
<xsd:documentation xml:lang="sv">Biologi och miljövetenskap</xsd:documentation>
|
445
|
+
<xsd:documentation xml:lang="tr">Yaşam Bilimleri</xsd:documentation>
|
446
|
+
</xsd:annotation>
|
447
|
+
</xsd:enumeration>
|
448
|
+
<xsd:enumeration value="44">
|
449
|
+
<xsd:annotation>
|
450
|
+
<xsd:documentation xml:lang="bg">Физически науки </xsd:documentation>
|
451
|
+
<xsd:documentation xml:lang="cs">Přírodní vědy</xsd:documentation>
|
452
|
+
<xsd:documentation xml:lang="da">Naturvidenskab</xsd:documentation>
|
453
|
+
<xsd:documentation xml:lang="de">Physik</xsd:documentation>
|
454
|
+
<xsd:documentation xml:lang="el">Φυσικές επιστήμες</xsd:documentation>
|
455
|
+
<xsd:documentation xml:lang="en">Physical sciences</xsd:documentation>
|
456
|
+
<xsd:documentation xml:lang="es">Ciencias físicas</xsd:documentation>
|
457
|
+
<xsd:documentation xml:lang="et">Keemia ja füüsika</xsd:documentation>
|
458
|
+
<xsd:documentation xml:lang="fi">Fysikaaliset tieteet</xsd:documentation>
|
459
|
+
<xsd:documentation xml:lang="fr">Sciences physiques</xsd:documentation>
|
460
|
+
<xsd:documentation xml:lang="hr">Fizika i srodne znanosti </xsd:documentation>
|
461
|
+
<xsd:documentation xml:lang="hu">Természettudomány</xsd:documentation>
|
462
|
+
<xsd:documentation xml:lang="is">Eðlisfræði, efnafræði og
|
463
|
+
jarðvísindi</xsd:documentation>
|
464
|
+
<xsd:documentation xml:lang="it">Scienze fisiche</xsd:documentation>
|
465
|
+
<xsd:documentation xml:lang="lt">Fiziniai mokslai</xsd:documentation>
|
466
|
+
<xsd:documentation xml:lang="lv">Fizika</xsd:documentation>
|
467
|
+
<xsd:documentation xml:lang="mt">Xjenzi fiżiċi</xsd:documentation>
|
468
|
+
<xsd:documentation xml:lang="nl">Natuurwetenschappen</xsd:documentation>
|
469
|
+
<xsd:documentation xml:lang="no">Fysisk vitenskap</xsd:documentation>
|
470
|
+
<xsd:documentation xml:lang="pl">Fizyka</xsd:documentation>
|
471
|
+
<xsd:documentation xml:lang="pt">Ciências físicas</xsd:documentation>
|
472
|
+
<xsd:documentation xml:lang="ro">Ştiinţele naturii</xsd:documentation>
|
473
|
+
<xsd:documentation xml:lang="sk">Fyzikálne vedy</xsd:documentation>
|
474
|
+
<xsd:documentation xml:lang="sl">Fizika</xsd:documentation>
|
475
|
+
<xsd:documentation xml:lang="sv">Fysik, kemi och
|
476
|
+
geovetenskap</xsd:documentation>
|
477
|
+
<xsd:documentation xml:lang="tr">Doğa Bilimleri</xsd:documentation>
|
478
|
+
</xsd:annotation>
|
479
|
+
</xsd:enumeration>
|
480
|
+
<xsd:enumeration value="46">
|
481
|
+
<xsd:annotation>
|
482
|
+
<xsd:documentation xml:lang="bg">Математика и статистика </xsd:documentation>
|
483
|
+
<xsd:documentation xml:lang="cs">Matematika a statistika</xsd:documentation>
|
484
|
+
<xsd:documentation xml:lang="da">Matematik og statistik</xsd:documentation>
|
485
|
+
<xsd:documentation xml:lang="de">Mathematik und Statistik</xsd:documentation>
|
486
|
+
<xsd:documentation xml:lang="el">Μαθηματικά και στατιστική</xsd:documentation>
|
487
|
+
<xsd:documentation xml:lang="en">Mathematics and statistics</xsd:documentation>
|
488
|
+
<xsd:documentation xml:lang="es">Matemáticas y estadística</xsd:documentation>
|
489
|
+
<xsd:documentation xml:lang="et">Matemaatika ja statistika</xsd:documentation>
|
490
|
+
<xsd:documentation xml:lang="fi">Matematiikka ja
|
491
|
+
tilastotiede</xsd:documentation>
|
492
|
+
<xsd:documentation xml:lang="fr">Mathématiques et
|
493
|
+
statistiques</xsd:documentation>
|
494
|
+
<xsd:documentation xml:lang="hr">Matematika i statistika </xsd:documentation>
|
495
|
+
<xsd:documentation xml:lang="hu">Matematika és statisztika</xsd:documentation>
|
496
|
+
<xsd:documentation xml:lang="is">Stærðfræði og tölfræði</xsd:documentation>
|
497
|
+
<xsd:documentation xml:lang="it">Matematica e statistica</xsd:documentation>
|
498
|
+
<xsd:documentation xml:lang="lt">Matematika ir statistika</xsd:documentation>
|
499
|
+
<xsd:documentation xml:lang="lv">Matemātika un statistika</xsd:documentation>
|
500
|
+
<xsd:documentation xml:lang="mt">Matematika u statistika</xsd:documentation>
|
501
|
+
<xsd:documentation xml:lang="nl">Wiskunde en statistiek</xsd:documentation>
|
502
|
+
<xsd:documentation xml:lang="no">Matematikk og statistikk</xsd:documentation>
|
503
|
+
<xsd:documentation xml:lang="pl">Matematyka i statystyka</xsd:documentation>
|
504
|
+
<xsd:documentation xml:lang="pt">Matemáticas e estatísticas</xsd:documentation>
|
505
|
+
<xsd:documentation xml:lang="ro">Matematică şi statistică</xsd:documentation>
|
506
|
+
<xsd:documentation xml:lang="sk">Matematika a štatistika</xsd:documentation>
|
507
|
+
<xsd:documentation xml:lang="sl">Matematika in statistika</xsd:documentation>
|
508
|
+
<xsd:documentation xml:lang="sv">Matematik och statistik</xsd:documentation>
|
509
|
+
<xsd:documentation xml:lang="tr">Matematik ve İstatistik </xsd:documentation>
|
510
|
+
</xsd:annotation>
|
511
|
+
</xsd:enumeration>
|
512
|
+
<xsd:enumeration value="48">
|
513
|
+
<xsd:annotation>
|
514
|
+
<xsd:documentation xml:lang="bg">Информатика </xsd:documentation>
|
515
|
+
<xsd:documentation xml:lang="cs">Výpočetní technika</xsd:documentation>
|
516
|
+
<xsd:documentation xml:lang="da">Informatik</xsd:documentation>
|
517
|
+
<xsd:documentation xml:lang="de">Informatik</xsd:documentation>
|
518
|
+
<xsd:documentation xml:lang="el">Επιστήμη υπολογιστών</xsd:documentation>
|
519
|
+
<xsd:documentation xml:lang="en">Computing</xsd:documentation>
|
520
|
+
<xsd:documentation xml:lang="es">Informática</xsd:documentation>
|
521
|
+
<xsd:documentation xml:lang="et">Infotehnoloogia</xsd:documentation>
|
522
|
+
<xsd:documentation xml:lang="fi">Tietotekniikka</xsd:documentation>
|
523
|
+
<xsd:documentation xml:lang="fr">Sciences informatiques</xsd:documentation>
|
524
|
+
<xsd:documentation xml:lang="hr">Informatika</xsd:documentation>
|
525
|
+
<xsd:documentation xml:lang="hu">Számítástechnika</xsd:documentation>
|
526
|
+
<xsd:documentation xml:lang="is">Tölvun</xsd:documentation>
|
527
|
+
<xsd:documentation xml:lang="it">Informatica</xsd:documentation>
|
528
|
+
<xsd:documentation xml:lang="lt">Kompiuterija</xsd:documentation>
|
529
|
+
<xsd:documentation xml:lang="lv">Informātika</xsd:documentation>
|
530
|
+
<xsd:documentation xml:lang="mt">Xogħol tal-Kompjuter</xsd:documentation>
|
531
|
+
<xsd:documentation xml:lang="nl">Informatica</xsd:documentation>
|
532
|
+
<xsd:documentation xml:lang="no">Databehandling</xsd:documentation>
|
533
|
+
<xsd:documentation xml:lang="pl">Informatyka</xsd:documentation>
|
534
|
+
<xsd:documentation xml:lang="pt">Ciências informáticas</xsd:documentation>
|
535
|
+
<xsd:documentation xml:lang="ro">Informatică</xsd:documentation>
|
536
|
+
<xsd:documentation xml:lang="sk">Informatika</xsd:documentation>
|
537
|
+
<xsd:documentation xml:lang="sl">Računalništvo</xsd:documentation>
|
538
|
+
<xsd:documentation xml:lang="sv">Data</xsd:documentation>
|
539
|
+
<xsd:documentation xml:lang="tr">Hesaplama</xsd:documentation>
|
540
|
+
</xsd:annotation>
|
541
|
+
</xsd:enumeration>
|
542
|
+
<xsd:enumeration value="52">
|
543
|
+
<xsd:annotation>
|
544
|
+
<xsd:documentation xml:lang="bg">Инженерство и инженерни
|
545
|
+
специалности</xsd:documentation>
|
546
|
+
<xsd:documentation xml:lang="cs">Inženýrství a technické
|
547
|
+
obory</xsd:documentation>
|
548
|
+
<xsd:documentation xml:lang="da">Ingeniør- og
|
549
|
+
industriingeniørfag</xsd:documentation>
|
550
|
+
<xsd:documentation xml:lang="de">Ingenieurwesen und
|
551
|
+
Ingenieurberufe</xsd:documentation>
|
552
|
+
<xsd:documentation xml:lang="el">Μηχανολογία και συγγενείς
|
553
|
+
τεχνολογίες</xsd:documentation>
|
554
|
+
<xsd:documentation xml:lang="en">Engineering and engineering
|
555
|
+
trades</xsd:documentation>
|
556
|
+
<xsd:documentation xml:lang="es">Ingeniería y profesiones
|
557
|
+
afines</xsd:documentation>
|
558
|
+
<xsd:documentation xml:lang="et">Inseneriteadus</xsd:documentation>
|
559
|
+
<xsd:documentation xml:lang="fi">Tekniikka ja tekniset
|
560
|
+
ammatit</xsd:documentation>
|
561
|
+
<xsd:documentation xml:lang="fr">Ingénierie et techniques
|
562
|
+
apparentées</xsd:documentation>
|
563
|
+
<xsd:documentation xml:lang="hr">Inžinjerstvo i pripadajući obrti </xsd:documentation>
|
564
|
+
<xsd:documentation xml:lang="hu">Műszaki tudományok és
|
565
|
+
szakmák</xsd:documentation>
|
566
|
+
<xsd:documentation xml:lang="is">Verkfræði og verkfræðistörf</xsd:documentation>
|
567
|
+
<xsd:documentation xml:lang="it">Ingegneria e studi
|
568
|
+
correlati</xsd:documentation>
|
569
|
+
<xsd:documentation xml:lang="lt">Inžinerija ir inžinierių
|
570
|
+
profesijos</xsd:documentation>
|
571
|
+
<xsd:documentation xml:lang="lv">Inženierzinātne un inženierzinātnes
|
572
|
+
specialitātes</xsd:documentation>
|
573
|
+
<xsd:documentation xml:lang="mt">Inġinerija u snajja' ta'
|
574
|
+
l-inġinerija</xsd:documentation>
|
575
|
+
<xsd:documentation xml:lang="nl">Ingenieursopleiding</xsd:documentation>
|
576
|
+
<xsd:documentation xml:lang="no">Ingeniørfag</xsd:documentation>
|
577
|
+
<xsd:documentation xml:lang="pl">Inżynieria i technika</xsd:documentation>
|
578
|
+
<xsd:documentation xml:lang="pt">Engenharia e técnicas
|
579
|
+
similares</xsd:documentation>
|
580
|
+
<xsd:documentation xml:lang="ro">Inginerie şi tehnici
|
581
|
+
înrudite</xsd:documentation>
|
582
|
+
<xsd:documentation xml:lang="sk">Inžinierstvo a technické
|
583
|
+
odbory</xsd:documentation>
|
584
|
+
<xsd:documentation xml:lang="sl">Tehniške vede in tehniški
|
585
|
+
poklici</xsd:documentation>
|
586
|
+
<xsd:documentation xml:lang="sv">Teknik och teknisk industri</xsd:documentation>
|
587
|
+
<xsd:documentation xml:lang="tr">Mühendislik</xsd:documentation>
|
588
|
+
</xsd:annotation>
|
589
|
+
</xsd:enumeration>
|
590
|
+
<xsd:enumeration value="54">
|
591
|
+
<xsd:annotation>
|
592
|
+
<xsd:documentation xml:lang="bg">Производство и преработка </xsd:documentation>
|
593
|
+
<xsd:documentation xml:lang="cs">Výroba a zpracovatelský
|
594
|
+
průmysl</xsd:documentation>
|
595
|
+
<xsd:documentation xml:lang="da">Fremstilling og forarbejdning </xsd:documentation>
|
596
|
+
<xsd:documentation xml:lang="de">Fertigung und Verarbeitung</xsd:documentation>
|
597
|
+
<xsd:documentation xml:lang="el">Βιομηχανίες μεταποίησης και
|
598
|
+
επεξεργασίας</xsd:documentation>
|
599
|
+
<xsd:documentation xml:lang="en">Manufacturing and
|
600
|
+
processing</xsd:documentation>
|
601
|
+
<xsd:documentation xml:lang="es">Industria y producción</xsd:documentation>
|
602
|
+
<xsd:documentation xml:lang="et">Tootmine ja töötlemine</xsd:documentation>
|
603
|
+
<xsd:documentation xml:lang="fi">Tuotanto ja jalostus </xsd:documentation>
|
604
|
+
<xsd:documentation xml:lang="fr">Industries de transformation et de
|
605
|
+
traitement</xsd:documentation>
|
606
|
+
<xsd:documentation xml:lang="hr">Proizvodna i prerađivačka
|
607
|
+
industrija</xsd:documentation>
|
608
|
+
<xsd:documentation xml:lang="hu">Gyártás és feldolgozás</xsd:documentation>
|
609
|
+
<xsd:documentation xml:lang="is">Framleiðsla og vinnsla</xsd:documentation>
|
610
|
+
<xsd:documentation xml:lang="it">Industria della produzione e della
|
611
|
+
trasformazione</xsd:documentation>
|
612
|
+
<xsd:documentation xml:lang="lt">Gamyba ir perdirbimas</xsd:documentation>
|
613
|
+
<xsd:documentation xml:lang="lv">Ražošana un pārstrāde</xsd:documentation>
|
614
|
+
<xsd:documentation xml:lang="mt">Manifattura u ipproċessar</xsd:documentation>
|
615
|
+
<xsd:documentation xml:lang="nl">Verwerkende industrie </xsd:documentation>
|
616
|
+
<xsd:documentation xml:lang="no">Produksjon og bearbeidelse</xsd:documentation>
|
617
|
+
<xsd:documentation xml:lang="pl">Produkcja i przetwórstwo</xsd:documentation>
|
618
|
+
<xsd:documentation xml:lang="pt">Indústrias de transformação e
|
619
|
+
tratamento</xsd:documentation>
|
620
|
+
<xsd:documentation xml:lang="ro">Industrii de transformare şi de
|
621
|
+
tratare</xsd:documentation>
|
622
|
+
<xsd:documentation xml:lang="sk">Výroba a spracovanie</xsd:documentation>
|
623
|
+
<xsd:documentation xml:lang="sl">Proizvodnja in predelava</xsd:documentation>
|
624
|
+
<xsd:documentation xml:lang="sv">Material och tillverkning</xsd:documentation>
|
625
|
+
<xsd:documentation xml:lang="tr">Üretim ve İşleme</xsd:documentation>
|
626
|
+
</xsd:annotation>
|
627
|
+
</xsd:enumeration>
|
628
|
+
<xsd:enumeration value="58">
|
629
|
+
<xsd:annotation>
|
630
|
+
<xsd:documentation xml:lang="bg">Архитектура и строителство </xsd:documentation>
|
631
|
+
<xsd:documentation xml:lang="cs">Architektura a stavebnictví</xsd:documentation>
|
632
|
+
<xsd:documentation xml:lang="da">Arkitektur og byggeri</xsd:documentation>
|
633
|
+
<xsd:documentation xml:lang="de">Architektur und Bauwesen</xsd:documentation>
|
634
|
+
<xsd:documentation xml:lang="el">Αρχιτεκτονική και
|
635
|
+
οικοδομική</xsd:documentation>
|
636
|
+
<xsd:documentation xml:lang="en">Architecture and building</xsd:documentation>
|
637
|
+
<xsd:documentation xml:lang="es">Arquitectura y construcción</xsd:documentation>
|
638
|
+
<xsd:documentation xml:lang="et">Arhitektuur ja ehitus</xsd:documentation>
|
639
|
+
<xsd:documentation xml:lang="fi">Arkkitehtuuri ja
|
640
|
+
rakentaminen</xsd:documentation>
|
641
|
+
<xsd:documentation xml:lang="fr">Architecture et bâtiment</xsd:documentation>
|
642
|
+
<xsd:documentation xml:lang="hr">Arhitektura i građevinarstvo </xsd:documentation>
|
643
|
+
<xsd:documentation xml:lang="hu">Építészet és építőipar</xsd:documentation>
|
644
|
+
<xsd:documentation xml:lang="is">Arkitektúr og
|
645
|
+
mannvirkjagerð</xsd:documentation>
|
646
|
+
<xsd:documentation xml:lang="it">Architettura ed edilizia</xsd:documentation>
|
647
|
+
<xsd:documentation xml:lang="lt">Architektūra ir statyba</xsd:documentation>
|
648
|
+
<xsd:documentation xml:lang="lv">Arhitektūra un celtniecība</xsd:documentation>
|
649
|
+
<xsd:documentation xml:lang="mt">Arkitettura u bini</xsd:documentation>
|
650
|
+
<xsd:documentation xml:lang="nl">Architectuur en bouwsector</xsd:documentation>
|
651
|
+
<xsd:documentation xml:lang="no">Arkitektur og byggfag</xsd:documentation>
|
652
|
+
<xsd:documentation xml:lang="pl">Architektura i budownictwo</xsd:documentation>
|
653
|
+
<xsd:documentation xml:lang="pt">Arquitectura e construção</xsd:documentation>
|
654
|
+
<xsd:documentation xml:lang="ro">Arhitectură şi construcţii</xsd:documentation>
|
655
|
+
<xsd:documentation xml:lang="sk">Architektúra a stavebníctvo</xsd:documentation>
|
656
|
+
<xsd:documentation xml:lang="sl">Arhitektura in gradbeništvo</xsd:documentation>
|
657
|
+
<xsd:documentation xml:lang="sv">Samhällsbyggnad och
|
658
|
+
byggnadsteknik</xsd:documentation>
|
659
|
+
<xsd:documentation xml:lang="tr">Mimarlık ve İnşaat</xsd:documentation>
|
660
|
+
</xsd:annotation>
|
661
|
+
</xsd:enumeration>
|
662
|
+
<xsd:enumeration value="62">
|
663
|
+
<xsd:annotation>
|
664
|
+
<xsd:documentation xml:lang="bg">Селско стопанство, лесовъдство и риболовство </xsd:documentation>
|
665
|
+
<xsd:documentation xml:lang="cs">Zemědělství, lesnictví a
|
666
|
+
rybolov</xsd:documentation>
|
667
|
+
<xsd:documentation xml:lang="da">Landbrug, skovbrug og
|
668
|
+
fiskeri</xsd:documentation>
|
669
|
+
<xsd:documentation xml:lang="de">Agrarwissenschaft, Forstwissenschaft und
|
670
|
+
Fischereiwirtschaft</xsd:documentation>
|
671
|
+
<xsd:documentation xml:lang="el">Γεωργία, δασοπονία και
|
672
|
+
αλιεία</xsd:documentation>
|
673
|
+
<xsd:documentation xml:lang="en">Agriculture, forestry and
|
674
|
+
fishery</xsd:documentation>
|
675
|
+
<xsd:documentation xml:lang="es">Agricultura, silvicultura y
|
676
|
+
pesca</xsd:documentation>
|
677
|
+
<xsd:documentation xml:lang="et">Põllumajandus, metsandus ja
|
678
|
+
kalandus</xsd:documentation>
|
679
|
+
<xsd:documentation xml:lang="fi">Maa-, metsä- ja kalatalous</xsd:documentation>
|
680
|
+
<xsd:documentation xml:lang="fr">Agriculture, sylviculture et
|
681
|
+
halieutique</xsd:documentation>
|
682
|
+
<xsd:documentation xml:lang="hr">Poljoprivreda, šumarstvo i ribarstvo </xsd:documentation>
|
683
|
+
<xsd:documentation xml:lang="hu">Mezőgazdaság, erdészet és
|
684
|
+
halászat</xsd:documentation>
|
685
|
+
<xsd:documentation xml:lang="is">Landbúnaður, skógrækt og
|
686
|
+
fiskveiðar</xsd:documentation>
|
687
|
+
<xsd:documentation xml:lang="it">Agricoltura, silvicoltura e
|
688
|
+
pesca</xsd:documentation>
|
689
|
+
<xsd:documentation xml:lang="lt">Žemės ūkis, miškininkystė ir
|
690
|
+
žuvininkystė</xsd:documentation>
|
691
|
+
<xsd:documentation xml:lang="lv">Lauksaimniecība, mežsaimniecība un
|
692
|
+
zivsaimniecība</xsd:documentation>
|
693
|
+
<xsd:documentation xml:lang="mt">Agrikoltura, forestrija u
|
694
|
+
sajd</xsd:documentation>
|
695
|
+
<xsd:documentation xml:lang="nl">Landbouw, bosbouw en
|
696
|
+
visserij</xsd:documentation>
|
697
|
+
<xsd:documentation xml:lang="no">Landbruk, skogbruk og
|
698
|
+
fiskeri</xsd:documentation>
|
699
|
+
<xsd:documentation xml:lang="pl">Rolnictwo, leśnictwo i
|
700
|
+
rybołówstwo</xsd:documentation>
|
701
|
+
<xsd:documentation xml:lang="pt">Agricultura, silvicultura e
|
702
|
+
pesca</xsd:documentation>
|
703
|
+
<xsd:documentation xml:lang="ro">Agricultură, silvicultură,
|
704
|
+
piscicultură</xsd:documentation>
|
705
|
+
<xsd:documentation xml:lang="sk">Poľnohospodárstvo, lesníctvo a
|
706
|
+
rybárstvo</xsd:documentation>
|
707
|
+
<xsd:documentation xml:lang="sl">Kmetijstvo, gozdarstvo in
|
708
|
+
ribištvo</xsd:documentation>
|
709
|
+
<xsd:documentation xml:lang="sv">Lantbruk, trädgård, skogsbruk och
|
710
|
+
fiske</xsd:documentation>
|
711
|
+
<xsd:documentation xml:lang="tr">Tarım, Ormancılık ve
|
712
|
+
Balıkçılık</xsd:documentation>
|
713
|
+
</xsd:annotation>
|
714
|
+
</xsd:enumeration>
|
715
|
+
<xsd:enumeration value="64">
|
716
|
+
<xsd:annotation>
|
717
|
+
<xsd:documentation xml:lang="bg">Ветеринарна медицина </xsd:documentation>
|
718
|
+
<xsd:documentation xml:lang="cs">Veterinární lékařství </xsd:documentation>
|
719
|
+
<xsd:documentation xml:lang="da">Veterinærvidenskab</xsd:documentation>
|
720
|
+
<xsd:documentation xml:lang="de">Veterinärwissenschaft</xsd:documentation>
|
721
|
+
<xsd:documentation xml:lang="el">Κτηνιατρική επιστήμη</xsd:documentation>
|
722
|
+
<xsd:documentation xml:lang="en">Veterinary</xsd:documentation>
|
723
|
+
<xsd:documentation xml:lang="es">Veterinaria</xsd:documentation>
|
724
|
+
<xsd:documentation xml:lang="et">Veterinaaria</xsd:documentation>
|
725
|
+
<xsd:documentation xml:lang="fi">Eläinlääketiede</xsd:documentation>
|
726
|
+
<xsd:documentation xml:lang="fr">Sciences vétérinaires</xsd:documentation>
|
727
|
+
<xsd:documentation xml:lang="hr">Veterina </xsd:documentation>
|
728
|
+
<xsd:documentation xml:lang="hu">Állatorvostudomány</xsd:documentation>
|
729
|
+
<xsd:documentation xml:lang="is">Dýralækningar</xsd:documentation>
|
730
|
+
<xsd:documentation xml:lang="it">Veterinaria</xsd:documentation>
|
731
|
+
<xsd:documentation xml:lang="lt">Veterinarija</xsd:documentation>
|
732
|
+
<xsd:documentation xml:lang="lv">Veterinārija</xsd:documentation>
|
733
|
+
<xsd:documentation xml:lang="mt">Veterinarju</xsd:documentation>
|
734
|
+
<xsd:documentation xml:lang="nl">Diergeneeskunde</xsd:documentation>
|
735
|
+
<xsd:documentation xml:lang="no">Veterinærvitenskap</xsd:documentation>
|
736
|
+
<xsd:documentation xml:lang="pl">Weterynaria</xsd:documentation>
|
737
|
+
<xsd:documentation xml:lang="pt">Veterinária</xsd:documentation>
|
738
|
+
<xsd:documentation xml:lang="ro">Medicină veterinară</xsd:documentation>
|
739
|
+
<xsd:documentation xml:lang="sk">Veterinárne lekárstvo</xsd:documentation>
|
740
|
+
<xsd:documentation xml:lang="sl">Veterina</xsd:documentation>
|
741
|
+
<xsd:documentation xml:lang="sv">Djursjukvård</xsd:documentation>
|
742
|
+
<xsd:documentation xml:lang="tr">Veterinerlik</xsd:documentation>
|
743
|
+
</xsd:annotation>
|
744
|
+
</xsd:enumeration>
|
745
|
+
<xsd:enumeration value="72">
|
746
|
+
<xsd:annotation>
|
747
|
+
<xsd:documentation xml:lang="bg">Здравеопазване </xsd:documentation>
|
748
|
+
<xsd:documentation xml:lang="cs">Zdravotnictví</xsd:documentation>
|
749
|
+
<xsd:documentation xml:lang="da">Sundhedsvæsen</xsd:documentation>
|
750
|
+
<xsd:documentation xml:lang="de">Gesundheitswesen</xsd:documentation>
|
751
|
+
<xsd:documentation xml:lang="el">Υγεία</xsd:documentation>
|
752
|
+
<xsd:documentation xml:lang="en">Health</xsd:documentation>
|
753
|
+
<xsd:documentation xml:lang="es">Sanidad</xsd:documentation>
|
754
|
+
<xsd:documentation xml:lang="et">Tervishoid</xsd:documentation>
|
755
|
+
<xsd:documentation xml:lang="fi">Terveydenhuolto</xsd:documentation>
|
756
|
+
<xsd:documentation xml:lang="fr">Santé</xsd:documentation>
|
757
|
+
<xsd:documentation xml:lang="hr">Zdravstvo</xsd:documentation>
|
758
|
+
<xsd:documentation xml:lang="hu">Egészségügy</xsd:documentation>
|
759
|
+
<xsd:documentation xml:lang="is">Heilsuvernd og hjúkrun</xsd:documentation>
|
760
|
+
<xsd:documentation xml:lang="it">Scienze della salute</xsd:documentation>
|
761
|
+
<xsd:documentation xml:lang="lt">Sveikatos apsauga</xsd:documentation>
|
762
|
+
<xsd:documentation xml:lang="lv">Veselības mācība</xsd:documentation>
|
763
|
+
<xsd:documentation xml:lang="mt">Saħħa</xsd:documentation>
|
764
|
+
<xsd:documentation xml:lang="nl">Gezondheid</xsd:documentation>
|
765
|
+
<xsd:documentation xml:lang="no">Helsestell</xsd:documentation>
|
766
|
+
<xsd:documentation xml:lang="pl">Zdrowie</xsd:documentation>
|
767
|
+
<xsd:documentation xml:lang="pt">Saúde</xsd:documentation>
|
768
|
+
<xsd:documentation xml:lang="ro">Sănătate</xsd:documentation>
|
769
|
+
<xsd:documentation xml:lang="sk">Zdravotníctvo</xsd:documentation>
|
770
|
+
<xsd:documentation xml:lang="sl">Zdravstvo</xsd:documentation>
|
771
|
+
<xsd:documentation xml:lang="sv">Hälso- och sjukvård</xsd:documentation>
|
772
|
+
<xsd:documentation xml:lang="tr">Sağlık</xsd:documentation>
|
773
|
+
</xsd:annotation>
|
774
|
+
</xsd:enumeration>
|
775
|
+
<xsd:enumeration value="76">
|
776
|
+
<xsd:annotation>
|
777
|
+
<xsd:documentation xml:lang="bg">Социални усулги </xsd:documentation>
|
778
|
+
<xsd:documentation xml:lang="cs">Sociální služby</xsd:documentation>
|
779
|
+
<xsd:documentation xml:lang="da">Socialforsorg</xsd:documentation>
|
780
|
+
<xsd:documentation xml:lang="de">Soziale Dienste</xsd:documentation>
|
781
|
+
<xsd:documentation xml:lang="el">Κοινωνικές υπηρεσίες</xsd:documentation>
|
782
|
+
<xsd:documentation xml:lang="en">Social services</xsd:documentation>
|
783
|
+
<xsd:documentation xml:lang="es">Servicios sociales</xsd:documentation>
|
784
|
+
<xsd:documentation xml:lang="et">Sotsiaalteenused</xsd:documentation>
|
785
|
+
<xsd:documentation xml:lang="fi">Sosiaalipalvelut</xsd:documentation>
|
786
|
+
<xsd:documentation xml:lang="fr">Services sociaux</xsd:documentation>
|
787
|
+
<xsd:documentation xml:lang="hr">Socijalne usluge</xsd:documentation>
|
788
|
+
<xsd:documentation xml:lang="hu">Szociális szolgáltatások</xsd:documentation>
|
789
|
+
<xsd:documentation xml:lang="is">Félagsmálastörf og umönnun</xsd:documentation>
|
790
|
+
<xsd:documentation xml:lang="it">Servizi sociali</xsd:documentation>
|
791
|
+
<xsd:documentation xml:lang="lt">Visuomeninės paslaugos</xsd:documentation>
|
792
|
+
<xsd:documentation xml:lang="lv">Sociālie pakalpojumi</xsd:documentation>
|
793
|
+
<xsd:documentation xml:lang="mt">Servizzi soċjali</xsd:documentation>
|
794
|
+
<xsd:documentation xml:lang="nl">Sociale voorzieningen</xsd:documentation>
|
795
|
+
<xsd:documentation xml:lang="no">Sosialtjenester</xsd:documentation>
|
796
|
+
<xsd:documentation xml:lang="pl">Opieka społeczna</xsd:documentation>
|
797
|
+
<xsd:documentation xml:lang="pt">Serviços sociais</xsd:documentation>
|
798
|
+
<xsd:documentation xml:lang="ro">Servicii sociale</xsd:documentation>
|
799
|
+
<xsd:documentation xml:lang="sk">Sociálne služby</xsd:documentation>
|
800
|
+
<xsd:documentation xml:lang="sl">Socialne storitve</xsd:documentation>
|
801
|
+
<xsd:documentation xml:lang="sv">Socialt arbete och omsorg</xsd:documentation>
|
802
|
+
<xsd:documentation xml:lang="tr">Sosyal Hizmetler</xsd:documentation>
|
803
|
+
</xsd:annotation>
|
804
|
+
</xsd:enumeration>
|
805
|
+
<xsd:enumeration value="81">
|
806
|
+
<xsd:annotation>
|
807
|
+
<xsd:documentation xml:lang="bg">Персонални услуги </xsd:documentation>
|
808
|
+
<xsd:documentation xml:lang="cs">Osobní služby</xsd:documentation>
|
809
|
+
<xsd:documentation xml:lang="da">Personlige tjenesteydelser</xsd:documentation>
|
810
|
+
<xsd:documentation xml:lang="de">Dienstleistungen für den persönlichen
|
811
|
+
Bedarf</xsd:documentation>
|
812
|
+
<xsd:documentation xml:lang="el">Υπηρεσίες προς ιδιώτες</xsd:documentation>
|
813
|
+
<xsd:documentation xml:lang="en">Personal services</xsd:documentation>
|
814
|
+
<xsd:documentation xml:lang="es">Servicios personales</xsd:documentation>
|
815
|
+
<xsd:documentation xml:lang="et">Isikuteenused</xsd:documentation>
|
816
|
+
<xsd:documentation xml:lang="fi">Henkilökohtaiset palvelut</xsd:documentation>
|
817
|
+
<xsd:documentation xml:lang="fr">Services aux particuliers</xsd:documentation>
|
818
|
+
<xsd:documentation xml:lang="hr">Osobne usluge</xsd:documentation>
|
819
|
+
<xsd:documentation xml:lang="hu">Személyi szolgáltatások</xsd:documentation>
|
820
|
+
<xsd:documentation xml:lang="is">Persónuleg þjónusta</xsd:documentation>
|
821
|
+
<xsd:documentation xml:lang="it">Servizi alla persona</xsd:documentation>
|
822
|
+
<xsd:documentation xml:lang="lt">Asmeninės paslaugos</xsd:documentation>
|
823
|
+
<xsd:documentation xml:lang="lv">Personīgie pakalpojumi </xsd:documentation>
|
824
|
+
<xsd:documentation xml:lang="mt">Servizzi personali</xsd:documentation>
|
825
|
+
<xsd:documentation xml:lang="nl">Dienstverlening aan
|
826
|
+
particulieren</xsd:documentation>
|
827
|
+
<xsd:documentation xml:lang="no">Personlige tjenester</xsd:documentation>
|
828
|
+
<xsd:documentation xml:lang="pl">Usługi dla ludności</xsd:documentation>
|
829
|
+
<xsd:documentation xml:lang="pt">Serviços pessoais</xsd:documentation>
|
830
|
+
<xsd:documentation xml:lang="ro">Servicii prestate unor persoane
|
831
|
+
particulare</xsd:documentation>
|
832
|
+
<xsd:documentation xml:lang="sk">Personálne služby</xsd:documentation>
|
833
|
+
<xsd:documentation xml:lang="sl">Osebne storitve</xsd:documentation>
|
834
|
+
<xsd:documentation xml:lang="sv">Personliga tjänster</xsd:documentation>
|
835
|
+
<xsd:documentation xml:lang="tr">Kişisel Hizmetler</xsd:documentation>
|
836
|
+
</xsd:annotation>
|
837
|
+
</xsd:enumeration>
|
838
|
+
<xsd:enumeration value="84">
|
839
|
+
<xsd:annotation>
|
840
|
+
<xsd:documentation xml:lang="bg">Транспортни услуги </xsd:documentation>
|
841
|
+
<xsd:documentation xml:lang="cs">Dopravní služby</xsd:documentation>
|
842
|
+
<xsd:documentation xml:lang="da">Transport</xsd:documentation>
|
843
|
+
<xsd:documentation xml:lang="de">Verkehr</xsd:documentation>
|
844
|
+
<xsd:documentation xml:lang="el">Υπηρεσίες μεταφορών</xsd:documentation>
|
845
|
+
<xsd:documentation xml:lang="en">Transport services</xsd:documentation>
|
846
|
+
<xsd:documentation xml:lang="es">Servicios de transporte</xsd:documentation>
|
847
|
+
<xsd:documentation xml:lang="et">Transporditeenused</xsd:documentation>
|
848
|
+
<xsd:documentation xml:lang="fi">Kuljetuspalvelut</xsd:documentation>
|
849
|
+
<xsd:documentation xml:lang="fr">Services de transport</xsd:documentation>
|
850
|
+
<xsd:documentation xml:lang="hr">Usluge prijevoza </xsd:documentation>
|
851
|
+
<xsd:documentation xml:lang="hu">Szállítási szolgáltatások</xsd:documentation>
|
852
|
+
<xsd:documentation xml:lang="is">Flutningaþjónusta</xsd:documentation>
|
853
|
+
<xsd:documentation xml:lang="it">Servizi di trasporto</xsd:documentation>
|
854
|
+
<xsd:documentation xml:lang="lt">Transporto paslaugos</xsd:documentation>
|
855
|
+
<xsd:documentation xml:lang="lv">Transporta pakalpojumi</xsd:documentation>
|
856
|
+
<xsd:documentation xml:lang="mt">Servizzi ta' trasport</xsd:documentation>
|
857
|
+
<xsd:documentation xml:lang="nl">Vervoerdiensten</xsd:documentation>
|
858
|
+
<xsd:documentation xml:lang="no">Transporttjenester</xsd:documentation>
|
859
|
+
<xsd:documentation xml:lang="pl">Usługi transportowe</xsd:documentation>
|
860
|
+
<xsd:documentation xml:lang="pt">Serviços de transporte</xsd:documentation>
|
861
|
+
<xsd:documentation xml:lang="ro">Servicii de transport</xsd:documentation>
|
862
|
+
<xsd:documentation xml:lang="sk">Dopravné služby</xsd:documentation>
|
863
|
+
<xsd:documentation xml:lang="sl">Prometne storitve</xsd:documentation>
|
864
|
+
<xsd:documentation xml:lang="sv">Transporttjänster</xsd:documentation>
|
865
|
+
<xsd:documentation xml:lang="tr">Ulaşım Hizmetleri </xsd:documentation>
|
866
|
+
</xsd:annotation>
|
867
|
+
</xsd:enumeration>
|
868
|
+
<xsd:enumeration value="85">
|
869
|
+
<xsd:annotation>
|
870
|
+
<xsd:documentation xml:lang="bg">Опазване на околната среда </xsd:documentation>
|
871
|
+
<xsd:documentation xml:lang="cs">Ochrana životního prostředí</xsd:documentation>
|
872
|
+
<xsd:documentation xml:lang="da">Miljøbeskyttelse</xsd:documentation>
|
873
|
+
<xsd:documentation xml:lang="de">Umweltschutz</xsd:documentation>
|
874
|
+
<xsd:documentation xml:lang="el">Προστασία περιβάλλοντος</xsd:documentation>
|
875
|
+
<xsd:documentation xml:lang="en">Environmental protection</xsd:documentation>
|
876
|
+
<xsd:documentation xml:lang="es">Protección ambiental</xsd:documentation>
|
877
|
+
<xsd:documentation xml:lang="et">Keskkonnakaitse</xsd:documentation>
|
878
|
+
<xsd:documentation xml:lang="fi">Ympäristönsuojelu</xsd:documentation>
|
879
|
+
<xsd:documentation xml:lang="fr">Protection de
|
880
|
+
l'environnement</xsd:documentation>
|
881
|
+
<xsd:documentation xml:lang="hr">Zaštita okoliša</xsd:documentation>
|
882
|
+
<xsd:documentation xml:lang="hu">Környezetvédelem</xsd:documentation>
|
883
|
+
<xsd:documentation xml:lang="is">Umhverfisvernd</xsd:documentation>
|
884
|
+
<xsd:documentation xml:lang="it">Protezione dell'ambiente</xsd:documentation>
|
885
|
+
<xsd:documentation xml:lang="lt">Aplinkos apsauga</xsd:documentation>
|
886
|
+
<xsd:documentation xml:lang="lv">Vides aizsardzība</xsd:documentation>
|
887
|
+
<xsd:documentation xml:lang="mt">Ħarsien ta' l-ambjent</xsd:documentation>
|
888
|
+
<xsd:documentation xml:lang="nl">Milieubescherming</xsd:documentation>
|
889
|
+
<xsd:documentation xml:lang="no">Miljøvern</xsd:documentation>
|
890
|
+
<xsd:documentation xml:lang="pl">Ochrona środowiska</xsd:documentation>
|
891
|
+
<xsd:documentation xml:lang="pt">Protecção do ambiente</xsd:documentation>
|
892
|
+
<xsd:documentation xml:lang="ro">Protecţia mediului</xsd:documentation>
|
893
|
+
<xsd:documentation xml:lang="sk">Ochrana životného
|
894
|
+
prostredia</xsd:documentation>
|
895
|
+
<xsd:documentation xml:lang="sl">Varstvo okolja</xsd:documentation>
|
896
|
+
<xsd:documentation xml:lang="sv">Miljövård och miljöskydd</xsd:documentation>
|
897
|
+
<xsd:documentation xml:lang="tr">Çevre Koruma</xsd:documentation>
|
898
|
+
</xsd:annotation>
|
899
|
+
</xsd:enumeration>
|
900
|
+
<xsd:enumeration value="86">
|
901
|
+
<xsd:annotation>
|
902
|
+
<xsd:documentation xml:lang="bg">Охранителни усулги </xsd:documentation>
|
903
|
+
<xsd:documentation xml:lang="cs">Bezpečnostní služby</xsd:documentation>
|
904
|
+
<xsd:documentation xml:lang="da">Sikkerhed</xsd:documentation>
|
905
|
+
<xsd:documentation xml:lang="de">Sicherheit</xsd:documentation>
|
906
|
+
<xsd:documentation xml:lang="el">Υπηρεσίες ασφάλειας</xsd:documentation>
|
907
|
+
<xsd:documentation xml:lang="en">Security services</xsd:documentation>
|
908
|
+
<xsd:documentation xml:lang="es">Servicios de seguridad</xsd:documentation>
|
909
|
+
<xsd:documentation xml:lang="et">Turvateenused</xsd:documentation>
|
910
|
+
<xsd:documentation xml:lang="fi">Turvallisuuspalvelut</xsd:documentation>
|
911
|
+
<xsd:documentation xml:lang="fr">Services de sécurité</xsd:documentation>
|
912
|
+
<xsd:documentation xml:lang="hr">Zaštitarske usluge </xsd:documentation>
|
913
|
+
<xsd:documentation xml:lang="hu">Biztonsági szolgáltatások</xsd:documentation>
|
914
|
+
<xsd:documentation xml:lang="is">Öryggisþjónusta</xsd:documentation>
|
915
|
+
<xsd:documentation xml:lang="it">Servizi di sicurezza</xsd:documentation>
|
916
|
+
<xsd:documentation xml:lang="lt">Saugos paslaugos</xsd:documentation>
|
917
|
+
<xsd:documentation xml:lang="lv">Drošība</xsd:documentation>
|
918
|
+
<xsd:documentation xml:lang="mt">Servizzi ta' sigurtà</xsd:documentation>
|
919
|
+
<xsd:documentation xml:lang="nl">Veiligheidsdiensten</xsd:documentation>
|
920
|
+
<xsd:documentation xml:lang="no">Sikkerhetstjenester</xsd:documentation>
|
921
|
+
<xsd:documentation xml:lang="pl">Ochrona</xsd:documentation>
|
922
|
+
<xsd:documentation xml:lang="pt">Serviços de segurança</xsd:documentation>
|
923
|
+
<xsd:documentation xml:lang="ro">Servicii de pază</xsd:documentation>
|
924
|
+
<xsd:documentation xml:lang="sk">Bezpečnostné služby</xsd:documentation>
|
925
|
+
<xsd:documentation xml:lang="sl">Varnostne storitve</xsd:documentation>
|
926
|
+
<xsd:documentation xml:lang="sv">Säkerhetstjänster</xsd:documentation>
|
927
|
+
<xsd:documentation xml:lang="tr">Güvenlik Hizmetleri </xsd:documentation>
|
928
|
+
</xsd:annotation>
|
929
|
+
</xsd:enumeration>
|
930
|
+
</xsd:restriction>
|
931
|
+
</xsd:simpleType>
|
932
|
+
<xsd:simpleType name="level">
|
933
|
+
<xsd:annotation>
|
934
|
+
<xsd:documentation xml:lang="en">ISCED level classification</xsd:documentation>
|
935
|
+
</xsd:annotation>
|
936
|
+
<xsd:restriction base="xsd:string">
|
937
|
+
<xsd:enumeration value="0">
|
938
|
+
<xsd:annotation>
|
939
|
+
<xsd:documentation xml:lang="en">ISCED 0 (Pre-primary
|
940
|
+
education)</xsd:documentation>
|
941
|
+
</xsd:annotation>
|
942
|
+
</xsd:enumeration>
|
943
|
+
<xsd:enumeration value="1">
|
944
|
+
<xsd:annotation>
|
945
|
+
<xsd:documentation xml:lang="en">ISCED 1 (Primary education or first stage of
|
946
|
+
basic education)</xsd:documentation>
|
947
|
+
</xsd:annotation>
|
948
|
+
</xsd:enumeration>
|
949
|
+
<xsd:enumeration value="2">
|
950
|
+
<xsd:annotation>
|
951
|
+
<xsd:documentation xml:lang="en">ISCED 2 (Lower secondary or second stage of
|
952
|
+
basic education)</xsd:documentation>
|
953
|
+
</xsd:annotation>
|
954
|
+
</xsd:enumeration>
|
955
|
+
<xsd:enumeration value="3">
|
956
|
+
<xsd:annotation>
|
957
|
+
<xsd:documentation xml:lang="en">ISCED 3 ((Upper) secondary
|
958
|
+
education)</xsd:documentation>
|
959
|
+
</xsd:annotation>
|
960
|
+
</xsd:enumeration>
|
961
|
+
<xsd:enumeration value="4">
|
962
|
+
<xsd:annotation>
|
963
|
+
<xsd:documentation xml:lang="en">ISCED 4 (Post-secondary non-tertiary
|
964
|
+
education)</xsd:documentation>
|
965
|
+
</xsd:annotation>
|
966
|
+
</xsd:enumeration>
|
967
|
+
<xsd:enumeration value="5">
|
968
|
+
<xsd:annotation>
|
969
|
+
<xsd:documentation xml:lang="en">ISCED 5 (First stage of tertiary
|
970
|
+
education)</xsd:documentation>
|
971
|
+
</xsd:annotation>
|
972
|
+
</xsd:enumeration>
|
973
|
+
<xsd:enumeration value="6">
|
974
|
+
<xsd:annotation>
|
975
|
+
<xsd:documentation xml:lang="en">ISCED 6 (Second stage of tertiary
|
976
|
+
education)</xsd:documentation>
|
977
|
+
</xsd:annotation>
|
978
|
+
</xsd:enumeration>
|
979
|
+
</xsd:restriction>
|
980
|
+
</xsd:simpleType>
|
981
|
+
</xsd:schema>
|