You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if a dimension element is encoded such as :
sdmx-dimension:timePeriod "2001-01-01"^^http://www.w3.org/2001/XMLSchema#date ;
no observation will be received.
The corresponding getObservation sparql query is as follows:
[...] FILTER ( ?d1 = "2008-01-01" OR ?d1 = "2009-01-01" OR [...]
if a dimension element is encoded such as :
sdmx-dimension:timePeriod "2001-01-01"^^http://www.w3.org/2001/XMLSchema#date ;
no observation will be received.
The corresponding getObservation sparql query is as follows:
[...] FILTER ( ?d1 = "2008-01-01" OR ?d1 = "2009-01-01" OR [...]
but must be:
[...] FILTER ( ?d1 = "2008-01-01"^^http://www.w3.org/2001/XMLSchema#date [...]
The text was updated successfully, but these errors were encountered: