changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ScreenerIndicator": {
+ "description": "A single screener indicator's metadata. The `filter_` prefix is stripped\nfrom `key` by the tool. `tech_values`, when present, is a synthesized schema\n(`{tech_key: [{value, label}, ...]}`) describing the options a technical\nindicator accepts.",
+ "properties": {
+ "default_range": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/ScreenerIndicatorRange"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Default value range for the indicator."
+ },
+ "id": {
+ "description": "Indicator ID.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "key": {
+ "description": "Indicator key (without the `filter_` prefix).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Indicator display name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "tech_values": {
+ "description": "For technical indicators: synthesized schema of accepted option values,\nkeyed by technical sub-key, each mapping to a list of `{value, label}`."
+ },
+ "unit": {
+ "description": "Value unit, where applicable.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ScreenerIndicatorGroup": {
+ "description": "A named group of screener indicators.",
+ "properties": {
+ "group_name": {
+ "description": "Group display name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "indicators": {
+ "description": "Indicators in this group.",
+ "items": {
+ "$ref": "#/$defs/ScreenerIndicator"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ScreenerIndicatorRange": {
+ "description": "Default value range for a screener indicator.",
+ "properties": {
+ "max": {
+ "description": "Default upper bound (string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "min": {
+ "description": "Default lower bound (string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `screener_indicators`. Documented portion is `groups[]`.",
+ "properties": {
+ "groups": {
+ "description": "Indicator metadata grouped by category.",
+ "items": {
+ "$ref": "#/$defs/ScreenerIndicatorGroup"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "ScreenerIndicatorsResponse",
+ "type": "object"
+}