action orthanc_server_get_instances_id_statistics { label: "Get instance statistics" description: "Get statistics about the given instance" provider: orthanc_server method: GET path: "/instances/{id}/statistics" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { properties: { DicomDiskSize: { type: "string" description: "Size on the disk of the DICOM instances associated with the instance, expressed in bytes" } DicomDiskSizeMB: { type: "number" description: "Size on the disk of the DICOM instances associated with the instance, expressed in megabytes (MB)" } DicomUncompressedSize: { type: "string" description: "Size on the disk of the uncompressed DICOM instances associated with the instance, expressed in bytes" } DicomUncompressedSizeMB: { type: "number" description: "Size on the disk of the uncompressed DICOM instances associated with the instance, expressed in megabytes (MB)" } DiskSize: { type: "string" description: "Size of the instance on the disk in bytes, expressed as a string for 64bit compatibility with JSON" } DiskSizeMB: { type: "number" description: "Size of the instance on the disk, expressed in megabytes (MB)" } UncompressedSize: { type: "string" description: "Size of the instance after decompression in bytes, expressed as a string for 64bit compatibility with JSON" } UncompressedSizeMB: { type: "number" description: "Size of the instance after decompression, expressed in megabytes (MB). This is different from `DiskSizeMB` iff `StorageCompression` is `true`." } } } }