aboutsummaryrefslogtreecommitdiff
path: root/id/server/modules/eID4UExtensions/src/main/resources/schema/eid4u/external/EmploymentExperience.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/modules/eID4UExtensions/src/main/resources/schema/eid4u/external/EmploymentExperience.xsd')
-rw-r--r--id/server/modules/eID4UExtensions/src/main/resources/schema/eid4u/external/EmploymentExperience.xsd65
1 files changed, 65 insertions, 0 deletions
diff --git a/id/server/modules/eID4UExtensions/src/main/resources/schema/eid4u/external/EmploymentExperience.xsd b/id/server/modules/eID4UExtensions/src/main/resources/schema/eid4u/external/EmploymentExperience.xsd
new file mode 100644
index 000000000..0aea91142
--- /dev/null
+++ b/id/server/modules/eID4UExtensions/src/main/resources/schema/eid4u/external/EmploymentExperience.xsd
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsd:schema
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns="http://europass.cedefop.europa.eu/Europass"
+ targetNamespace="http://europass.cedefop.europa.eu/Europass"
+ elementFormDefault="qualified">
+
+ <!--
+ /*
+ * Copyright European Union 2002-2014
+ *
+ *
+ * Licensed under the EUPL, Version 1.1 or – as soon they
+ * will be approved by the European Commission - subsequent
+ * versions of the EUPL (the "Licence");
+ * You may not use this work except in compliance with the
+ * Licence.
+ * You may obtain a copy of the Licence at:
+ *
+ * http://ec.europa.eu/idabc/eupl.html
+ *
+ *
+ * Unless required by applicable law or agreed to in
+ * writing, software distributed under the Licence is
+ * distributed on an "AS IS" basis,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied.
+ * See the Licence for the specific language governing
+ * permissions and limitations under the Licence.
+ *
+ */
+ -->
+ <xsd:include schemaLocation="classpath:/schema/eid4u/external/Experience.xsd"/>
+ <xsd:include schemaLocation="classpath:/schema/eid4u/external/OccupationalField.xsd"/>
+ <xsd:include schemaLocation="classpath:/schema/eid4u/external/Organisation.xsd"/>
+
+ <xsd:complexType name="WorkExperienceType">
+ <xsd:annotation>
+ <xsd:documentation xml:lang="en">
+ Extends the generic ExperienceType to include information about a work experience.
+ Contains information about the period the experience took place and the title of the position, as well as the activities/ tasks and information of the employer.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="ExperienceType">
+ <xsd:sequence>
+ <xsd:element name="Position" type="OccupationalFieldType" minOccurs="0"/>
+ <xsd:element name="Activities" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="Employer" type="EmployerType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+ <xsd:complexType name="WorkExperienceListType">
+ <xsd:annotation>
+ <xsd:documentation xml:lang="en">
+ Contains an list of work experiences. The order of those experiences is defined by the related printing preferences.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="WorkExperience" type="WorkExperienceType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>