addedOutput schema / properties / profile / properties / match
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "disclaimer": {
+ "type": "string"
+ },
+ "label": {
+ "enum": [
+ "Strong match",
+ "Good match",
+ "Related match"
+ ],
+ "type": "string"
+ },
+ "method": {
+ "enum": [
+ "text",
+ "semantic",
+ "hybrid"
+ ],
+ "type": "string"
+ },
+ "reasons": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 3,
+ "type": "array"
+ },
+ "score": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "signals": {
+ "items": {
+ "enum": [
+ "text",
+ "semantic"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "score",
+ "label",
+ "reasons",
+ "signals",
+ "method",
+ "disclaimer"
+ ],
+ "type": "object"
+}