FHIR / sql-on-fhir-v2

This project provides the source for the SQL on FHIR v2.0 Implementation Guide
https://build.fhir.org/ig/FHIR/sql-on-fhir-v2/
MIT License
105 stars 28 forks source link

Test "incorrect constant definition" has missing expectation #199

Closed johngrimes closed 9 months ago

johngrimes commented 9 months ago

The following test does not have an expectation - I would expect an error as the required element constant.value is missing:

{
  "title": "incorrect constant definition",
  "view": {
    "resource": "Patient",
    "constant": [
      {
        "name": "name_use"
      }
    ],
    "select": [
      {
        "column": [
          {
            "name": "id",
            "path": "id"
          },
          {
            "name": "official_name",
            "path": "name.where(use = %name_use).family"
          }
        ]
      }
    ]
  }
}
Yngwarr commented 9 months ago

Thank you, addressed in 6b9562e.