| <entry> (entry) contains a single structured entry in any kind of lexical resource, such as a dictionary or lexicon. [10.1. Dictionary Body and Overall Structure 10.2. The Structure of Dictionary Entries] |
| Module | dictionaries — Specification |
| Attributes | | xml:id | (identifier) provides a unique identifier for the element bearing the attribute. | | xml:lang | (language) indicates the language of the element content using a ‘tag’ generated according to BCP 47. | | type | | Status | Required | | Suggested values include: | - mainEntry
- [Default]
- wordFamily
- homonymicEntry
- relatedEntry
|
|
|
| Member of | |
| Contained by | |
| May contain | |
| Note | Like all elements, <entry> inherits an xml:id attribute from the class global. No restrictions are placed on the method used to construct xml:ids; one convenient method is to use the orthographic form of the headword, appending a disambiguating number where necessary. Identification codes are sometimes included on machine-readable tapes of dictionaries for in-house use. It is recommended to use the <sense> element even for an entry that has only one sense to group together all parts of the definition relating to the word sense since this leads to more consistent encoding across entries. |
| Example | <entry>
<form>
<orth>disproof</orth>
<pron>dIs"pru:f</pron>
</form>
<gramGrp>
<pos>n</pos>
</gramGrp>
<sense n="1">
<def>facts that disprove something.</def>
</sense>
<sense n="2">
<def>the act of disproving.</def>
</sense>
</entry>
|
| Content model |
<content>
<alternate minOccurs="1"
maxOccurs="unbounded">
<elementRef key="sense"/>
<elementRef key="pc"/>
<classRef key="model.entryPart.top"/>
<classRef key="model.global"/>
<classRef key="model.ptrLike"/>
</alternate>
</content>
⚓ |
| Schema Declaration |
element entry
{
att.global.attribute.n,
att.global.attribute.xmlbase,
att.global.analytic.attribute.ana,
att.global.change.attribute.change,
att.global.facs.attribute.facs,
att.global.linking.attribute.corresp,
att.global.linking.attribute.synch,
att.global.linking.attribute.sameAs,
att.global.linking.attribute.copyOf,
att.global.linking.attribute.next,
att.global.linking.attribute.prev,
att.global.linking.attribute.exclude,
att.global.linking.attribute.select,
att.global.rendition.attribute.rend,
att.global.rendition.attribute.style,
att.global.rendition.attribute.rendition,
att.global.responsibility.attribute.cert,
att.global.responsibility.attribute.resp,
att.global.source.attribute.source,
att.sortable.attributes,
attribute xml:id { text },
attribute xml:lang { text },
attribute type
{
"mainEntry" | "wordFamily" | "homonymicEntry" | "relatedEntry" | xsd:Name
},
( sense | pc | model.entryPart.top | model.global | model.ptrLike )+
}⚓
|