source: metadata/trunk/toolkit/components/clarin-nl/session-text/cmdi-actor.xml @ 266

Last change on this file since 266 was 266, checked in by dietuyt, 14 years ago

Changes from INL to CLARIN-NL components

File size: 4.6 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<CMD_ComponentSpec xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" isProfile="false"
3                   xsi:schemaLocation="http://www.clarin.eu/cmd http://www.clarin.eu/cmd/general-component-schema.xsd">
4   
5    <Header>
6        <Name>Actor</Name>
7        <Description>Component contains information about a speaker in a speech corpus, e.g. age, education, language(s) of the speaker</Description>
8    </Header>
9
10    <CMD_Component name="Actor">
11
12        <CMD_Element name="Role" ValueScheme="string"
13                   ConceptLink="http://www.isocat.org/datcat/DC-2559"
14                   CardinalityMin="0"
15                   CardinalityMax="unbounded"/>
16        <CMD_Element name="Name" ValueScheme="string"
17                   ConceptLink="http://www.isocat.org/datcat/DC-2557"
18                   CardinalityMin="0"
19                   CardinalityMax="1"/>
20        <CMD_Element name="FullName" ValueScheme="string"
21                   ConceptLink="http://www.isocat.org/datcat/DC-2556"
22                   CardinalityMax="1"/>
23        <CMD_Element name="Code" ValueScheme="string"
24                   ConceptLink="http://www.isocat.org/datcat/DC-2552"
25                   CardinalityMax="1"/>
26        <CMD_Element name="SocialFamilyRole" ValueScheme="string"
27                   ConceptLink="http://www.isocat.org/datcat/DC-2561"
28                   CardinalityMax="unbounded"/>
29        <CMD_Element name="EthnicGroup" ValueScheme="string"
30                   ConceptLink="http://www.isocat.org/datcat/DC-2555"
31                   CardinalityMin="0"
32                   CardinalityMax="unbounded"/>
33        <CMD_Element name="Age" ValueScheme="decimal"
34                   ConceptLink="http://www.isocat.org/datcat/DC-2550"
35                   CardinalityMax="1"> </CMD_Element>
36        <CMD_Element name="BirthYear" ValueScheme="gYear"
37                   ConceptLink="http://www.isocat.org/datcat/DC-2551"
38                   CardinalityMin="0"
39                   CardinalityMax="1"> </CMD_Element>
40
41        <CMD_Element name="Sex" ConceptLink="http://www.isocat.org/datcat/DC-2560"
42                   CardinalityMax="1">
43            <ValueScheme>
44                <enumeration>
45                    <item>Male</item>
46                    <item>Female</item>
47                    <item>NAP</item>
48                    <item ConceptLink="http://www.isocat.org/datcat/DC-2591">Unknown</item>
49                    <item ConceptLink="http://www.isocat.org/datcat/DC-2592">Unspecified</item>
50                </enumeration>               
51            </ValueScheme>
52        </CMD_Element>
53        <CMD_Element name="Education" ValueScheme="string"
54                   ConceptLink="http://www.isocat.org/datcat/DC-2554"
55                   CardinalityMin="0"
56                   CardinalityMax="unbounded"/>
57        <CMD_Element name="Profession" ValueScheme="string"
58                   ConceptLink="http://www.isocat.org/datcat/DC-2558"
59                   CardinalityMin="0"
60                   CardinalityMax="unbounded"/>
61        <CMD_Element name="Anonymized" ValueScheme="boolean"
62                   ConceptLink="http://www.isocat.org/datcat/DC-2548"
63                   CardinalityMax="1">
64            <ValueScheme>
65                <enumeration>
66                    <item>true</item>
67                    <item>false</item>
68                    <item ConceptLink="http://www.isocat.org/datcat/DC-2591">Unknown</item>
69                    <item ConceptLink="http://www.isocat.org/datcat/DC-2592">Unspecified</item>
70                </enumeration>               
71            </ValueScheme>
72        </CMD_Element>
73        <!-- within the component Actor the component BirthCountry identifies the country in which the speaker was born --> 
74        <CMD_Component name="BirthCountry" CardinalityMin="0" CardinalityMax="1">
75            <CMD_Component filename="http://www.clarin.eu/cmd/components/clarin/iso-3166-1-alpha2.xml"
76                        CardinalityMin="1"
77                        CardinalityMax="1"/>
78        </CMD_Component>
79        <!-- within the component Actor the component Description provides the possibility to add extra information about a speaker -->   
80        <CMD_Component filename="http://www.clarin.eu/cmd/components/clarin-nl/common/cmdi-description.xml"
81                     CardinalityMin="0"
82                     CardinalityMax="1"/>     
83        <!-- the component ActorLanguages identifies the language(s) used by a speaker and indicates which language is the mother tongue and/or the primary language of the speaker -->
84        <CMD_Component filename="cmdi-actorlanguages.xml" CardinalityMax="1"/>
85       
86       
87    </CMD_Component>
88
89</CMD_ComponentSpec>
Note: See TracBrowser for help on using the repository browser.