Feed (XML)
The Atom data formats provide a format for web content and metadata syndication. The XML media type is defined by
RFC 4287. The JSON data format is specific to GEDCOM X and is a
translation to JSON from the XML.
Namespace: | http://www.w3.org/2005/Atom |
URI: | http://www.w3.org/2005/AtomFeed |
Extends: | ExtensibleElement |
Properties
Name |
Type |
Description |
|
author |
list of
Person
|
The author of the feed. |
|
contributor |
list of
Person
|
information about a category associated with the feed |
|
generator |
Generator
|
identifies the agent used to generate the feed |
|
icon |
anyURI
|
identifies an image that provides iconic visual identification for the feed. |
|
id |
anyURI
|
a permanent, universally unique identifier for the feed. |
|
results |
int
|
The total number of results available, if this feed is supplying a subset of results, such as for a query. |
|
index |
int
|
The index of the first entry in this page of data, if this feed is supplying a page of data. |
|
link |
list of
Link
|
a reference from a feed to a Web resource. |
|
logo |
anyURI
|
identifies an image that provides visual identification for the feed. |
|
rights |
string
|
information about rights held in and over the feed. |
|
subtitle |
string
|
a human-readable description or subtitle for the feed. |
|
title |
string
|
a human-readable title for the feed |
|
updated |
dateTime
|
the most recent instant in time when the feed was modified in a way the publisher considers significant. |
|
entry |
list of
Entry
|
The entries in the feed. |
|
Properties inherited from CommonAttributes |
base |
anyURI
|
The base. |
|
lang |
string
|
The language. |
|
Example
<feed base="..." xml:lang="..." xmlns="http://www.w3.org/2005/Atom">
<author>
<name>...</name>
<uri>...</uri>
<email>...</email>
<extension1>...</extension1>
<extension2>...</extension2>
</author>
<contributor>
<name>...</name>
<uri>...</uri>
<email>...</email>
<extension1>...</extension1>
<extension2>...</extension2>
</contributor>
<generator base="..." xml:lang="..." uri="..." version="...">...</generator>
<icon>...</icon>
<id>...</id>
<results xmlns="http://gedcomx.org/v1/">...</results>
<index xmlns="http://gedcomx.org/v1/">...</index>
<link accept="..." allow="..." count="..." href="..." hreflang="..." offset="..." rel="..." results="..." template="..." title="..." type="..."/>
<logo>...</logo>
<rights>...</rights>
<subtitle>...</subtitle>
<title>...</title>
<updated>...</updated>
<entry>
<author>
<name>...</name>
<uri>...</uri>
<email>...</email>
</author>
<category label="..." scheme="..." term="..."/>
<confidence xmlns="http://gedcomx.org/v1/">4</confidence>
<content type="...">
<gedcomx xmlns="http://gedcomx.org/v1/"/>
</content>
<contributor>
<name>...</name>
<uri>...</uri>
<email>...</email>
</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>...</extension1>
<extension2>...</extension2>
</entry>
<extension1 xmlns="">...</extension1>
<extension2 xmlns="">...</extension2>
</feed>