RocketKOR

Acceptance Document Group Object

The Acceptance Document Group object represents details for a category of acceptance documents. This object includes the group name, a list of documents included in the group, and details for each document version.

Attributes

documentGroup

string

Name of the acceptance document group (example: rocketkor).

documentGroupTitle

string

Descriptive name for the acceptance document group.

documents

array

List of the acceptance documents in the group.

id

string

Semantic ID of the document. Identifies the type of acceptance document (example: kor-privacy-policy).

title

string

Descriptive name for the acceptance document (example: Privacy policy).

versions

object

Details for each version of the acceptance document.

version

string

Semantic document version. Identifies the version number of the acceptance document.

createdAt

string (date-time)

Date and time the document version was created.

isCurrentVersion

boolean

Whether this is the latest version of the acceptance document.

isRequiredMinimumVersion

boolean

Whether this is the minimum version of the document.

An acceptance document has a “minimum version”, which is the earliest version of the document that is considered valid. All previous versions of the document are considered invalid. When accepting the document, the Customer must accept the minimum version or a later version.

Acceptance Document Group Object

				
					{
  "documentGroup": "rocketkor",
  "documentGroupTitle": "Rocketkor document group",
  "documents": [
    {
      "id": "rkor-privacy-policy",
      "title": "Privacy policy",
      "versions": [
        {
          "version": "1",
          "createdAt": "2024-01-07T16:26:22.514Z",
          "isCurrentVersion": true,
          "isRequiredMinimumVersion": true
        }
      ]
    }
  ]
}