addedInput schema / properties / cursor
Added value: +{
+ "type": "string"
+}
addedInput schema / properties / limit
Added value: +{
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+}
addedInput schema / properties / match
Added value: +{
+ "enum": [
+ "text",
+ "name"
+ ],
+ "type": "string"
+}
addedInput schema / properties / owner
Added value: +{
+ "description": "An owner's id, to keep its entities",
+ "type": "string"
+}
addedInput schema / properties / type
Added value: +{
+ "type": "string"
+}
changedOutput schema / additionalProperties
Previous value: -{}New value: +false
addedOutput schema / properties / match
Added value: +{
+ "enum": [
+ "text",
+ "name"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / page
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "hasMore": {
+ "type": "boolean"
+ },
+ "nextCursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "returned": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "total": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "total",
+ "returned",
+ "hasMore",
+ "nextCursor"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / query
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / results
Added value: +{
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "matched": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "key": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "where": {
+ "enum": [
+ "name",
+ "tagline",
+ "field",
+ "section",
+ "table"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "where",
+ "key"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "owner": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "tagline": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string"
+ },
+ "url": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "type",
+ "owner",
+ "tagline",
+ "url",
+ "matched"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / required
Previous value: -[
- "model"
-]New value: +[
+ "query",
+ "match",
+ "results",
+ "page",
+ "model"
+]