# Subject Summary

Fetches the summary for a given subject. Throws a Forbidden error if the summary feature is disabled for the project.

Endpoint: GET /api/v1/patient-registry/summary/subject/{subjectId}
Version: V1
Security: bearer

## Path parameters:

  - `subjectId` (string, required)

## Header parameters:

  - `ProjectId` (string, required)

## Response 200 fields (application/json):

  - `overview` (string, required)
    An overview or summary of the subject.
    Example: This is a summary of the subject's details.

  - `referencedDocuments` (array, required)
    A list of documents referenced in the subject summary.
    Example: [{"documentId":"doc12345","referencedStrings":["string1","string2"]},{"documentId":"doc67890","referencedStrings":["stringA","stringB"]}]

  - `referencedDocuments.documentId` (string, required)
    The unique identifier of the document.
    Example: doc12345

  - `referencedDocuments.referencedStrings` (array, required)
    A list of strings referenced in the document.
    Example: ["string1","string2","string3"]

