changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of samples returned",
+ "type": "number"
+ },
+ "query": {
+ "description": "Query type used (get_info)",
+ "type": "string"
+ },
+ "samples": {
+ "description": "Array of sample metadata objects",
+ "items": {
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "Query status (ok, no_results, or null)",
+ "enum": [
+ "ok",
+ "no_results",
+ null
+ ],
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "query",
+ "status",
+ "count",
+ "samples"
+ ],
+ "type": "object"
+}