Entry (JSON)
The "atom:entry" element represents an individual entry, acting as a container for metadata and data associated with the entry.
Properties
Name |
Type |
Description |
|
links |
map of
Link
|
The list of hypermedia links. Links are not specified by GEDCOM X core, but as extension elements by GEDCOM X RS. |
|
authors |
array of
Person
|
The author of the entry. |
|
categories |
array of
Category
|
information about a category associated with an entry. |
|
content |
Content
|
The content of the entry. |
|
contributors |
array of
Person
|
information about a category associated with the entry |
|
id |
string
|
a permanent, universally unique identifier for the entry. |
|
score |
number
|
The relevance score, if this entry represents a search result. The value of this score is implementation-specific. |
|
confidence |
ResultConfidence
|
The confidence of the result, if this entry represents a search result. |
|
published |
number
|
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. |
|
title |
string
|
a human-readable title for the entry |
|
updated |
number
|
the most recent instant in time when the entry was modified in a way the publisher considers significant. |
|
Properties inherited from CommonAttributes |
lang |
string
|
The language. |
|
base |
string
|
The base. |
|
Example
{
"links" : {
"property1" : {
"href" : "...",
"template" : "...",
"title" : "...",
"type" : "...",
"accept" : "...",
"allow" : "...",
"hreflang" : "...",
"count" : 12345,
"offset" : 12345,
"results" : 12345
},
"property2" : {
"href" : "...",
"template" : "...",
"title" : "...",
"type" : "...",
"accept" : "...",
"allow" : "...",
"hreflang" : "...",
"count" : 12345,
"offset" : 12345,
"results" : 12345
}
},
"authors" : [ {
"name" : "...",
"uri" : "...",
"email" : "...",
"lang" : "...",
"base" : "..."
}, {
"name" : "...",
"uri" : "...",
"email" : "...",
"lang" : "...",
"base" : "..."
} ],
"categories" : [ {
"term" : "...",
"scheme" : "...",
"label" : "...",
"lang" : "...",
"base" : "..."
}, {
"term" : "...",
"scheme" : "...",
"label" : "...",
"lang" : "...",
"base" : "..."
} ],
"content" : {
"gedcomx" : {
"attribution" : { },
"persons" : [ { }, { } ],
"relationships" : [ { }, { } ],
"sourceDescriptions" : [ { }, { } ],
"agents" : [ { }, { } ],
"events" : [ { }, { } ],
"places" : [ { }, { } ],
"documents" : [ { }, { } ],
"lang" : "...",
"links" : {
"property1" : { },
"property2" : { }
},
"id" : "..."
}
},
"contributors" : [ {
"name" : "...",
"uri" : "...",
"email" : "...",
"lang" : "...",
"base" : "..."
}, {
"name" : "...",
"uri" : "...",
"email" : "...",
"lang" : "...",
"base" : "..."
} ],
"id" : "...",
"score" : 12345.0,
"confidence" : "4",
"published" : 12345,
"rights" : "...",
"title" : "...",
"updated" : 12345,
"lang" : "...",
"base" : "..."
}