Table of Contents

Class RequestedStudy

Namespace
Monai.Deploy.InformaticsGateway.Api.Rest
Assembly
Monai.Deploy.InformaticsGateway.Api.dll

Details of a DICOM study to be retrieved for an inference request.

public class RequestedStudy
Inheritance
RequestedStudy

Examples

{
    ...
    "studies" : [
        "StudyInstanceUID": "1.2.3.4.555.6666.7777",
        "series": [
            "SeriesInstanceUID": "1.2.3.4.55.66.77.88",
            "instances": [
                "SOPInstanceUID": [
                    "1.2.3.4.5.6.7.8.99.1",
                    "1.2.3.4.5.6.7.8.99.2",
                    "1.2.3.4.5.6.7.8.99.3",
                    ...
                ]
            ]
        ]
    ]
    ...
}

Remarks

StudyInstanceUid> is required.

If Series> is not specified, the entire study is retrieved.

Properties

Series

Gets or sets a list of DICOM series to be retrieved.

[JsonPropertyName("series")]
public IList<RequestedSeries>? Series { get; set; }

Property Value

IList<RequestedSeries>

StudyInstanceUid

Gets or sets the Study Instance UID to be retrieved.

[JsonPropertyName("StudyInstanceUID")]
public string? StudyInstanceUid { get; set; }

Property Value

string