v1

latestOpenAPI 3.0.02026-07-132990743.4 KB
Patients

Get patient statistics

Get statistics about the given patient

get/patients/{id}/statistics

Path parameters

idstring required

Orthanc identifier of the patient of interest

Response

CountInstancesnumber

Number of child instances within this patient

CountSeriesnumber

Number of child series within this patient

CountStudiesnumber

Number of child studies within this patient

DicomDiskSizestring

Size on the disk of the DICOM instances associated with the patient, expressed in bytes

DicomDiskSizeMBnumber

Size on the disk of the DICOM instances associated with the patient, expressed in megabytes (MB)

DicomUncompressedSizestring

Size on the disk of the uncompressed DICOM instances associated with the patient, expressed in bytes

DicomUncompressedSizeMBnumber

Size on the disk of the uncompressed DICOM instances associated with the patient, expressed in megabytes (MB)

DiskSizestring

Size of the patient on the disk in bytes, expressed as a string for 64bit compatibility with JSON

DiskSizeMBnumber

Size of the patient on the disk, expressed in megabytes (MB)

UncompressedSizestring

Size of the patient after decompression in bytes, expressed as a string for 64bit compatibility with JSON

UncompressedSizeMBnumber

Size of the patient after decompression, expressed in megabytes (MB). This is different from DiskSizeMB iff StorageCompression is true.

Example response

{
  "CountInstances": 166,
  "CountSeries": 1,
  "CountStudies": 1,
  "DicomDiskSize": "87460012",
  "DicomDiskSizeMB": 83,
  "DicomUncompressedSize": "87460012",
  "DicomUncompressedSizeMB": 83,
  "DiskSize": "87460012",
  "DiskSizeMB": 83,
  "UncompressedSize": "87460012",
  "UncompressedSizeMB": 83
}