addedOutput schema / properties / items / items / properties / address_evidence
Added value: +{
+ "additionalProperties": false,
+ "description": "What THIS CANDIDATE carries, component by component — `matched` (a real value is present), `partial` (only a coarser or derived stand-in, e.g. an interpolated house number or a locality falling back to its administrative parent), `absent` (nothing). This describes the result, NOT a comparison against your query: the engine returns no per-component match data, and re-parsing your text here would mean two parsers disagreeing about the same string. Derived from the feature, never from `confidence`.",
+ "properties": {
+ "house_number": {
+ "enum": [
+ "matched",
+ "partial",
+ "absent"
+ ],
+ "type": "string"
+ },
+ "locality": {
+ "$ref": "#/properties/items/items/properties/address_evidence/properties/house_number"
+ },
+ "postal_code": {
+ "description": "Whether the candidate carries a postal code. Presence only — this states what the result has, and makes no claim about its correctness.",
+ "enum": [
+ "matched",
+ "partial",
+ "absent"
+ ],
+ "type": "string"
+ },
+ "region": {
+ "$ref": "#/properties/items/items/properties/address_evidence/properties/house_number"
+ },
+ "street": {
+ "$ref": "#/properties/items/items/properties/address_evidence/properties/house_number"
+ }
+ },
+ "required": [
+ "house_number",
+ "street",
+ "locality",
+ "region",
+ "postal_code"
+ ],
+ "type": "object"
+}