./api/ani/scolari?ascID=21 | Returns only school years where ascID is equal to 21 |
./api/ani/scolari?ascID=<21 | Returns only school years where ascID less than 21 |
./api/ani/scolari?ascID=>21 | Returns only school years where ascID greater than 21 |
./api/ani/scolari?ascID=!21 | Returns only school years where ascID is not 21 |
./api/ani/scolari?ascID=[21,22,23] | Returns only school years where ascID is 21, 22 or 23. |
./api/ani/scolari?ascNume=2017* | Returns only school years where ascNune starts with 2017 (LIKE '2017%') |
./api/ani/scolari?ascNume=*2017 | Returns only school years where ascNume ends in 2017 (LIKE '%2017') |
./api/ani/scolari?ascNume=*2017* | Returns only school years where ascNume contains 2017 (LIKE '%2017%') |