Discussion (XML)
A discussion.
| Namespace: | http://familysearch.org/v1/ |
| URI: | http://familysearch.org/v1/Discussion |
| Extends: | HypermediaEnabledData |
Properties
| Name |
Type |
Description |
|
| title |
string
|
get the one-line summary or "subject" of the discussion |
|
| details |
string
|
Get detailed text of the discussion |
|
| created |
dateTime
|
Get the date of discussion creation |
|
| contributor |
ResourceReference
|
Get the contributor who submitted this discussion |
|
| modified |
dateTime
|
Last date of any change to comments or discussion details |
|
| numberOfComments |
int
|
Get the number of comments associated with this discussion |
|
| comment |
list of
Comment
|
The comments on this discussion. |
|
| Properties inherited from HypermediaEnabledData |
| link |
list of
Link
|
The list of hypermedia links. Links are not specified by GEDCOM X core, but as extension elements by GEDCOM X RS. |
|
| Properties inherited from ExtensibleData |
| id |
string
|
A local, context-specific id for the data. |
|
Example
<discussion id="..." xmlns="http://familysearch.org/v1/">
<title>...</title>
<details>...</details>
<created>...</created>
<contributor resource="..." resourceId="..."/>
<modified>...</modified>
<numberOfComments>...</numberOfComments>
<comment>
<text>...</text>
<created>...</created>
<contributor resource="..." resourceId="..."/>
<link xmlns="http://gedcomx.org/v1/"/>
</comment>
<link accept="..." allow="..." count="..." href="..." hreflang="..." offset="..." rel="..." results="..." template="..." title="..." type="..." xmlns="http://gedcomx.org/v1/"/>
<extension1 xmlns="">...</extension1>
<extension2 xmlns="">...</extension2>
</discussion>