Document
The document class contains methods and data for using documents just as you would in the UI. Everything can be modified such as a document's content, subject, tags, and comments. Metadata is available, e.g. the author, the publish date, the number of people following the document, etc.
Examples:
Example JSON
JSON including important fields and a Document's resources. See the tables below for a list of all fields and resources.
{ "type" : "document", "status" : "published", "subject" : "My First Document", "content" : { "type" : "text/html", "text" : "<p>Some interesting document text</p>" }, "authorship" : "open", "author" : { "displayName" : "Administrator", }, "visibility" : "all", "restrictComments" : false, "viewCount" : 0, "replyCount" : 0, "followerCount" : 0, "likeCount" : 0, "published" : "2012-06-27T22:53:30.370+0000", "updated" : "2012-06-27T22:53:30.491+0000", "categories" : [ "Cars" ], "tags" : [ ], "attachments" : [ ], "resources" : { "versions" : { "ref" : "http://example.jiveon.com/api/core/v3/versions/1006", "allowed" : [ "GET" ] }, "likes" : { "ref" : "http://example.jiveon.com/api/core/v3/contents/1006/likes", "allowed" : [ "GET" ] }, "read" : { "ref" : "http://example.jiveon.com/api/core/v3/contents/1006/read", "allowed" : [ "DELETE", "POST" ] }, "self" : { "ref" : "http://example.jiveon.com/api/core/v3/contents/1006", "allowed" : [ "DELETE", "GET", "PUT" ] }, "html" : { "ref" : "http://example.jiveon.com/docs/DOC-1001", "allowed" : [ "GET" ] }, "attachments" : { "ref" : "http://example.jiveon.com/api/core/v3/attachments/contents/1006", "allowed" : [ "GET", "POST" ] }, "followingIn" : { "ref" : "http://example.jiveon.com/api/core/v3/contents/1006/followingIn", "allowed" : [ "GET" ] }, "comments" : { "ref" : "http://example.jiveon.com/api/core/v3/contents/1006/comments", "allowed" : [ "GET", "POST" ] } }, "id" : "1001" }
Simple Document Creation
POST to /contents creates a new document. The minimum set of fields you must include are:
{ "content": { "type": "text/html", "text": "<body><p>Some interesting text</p></body>" }, "subject": "New Document", "type": "document" }See Document Use Cases for full details on creating documents programmatically.
Retrieve Document
GET to /contents/{contentID} to return a given document. The service URL can be found in the self resource under resources.
Update Document
After you have retrieved a document and made the desired changes, PUT to /contents/{contentID} passing the updated information in the request body. The service URL can be found in the self resource under resources.
Delete Document
DELETE to /contents/{contentID} to delete the specified document. The service URL can be found in the self resource under resources.
Retrieve Document Comments
GET to /contents/{contentID}/comments to return comments on a given document. This service allows you to retrieve some or all comments depending on the parameters. The service URL can be found in the comments resource under resources.
See Document Use Cases for full details on document comments.
Retrieve document versions
GET to /versions/{contentID} to return information about versions of a given document. Every time a document gets updated, a new version will be created. After you got the information from this service, it is possible to restore a previous version by doing a POST to /versions/{contentID}/{versionID}.
Fields
Field | Type | Mode † | Description |
---|---|---|---|
approvers | Person[] | optional | List of people who are approvers on the content of this document. |
attachments | Attachment[] | optional | List of attachments to this document. |
| Person | read-only | Author of this content object. |
| Person[] | optional | List of people who are authors on this content. Authors are allowed to edit the content. This value is used only when authorship is limited. |
| String | optional | The authorship policy for this content.
|
categories | String[] | optional | Categories associated with this object. Places define the list of possible categories. |
content | ContentBody | required | Content of this content object. |
followerCount | Integer | read-only | Number of people following this object. Availability:Will be present only for object types that support being followed. |
fromQuest | String | optional | Flag indicating that this document was created as part of a quest. |
highlightBody | String | read-only | Highlight snippet of a search match in the body or description. Availability:Will be present in search results only. |
highlightSubject | String | read-only | Highlight snippet of a search match in the subject or name. Availability:Will be present in search results only. |
highlightTags | String | read-only | Highlight snippet of a search match in tags. Availability:Will be present in search results only. |
id | String | read-only | Identifier (unique within an object type and Jive instance) of this object. This field is internal to Jive and should not be confused with contentID or placeID used in URIs. |
likeCount | Integer | read-only | Number of people who have liked this object. Availability:Will be present only for object types that support being liked. |
parent | String | optional | URI of the parent place of this content object. When visibility is place then the URI points to a place (and is required on create). Otherwise, this field is not part of the returned JSON (and must not be included on create). |
parentContent | Summary | read-only | Summary information about the content object that is the parent of this object. Availability:Will be present in search results only. |
parentPlace | Summary | read-only | Summary information about the place that contains this object. Availability:Will be present in search results only. |
published | ISO 8601 Date | read-only | Date and time when this content object was originally created. |
replyCount | Integer | read-only | Number of replies to this object. Availability:Will be present only for object types that support replies. |
resources | Object | read-only | Resource links (and related permissions for the requesting person) relevant to this object. |
restrictComments | Boolean | optional | Flag indicating that old comments will be visible but new comments are not allowed. If not restricted then anyone with appropriate permissions can comment on the content. |
status | String | read-only | State of this document.
|
subject | String | required | Subject of this content object. |
| String[] | optional | Tags associated with this object. Availability:Will be present only for object types that support tags |
type | String | required | The object type of this object ("document"). This field is required when creating new content. |
updated | ISO 8601 Date | read-only | Date and time this content object was most recently updated. |
updater | Person | read-only | The last person that updated this document. If not present, the last person to update this document
was the person referenced in the |
users | Person[] | optional | The list of users that can see the content. On create or update, provide a list of Person URIs or Person entities. On get, returns a list of Person entities. This value is used only when visibility is people. |
viewCount | Integer | read-only | Number of times this content object has been viewed. Availability:Will be present only for objects that support view counts |
visibility | String | optional | The visibility policy for this content object. Valid values are:
|
visibleToExternalContributors | Boolean | read-only | Flag indicating that this content object is potentially visible to external contributors. |
Resources
Resource | Method | Description |
---|---|---|
attachments | GET | Return a list of attachments associated to this document. Retrieves: |
comments | POST | Add a comment about this content object. The minimum JSON object needed to create a comment is: { "content": {"type": "text/html", "text": " Takes:
Retrieves: |
comments | GET | Return a paginated list of the comments about this content object. Retrieves: |
followers | GET | Return a paginated list of the people following this content. Retrieves:Since: 3.5 |
followingIn | GET | Return the list of custom streams in which the requesting person is following this document (if any). Retrieves: |
html | GET | Return the HTML representation of this content object. |
likes | POST | Register that the requesting person likes this document. Availability:Must be authenticated, must not be your own document, and must not have liked this document already |
likes | GET | Return a paginated list of people who like this document. Retrieves: |
read | POST | Mark this document as having been read. Since: 3.2 |
read | DELETE | Mark this document as having not been read. Since: 3.2 |
self | GET | Return an updated version of this content object. Retrieves: |
self | PUT | Update the information about this content object. Retrieves: |
self | DELETE | Delete this content object and any related comments and other related information. |
likes | DELETE | Delete the like of this document by the requesting person. Availability:Must be authenticated, and must have liked this document already |
versions | GET | Return a paginated list of versions of this document. Retrieves: |