Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/search/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Search HAPI Fhir:通过具有特定代码的标识符进行搜索_Search_Identifier_Hl7 Fhir_Hapi - Fatal编程技术网

Search HAPI Fhir:通过具有特定代码的标识符进行搜索

Search HAPI Fhir:通过具有特定代码的标识符进行搜索,search,identifier,hl7-fhir,hapi,Search,Identifier,Hl7 Fhir,Hapi,我想检索具有值为2266的标识符且type.coding.code为“RI”的过程 过程的标识符部分如下所示: "identifier": [ { "use": "usual", "type": { "coding": [ { "system": "http://hl7.org/fhir/v2/0203",

我想检索具有值为2266的标识符且type.coding.code为“RI”的过程

过程的标识符部分如下所示:

"identifier": [
          {
            "use": "usual",
            "type": {
              "coding": [
                {
                  "system": "http://hl7.org/fhir/v2/0203",
                  "code": "RI"
                }
              ],
              "text": "RI"
            },
            "system": "http://hl7.org/fhir/v2/0203",
            "value": "2266"
          },
          {
            "use": "usual",
            "type": {
              "coding": [
                {
                  "system": "http://hl7.org/fhir/v2/0203",
                  "code": "PLAC"
                }
              ],
              "text": "PLAC"
            },
            "system": "http://hl7.org/fhir/v2/0203",
            "value": "procId69"
          }
        ],
搜索时使用:

Procedure?identifier=2266
返回过程,但我不能确定它的代码是否正确

参考我试过的搜索文档

但这对我不起作用,没有任何回报。查询的正确语法是什么


谢谢

您的类型语法是正确的。您确定所讨论的服务器支持类型限定符吗?(这是一项新功能,目前还没有很多服务器支持它。)

是的,我想你是对的。似乎还没有得到HAPI 4.0的支持
Procedure?identifier:of-type=http://hl7.org/fhir/v2/0203|RI|2266