Question & Answer JSON File Format

Overview

This appendix documents the top-level JSON file format for the Question & Answer export type. The file wraps an array of assessment objects, each containing its associated comments, tasks, and survey responses.

📋 Referenced schemas: Comment JSON, Task JSON, and Survey (Question & Answer) JSON are defined in the Assessment Summary JSON File Format appendix.

JSON Schema
Question & Answer File
{
  assessments: [
    {
      assessment_id:     UUID,
      projectIdentifier: String,
      comments: [
        {
          <Comment JSON>
        }
      ],
      tasks: [
        {
          <Task JSON>
        }
      ],
      surveys: [
        {
          <Survey (Question & Answer) JSON>
        }
      ]
    }
  ]
}
TrustArc  ·  Assessment API — Appendix: Question & Answer JSON File Format  ·  support.trustarc.com