comparison OrthancServer/Sources/OrthancRestApi/OrthancRestResources.cpp @ 5392:92ebf6a10cb5

fix arg name (... is not valid for openapi)
author Alain Mazy <am@osimis.io>
date Tue, 03 Oct 2023 11:14:28 +0200
parents 78c59b02b121
children c5c00bee291a
comparison
equal deleted inserted replaced
5391:8647020aa60a 5392:92ebf6a10cb5
2733 call.GetDocumentation() 2733 call.GetDocumentation()
2734 .SetTag("Instances") 2734 .SetTag("Instances")
2735 .SetSummary("Get raw tag") 2735 .SetSummary("Get raw tag")
2736 .SetDescription("Get the raw content of one DICOM tag in the hierarchy of DICOM dataset") 2736 .SetDescription("Get the raw content of one DICOM tag in the hierarchy of DICOM dataset")
2737 .SetUriArgument("id", "Orthanc identifier of the DICOM instance of interest") 2737 .SetUriArgument("id", "Orthanc identifier of the DICOM instance of interest")
2738 .SetUriArgument("...", "Path to the DICOM tag. This is the interleaving of one DICOM tag, possibly followed " 2738 .SetUriArgument("dicomTagPath", "Path to the DICOM tag. This is the interleaving of one DICOM tag, possibly followed "
2739 "by an index for sequences. Sequences are accessible as, for instance, `/0008-1140/1/0008-1150`") 2739 "by an index for sequences. Sequences are accessible as, for instance, `/0008-1140/1/0008-1150`")
2740 .AddAnswerType(MimeType_Binary, "The raw value of the tag of intereset " 2740 .AddAnswerType(MimeType_Binary, "The raw value of the tag of intereset "
2741 "(binary data, whose memory layout depends on the underlying transfer syntax), " 2741 "(binary data, whose memory layout depends on the underlying transfer syntax), "
2742 "or JSON array containing the list of available tags if accessing a dataset"); 2742 "or JSON array containing the list of available tags if accessing a dataset");
2743 return; 2743 return;