From 9fba7b2dc1b47330a17ec093e64a829d75ad6a0e Mon Sep 17 00:00:00 2001 From: Daniel Bertocci Date: Thu, 4 Apr 2024 19:36:26 +0200 Subject: [PATCH] Fix table formatting --- docs/sensorthingsapi/requestingData/STA-Filtering.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/sensorthingsapi/requestingData/STA-Filtering.md b/docs/sensorthingsapi/requestingData/STA-Filtering.md index 98094d505..6b1cf1f9d 100644 --- a/docs/sensorthingsapi/requestingData/STA-Filtering.md +++ b/docs/sensorthingsapi/requestingData/STA-Filtering.md @@ -200,11 +200,8 @@ Clients can use `any()` to search in related entity sets and `in` to search in p | Function | Description & Example | | --- | --- | -| `in`
bool | Returns true if the item on the left is in the array on the right.
-`properties/countryCode in ('IT','NL')`
-`'myTag' in properties/tags` | -| `relatedSet/any(x: )` | Returns true if any of the Entities in the set match the predicate.
-`Datastreams/any(d: d/ObservedProperty/name eq 'NO2')`| +| `in`
bool | Returns true if the item on the left is in the array on the right.
`properties/countryCode in ('IT','NL')`
`'myTag' in properties/tags` | +| `relatedSet/any(x: )` | Returns true if any of the Entities in the set match the predicate.
`Datastreams/any(d: d/ObservedProperty/name eq 'NO2')`| Give me all Things that have both Datastreams that measure NO2 and Datastreams that measure O3: