Entry (XML)
The "atom:entry" element represents an individual entry, acting as a container for metadata and data associated with the entry.
| Namespace: | http://www.w3.org/2005/Atom |
| URI: | http://www.w3.org/2005/AtomEntry |
| Extends: | ExtensibleElement |
Properties
| Name |
Type |
Description |
|
| author |
list of
Person
|
The author of the entry. |
|
| category |
list of
Category
|
information about a category associated with an entry. |
|
| confidence |
ResultConfidence
|
The confidence of the result, if this entry represents a search result. |
|
| content |
Content
|
The content of the entry. |
|
| contributor |
list of
Person
|
information about a category associated with the entry |
|
| id |
anyURI
|
a permanent, universally unique identifier for the entry. |
|
| link |
list of
Link
|
a reference from a entry to a Web resource. |
|
| published |
dateTime
|
instant in time associated with an event early in the life cycle of the entry. |
|
| rights |
string
|
information about rights held in and over the entry. |
|
| score |
float
|
The relevance score, if this entry represents a search result. The value of this score is implementation-specific. |
|
| title |
string
|
a human-readable title for the entry |
|
| updated |
dateTime
|
the most recent instant in time when the entry was modified in a way the publisher considers significant. |
|
| Properties inherited from CommonAttributes |
| base |
anyURI
|
The base. |
|
| lang |
string
|
The language. |
|
Example
<entry base="..." xml:lang="..." xmlns="http://www.w3.org/2005/Atom">
<author>
<name>...</name>
<uri>...</uri>
<email>...</email>
<extension1>...</extension1>
<extension2>...</extension2>
</author>
<category base="..." label="..." xml:lang="..." scheme="..." term="..."/>
<confidence xmlns="http://gedcomx.org/v1/">4</confidence>
<content type="...">
<gedcomx xml:lang="..." xmlns="http://gedcomx.org/v1/">
<attribution/>
<person/>
<relationship/>
<sourceDescription/>
<agent/>
<event/>
<place/>
<document/>
</gedcomx>
</content>
<contributor>
<name>...</name>
<uri>...</uri>
<email>...</email>
<extension1>...</extension1>
<extension2>...</extension2>
</contributor>
<id>...</id>
<link accept="..." allow="..." count="..." href="..." hreflang="..." offset="..." rel="..." results="..." template="..." title="..." type="..."/>
<published>...</published>
<rights>...</rights>
<score xmlns="http://gedcomx.org/v1/">...</score>
<title>...</title>
<updated>...</updated>
<extension1 xmlns="">...</extension1>
<extension2 xmlns="">...</extension2>
</entry>