v1

latestOpenAPI 3.0.02026-07-142740323.4 KB
Studies

Get study statistics

Get statistics about the given study

get/studies/{id}/statistics

Path parameters

idstring required

Orthanc identifier of the study of interest

Response

CountInstancesnumber

Number of child instances within this study

CountSeriesnumber

Number of child series within this study

DicomDiskSizestring

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

DicomDiskSizeMBnumber

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

DicomUncompressedSizestring

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

DicomUncompressedSizeMBnumber

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

DiskSizestring

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

DiskSizeMBnumber

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

UncompressedSizestring

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

UncompressedSizeMBnumber

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

Example response

{
  "CountInstances": 232,
  "CountSeries": 7,
  "DicomDiskSize": "68153234",
  "DicomDiskSizeMB": 64,
  "DicomUncompressedSize": "68153234",
  "DicomUncompressedSizeMB": 64,
  "DiskSize": "72203548",
  "DiskSizeMB": 68,
  "UncompressedSize": "72203548",
  "UncompressedSizeMB": 68
}