From ee3f945b6622f5ce80c00222875662d2aaac34ba Mon Sep 17 00:00:00 2001 From: Louis Larry Date: Fri, 12 Jun 2026 10:14:58 +0700 Subject: [PATCH] Fix invalid default for SpatialConstraint.quantifier The `default` was `any` (lowercase) but the enum only permits `ANY`/`ALL`/`NONE`, making the default invalid against its own schema. Corrected to `ANY` to match the documented behavior ("at least one element matches (default)"). --- api/v2.0.0/beckn.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v2.0.0/beckn.yaml b/api/v2.0.0/beckn.yaml index 85727e24..6481a403 100644 --- a/api/v2.0.0/beckn.yaml +++ b/api/v2.0.0/beckn.yaml @@ -3996,7 +3996,7 @@ components: - ANY - ALL - NONE - default: any + default: ANY srid: description: Coordinate Reference System identifier for `geometry`. Default is `"EPSG:4326"`. If provided, servers MAY reproject to EPSG:4326 internally. type: string