addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / filters / items / additionalProperties
Added value: +false
changedInput schema / properties / filters / items / properties / value / description
Previous value: -"Value to compare against. Not required for 'empty' and 'not_empty' operators. Use number, string, or [min, max] array for in_range. For above_percent/below_percent, use [field_name, percent_number] e.g. ['SMA200', 10]."New value: +"Value to compare against. Empty and not_empty omit value. above_percent and below_percent use [field, percent]. has and has_none_of use a non-empty string array."
addedInput schema / properties / filters / items / properties / value / oneOf
Added value: +[
+ {
+ "type": "number"
+ },
+ {
+ "type": "string"
+ },
+ {
+ "type": "boolean"
+ },
+ {
+ "items": {
+ "type": "number"
+ },
+ "maxItems": 2,
+ "minItems": 2,
+ "type": "array"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "minItems": 1,
+ "type": "array"
+ },
+ {
+ "maxItems": 2,
+ "minItems": 2,
+ "prefixItems": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "number"
+ }
+ ],
+ "type": "array"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "metadata": {
+ "additionalProperties": false,
+ "properties": {
+ "cache_hit": {
+ "type": "boolean"
+ },
+ "missing_symbols": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "requested_count": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "retrieved_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "returned_count": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "source": {
+ "type": "string"
+ },
+ "unavailable_symbols": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "retrieved_at",
+ "source",
+ "cache_hit",
+ "requested_count",
+ "returned_count",
+ "missing_symbols"
+ ],
+ "type": "object"
+ },
+ "pairs": {
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_count": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "total_count",
+ "pairs",
+ "metadata"
+ ],
+ "type": "object"
+}