changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "_SearchHit": {
+ "properties": {
+ "content_type": {
+ "title": "Content Type",
+ "type": "string"
+ },
+ "entity_matches": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Entity Matches"
+ },
+ "full_text": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Full Text"
+ },
+ "id": {
+ "title": "Id",
+ "type": "string"
+ },
+ "ranks": {
+ "$ref": "#/$defs/_SearchRanks"
+ },
+ "relationships_text": {
+ "title": "Relationships Text",
+ "type": "string"
+ },
+ "scores": {
+ "$ref": "#/$defs/_SearchScores"
+ },
+ "title": {
+ "title": "Title",
+ "type": "string"
+ },
+ "url": {
+ "title": "Url",
+ "type": "string"
+ }
+ },
+ "title": "_SearchHit",
+ "type": "object"
+ },
+ "_SearchMeta": {
+ "properties": {
+ "degraded": {
+ "items": {
+ "type": "string"
+ },
+ "title": "Degraded",
+ "type": "array"
+ },
+ "graph_total": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Graph Total"
+ },
+ "request_id": {
+ "title": "Request Id",
+ "type": "string"
+ },
+ "text_total": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Text Total"
+ },
+ "took_ms": {
+ "title": "Took Ms",
+ "type": "integer"
+ },
+ "total_available": {
+ "title": "Total Available",
+ "type": "integer"
+ }
+ },
+ "title": "_SearchMeta",
+ "type": "object"
+ },
+ "_SearchRanks": {
+ "properties": {
+ "bm25": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Bm25"
+ },
+ "combined": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Combined"
+ },
+ "graph": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Graph"
+ }
+ },
+ "title": "_SearchRanks",
+ "type": "object"
+ },
+ "_SearchScores": {
+ "properties": {
+ "bm25": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Bm25"
+ },
+ "graph": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Graph"
+ }
+ },
+ "title": "_SearchScores",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "meta": {
+ "$ref": "#/$defs/_SearchMeta"
+ },
+ "results": {
+ "items": {
+ "$ref": "#/$defs/_SearchHit"
+ },
+ "title": "Results",
+ "type": "array"
+ }
+ },
+ "required": [
+ "meta",
+ "results"
+ ],
+ "title": "SearchResult",
+ "type": "object"
+}