> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# Resource: Quiz Submissions

# Type: Quiz Submission Object

# Link: https://dev.wix.com/docs/api-reference/business-management/online-programs/quiz-submissions/quiz-submission-object.md

## Description: Answers submitted to a quiz within an Online Program, together with their evaluation results.

## Schema:

```json
 Type: Quiz Submission Object | type: QuizSubmission
 Description: Answers submitted to a quiz within an Online Program, together with their evaluation results.
       - name: id  | type: string | description: Quiz submission ID.
       - name: quizId  | type: string | description: Quiz ID.
       - name: groupId  | type: string | description: Groups attempts for the same submitter when enforcing the quiz's attempt limit. If omitted, attempts are counted by quizId and submitter, and groupId remains absent in the response. If provided, counting uses groupId and submitter without restricting by quizId.
           - name: value  | type: string | description: 
       - name: earnedGrade  | type: number | description: Integer percentage of submitted answers evaluated as correct, rounded down. Non-evaluable answers count as correct, including answers to questions without a stored correct-answer key. Question scores are not used as weights. Omitted when the quiz has no passing grade.
           - name: value  | type: number | description: 
       - name: passingGrade  | type: number | description: Passing-grade threshold copied from the quiz settings when the submission is created. Compared with earnedGrade on the same percentage scale. Omitted if the quiz has no passing grade; later quiz-setting changes do not recalculate this submission.
       - name: answers  | type: object | description: Answers keyed by each quiz question's target, not its field ID. Each response answer includes the corresponding fieldId. An unrecognized target causes submission creation to fail.
       - name: createdDate  | type: string | description: Date and time the quiz submission was created.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: updatedDate  | type: string | description: Date and time the quiz submission was last updated.
       - name: revision  | type: string | description: Revision number of the backing form submission. Increases when that submission is updated.
           - name: value  | type: string | description: 
       - name: extendedFields  | type: ExtendedFields | description: Custom field data for the quiz submission. [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions.md) must be configured in the app dashboard before they can be accessed with API calls. Set extendedFields when creating a submission; Create, Get, and Delete return the stored values, subject to Data Extensions schema and access permissions.
           - name: namespaces  | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured.  You can only access fields for which you have the appropriate permissions.  Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md).
       - name: evaluationStatus  | type: string | description: Stored evaluation result. An unspecified value must not be treated as failure or completion.
           enum: FAILED, COMPLETED

```