Locked History Actions

attachment:prolmf.xsd of Prolexbase

Attachment 'prolmf.xsd'

Download

   1 <?xml version="1.0" encoding="UTF-8"?>
   2 <schema xmlns="http://www.w3.org/2001/XMLSchema"
   3     xmlns:pxb="http://www.cnrtl.fr/lexiques/prolex/"
   4     targetNamespace="http://www.cnrtl.fr/lexiques/prolex/" elementFormDefault="qualified">
   5     
   6     <element name="LexicalRessource" type="pxb:LexicalRessource_type">
   7         <key name="senseAxis_key">
   8             <selector xpath="./pxb:SenseAxis"/>
   9             <field xpath="@id"/>
  10         </key>
  11         <key name="senseAxisRelation_key">
  12             <selector xpath="./pxb:SenseAxis/pxb:SenseAxisRelation"/>
  13             <field xpath="@id"/>
  14         </key>
  15         <keyref name="senseAxis_senseAxisRelation_references" refer="pxb:senseAxis_key">
  16             <selector xpath="./pxb:SenseAxis/pxb:SenseAxisRelation"/>
  17             <field xpath="@target"/>
  18         </keyref>
  19         <keyref name="senseAxis_sense_references" refer="pxb:senseAxis_key">
  20             <selector xpath="./pxb:Lexicon/pxb:LexicalEntry/pxb:Sense"/>
  21             <field xpath="@refSenseAxis"/>
  22         </keyref>
  23         <keyref name="senseAxisRelation_syntacticBehaviour_references" refer="pxb:senseAxisRelation_key">
  24             <selector xpath="./pxb:Lexicon/pxb:LexicalEntry/pxb:Sense/pxb:SyntacticBehaviour"/>
  25             <field xpath="@refSenseAxisRelation"/>
  26         </keyref>     
  27     </element>
  28     
  29     <element name="GlobalInformation" type="pxb:GlobalInformation_type"/>
  30     
  31     <element name="Lexicon" type="pxb:Lexicon_type">
  32         <key name="subcategorizationFrame_key">
  33             <selector xpath="./pxb:SubcategorisationFrame"/>
  34             <field xpath="@id"/>
  35         </key>
  36         <keyref name="subcategorizationFrame_references" refer="pxb:subcategorizationFrame_key">
  37             <selector xpath="./pxb:LexicalEntry/pxb:Sense/pxb:SyntacticBehaviour"/>
  38             <field xpath="@refSubcategorizationFrame"/>
  39         </keyref>
  40     </element>
  41     
  42     <element name="LexicalEntry" type="pxb:LexicalEntry_type"/>
  43     
  44     <element name="Lemma" type="pxb:Word_type"/>
  45     
  46     <element name="WordForm" type="pxb:WordForm_type"/>
  47     
  48     <element name="FormRepresentation" type="pxb:Word_type"/>
  49     
  50     <element name="Sense" type="pxb:Sense_type"/>
  51     
  52     <element name="MonolingualExternalRef" type="pxb:ExternalRef_type"/>
  53     
  54     <element name="SyntacticBehaviour" type="pxb:SyntacticBehaviour_type"/>
  55     
  56     <element name="SubcategorizationFrame" type="pxb:SubcategorizationFrame_type"/>
  57     
  58     <element name="SenseAxis" type="pxb:SenseAxis_type"/>
  59     
  60     <element name="SenseAxisRelation" type="pxb:SenseAxisRelation_type"/>
  61     
  62     <element name="InterlingualExternalRef" type="pxb:ExternalRef_type"/>
  63     
  64     <complexType name="LexicalRessource_type">
  65         <sequence>
  66             <element ref="pxb:GlobalInformation"/>
  67             <element ref="pxb:Lexicon" maxOccurs="unbounded"/>
  68             <element ref="pxb:SenseAxis" maxOccurs="unbounded"/>
  69         </sequence>
  70     </complexType>
  71     
  72     <complexType name="GlobalInformation_type">
  73         <attribute name="entrySource" type="string" use="required"/>
  74         <attribute name="languageCoding" type="string" use="required"/>
  75         <attribute name="resourceName" type="string" use="required"/>
  76         <attribute name="version" type="string" use="required"/>
  77     </complexType>
  78     
  79     <complexType name="Lexicon_type">
  80         <sequence>
  81             <element ref="pxb:LexicalEntry" maxOccurs="unbounded"/>
  82             <element ref="pxb:SubcategorizationFrame" maxOccurs="unbounded"/>
  83         </sequence>
  84         <attribute name="languageIdentifier" use="required">
  85             <simpleType>
  86                 <restriction base="string">
  87                     <pattern value="[a-z][a-z][a-z]"/>
  88                 </restriction>
  89             </simpleType>
  90         </attribute>
  91         <attribute name="script" type="string" use="optional"/> 
  92     </complexType>
  93     
  94     <complexType name="LexicalEntry_type">
  95         <sequence>
  96             <element ref="pxb:Lemma"/>
  97             <element ref="pxb:WordForm" minOccurs="0" maxOccurs="unbounded"/>
  98             <element ref="pxb:Sense" maxOccurs="unbounded"/>
  99         </sequence>
 100         <attribute name="partOfSpeech" use="required">
 101             <simpleType>
 102                 <restriction base="string">
 103                     <enumeration value="adjective"/>
 104                     <enumeration value="noun"/>
 105                     <enumeration value="prefix"/>
 106                     <enumeration value="verb"/>
 107                 </restriction>
 108             </simpleType>
 109         </attribute>
 110     </complexType>
 111     
 112     <complexType name="Word_type">
 113         <simpleContent>
 114             <extension base="string">
 115                 <attribute name="script" type="string" use="optional"/>
 116                 <attribute name="orthographyName" type="string" use="optional"/>
 117             </extension>
 118         </simpleContent>
 119     </complexType>
 120     
 121     <complexType name="WordForm_type">
 122         <simpleContent>
 123             <extension base="string">
 124                 <attribute name="script" type="string" use="optional"/>
 125                 <attribute name="orthographyName" type="string" use="optional"/>
 126                 <attribute name="grammaticalGender" type="pxb:Gender_type" use="optional"/>
 127                 <attribute name="grammaticalNumber" type="pxb:Number_type" use="optional"/>
 128                 <attribute name="grammaticalTense" type="string" use="optional"/>
 129                 <attribute name="grammaticalMood" type="string" use="optional"/>
 130                 <attribute name="grammaticalPerson" type="string" use="optional"/>
 131             </extension>
 132         </simpleContent>
 133     </complexType>
 134     
 135     <simpleType name="Gender_type">
 136         <restriction base="string">
 137             <enumeration value="masculine"/>
 138             <enumeration value="feminine"/>
 139             <enumeration value="masculineFeminine"/>
 140             <enumeration value="none"/>
 141         </restriction>
 142     </simpleType>
 143     
 144     <simpleType name="Number_type">
 145         <restriction base="string">
 146             <enumeration value="singular"/>
 147             <enumeration value="plural"/>
 148             <enumeration value="singularPlural"/>
 149             <enumeration value="none"/>
 150         </restriction>
 151     </simpleType>
 152     
 153     <complexType name="Sense_type">
 154         <sequence>
 155             <element ref="pxb:SyntacticBehaviour" minOccurs="0" maxOccurs="unbounded"/>
 156             <element ref="pxb:MonolingualExternalRef" minOccurs="0" maxOccurs="unbounded"/>
 157         </sequence>
 158         <attribute name="id" type="integer" use="required"/> 
 159         <attribute name="refSenseAxis" type="integer" use="required"/>
 160         <attribute name="refSense" type="integer" use="required"/>
 161         <attribute name="label" use="optional">
 162             <simpleType>
 163                 <restriction base="string">
 164                     <enumeration value="alias"/>
 165                     <enumeration value="derivative"/>
 166                 </restriction>
 167             </simpleType>
 168          </attribute>
 169          <attribute name="termProvenance" use="required">
 170                 <simpleType>
 171                     <restriction base="string">
 172                         <enumeration value="fullForm"/>
 173                         <enumeration value="abbreviation"/>
 174                         <enumeration value="variant"/>
 175                         <enumeration value="shortForm"/>
 176                         <enumeration value="diatopicQuasiSynonym"/>
 177                         <enumeration value="diastraticQuasiSynonym"/>
 178                         <enumeration value="transcribedForm"/>
 179                         <enumeration value="acronym"/>
 180                         <enumeration value="explanation"/>
 181                         <enumeration value="translationVariant"/>
 182                         <enumeration value="relationalAdjectif"/>
 183                         <enumeration value="possessiveAdjective"/>
 184                         <enumeration value="quasiRelationalAdjective"/>
 185                         <enumeration value="relationalName"/>
 186                         <enumeration value="quasiRelationalName"/>
 187                         <enumeration value="masculineRelationalName"/>
 188                         <enumeration value="feminineRelationalName"/>
 189                         <enumeration value="prefix"/>
 190                     </restriction>
 191                 </simpleType>
 192          </attribute>
 193          <attribute name="frequency" use="required">
 194                 <simpleType>
 195                     <restriction base="string">
 196                         <enumeration value="infrequentlyUsed"/>
 197                         <enumeration value="rarelyUsed"/>
 198                         <enumeration value="commonlyUsed"/>
 199                     </restriction>
 200                 </simpleType>
 201          </attribute>
 202     </complexType>
 203         
 204     <complexType name="ExternalRef_type">
 205         <attribute name="externalSystem" type="string" use="required"/>
 206         <attribute name="externalReference" type="string" use="required"/>
 207     </complexType>
 208     
 209     <complexType name="SyntacticBehaviour_type">
 210         <attribute name="refSubcategorizationFrame" type="string" use="required"/>
 211         <attribute name="refSenseAxisRelation" type="string" use="optional"/>
 212     </complexType>
 213     
 214     <complexType name="SubcategorizationFrame_type">
 215         <simpleContent>
 216             <extension base="string">
 217                 <attribute name="id" type="integer" use="required"/>
 218                 <attribute name="introducer" use="required">
 219                     <simpleType>
 220                         <restriction base="string">
 221                             <enumeration value="determiner"/>
 222                             <enumeration value="locativePreposition"/>
 223                             <enumeration value="classifyingContext"/>
 224                             <enumeration value="accessibilityContext"/>
 225                         </restriction>
 226                     </simpleType>
 227                 </attribute>
 228                 <attribute name="grammaticalGender" type="pxb:Gender_type" use="optional"/>
 229                 <attribute name="grammaticalNumber" type="pxb:Number_type" use="optional"/>
 230                 <attribute name="restrictionRank" type="integer" use="optional"/>
 231             </extension>
 232         </simpleContent>
 233     </complexType>
 234     
 235     <complexType name="SenseAxis_type">
 236         <sequence>
 237             <element ref="pxb:SenseAxisRelation" minOccurs="0" maxOccurs="unbounded"/>
 238             <element ref="pxb:InterlingualExternalRef" minOccurs="0" maxOccurs="unbounded"/>
 239         </sequence>
 240         <attribute name="id" type="integer" use="required"/>
 241     </complexType>
 242     
 243     <complexType name="SenseAxisRelation_type">
 244         <attribute name="id" type="integer" use="required"/>
 245         <attribute name="label" use="required">
 246             <simpleType>
 247                 <restriction base="string">
 248                     <enumeration value="partitiveRelation"/>
 249                     <enumeration value="quasiSynonymy"/>
 250                     <enumeration value="associativeRelation"/>
 251                 </restriction>
 252             </simpleType>
 253         </attribute>
 254         <attribute name="target" type="integer" use="required"/>
 255         <attribute name="subjectField" use="optional">
 256             <simpleType>
 257                 <restriction base="string">
 258                     <enumeration value="relative"/>
 259                     <enumeration value="capital"/>
 260                     <enumeration value="leader"/>
 261                     <enumeration value="founder"/>
 262                     <enumeration value="follower"/>
 263                     <enumeration value="creator"/>
 264                     <enumeration value="manager"/>
 265                     <enumeration value="tenant"/>
 266                     <enumeration value="heir"/>
 267                     <enumeration value="headquaters"/>
 268                     <enumeration value="rival"/>
 269                     <enumeration value="companion"/>
 270                 </restriction>
 271             </simpleType>
 272         </attribute>
 273         <attribute name="usageNote" use="optional">
 274             <simpleType>
 275                 <restriction base="string">
 276                     <enumeration value="diaphasic"/>
 277                     <enumeration value="diachronic"/>
 278                     <enumeration value="diastratic"/>
 279                 </restriction>
 280             </simpleType>
 281         </attribute>
 282     </complexType>
 283     
 284 </schema>

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2014-12-29 14:16:14, 1144.8 KB) [[attachment:prolexbase-polish-inflected.tar.gz]]
  • [get | view] (2014-12-29 14:16:14, 213.5 KB) [[attachment:prolexbase-schema.tar.gz]]
  • [get | view] (2014-12-29 14:16:14, 1317.0 KB) [[attachment:prolexbase.documentation.pdf]]
  • [get | view] (2014-12-29 14:16:14, 6370.5 KB) [[attachment:prolexbase_en_fr_pl_20130204.sql.tar.gz]]
  • [get | view] (2014-12-29 14:16:14, 12.4 KB) [[attachment:prolmf.xsd]]
 All files | Selected Files: delete move to page

You are not allowed to attach a file to this page.