Loading
fix(local): 001_02_02 EmptyJson expects BadRequestData, not InvalidRequest
The empty.jsonld fixture is `[]` — a syntactically VALID JSON document whose content is not a valid Entity. Per TS 104-175 §8.2.3 (General NGSI-LD validation), the error type depends on JSON validity: - body is not a valid JSON document -> InvalidRequest - valid JSON, content not per the data type -> BadRequestData `[]` parses as JSON, so the second rule applies: BadRequestData. (001_02_01 InvalidJson, whose fixture is genuinely malformed JSON, correctly keeps InvalidRequest.) This aligns the assertion with §8.2.3; an ETSI issue is filed upstream.