changedInput schema / properties / name / description
Previous value: -"Watchlist name."New value: +"Name of a watchlist the caller has already saved. Pass this OR `tickers`, never both."
changedInput schema / properties / since / description
Previous value: -"Cutoff date (YYYY-MM-DD); the diff returns SEC filings accepted on or after this date across the watchlist's tickers."New value: +"Cutoff date (YYYY-MM-DD); the diff returns SEC filings whose filing_date is on or after this date."
addedInput schema / properties / tickers
Added value: +{
+ "description": "Tickers or CIKs to scan, passed directly. Use this for an ad-hoc question — do NOT create a watchlist in order to ask one, since that writes a durable record into the user's account. Pass this OR `name`, never both.",
+ "items": {
+ "maxLength": 10,
+ "minLength": 1,
+ "type": "string"
+ },
+ "maxItems": 50,
+ "minItems": 1,
+ "type": "array"
+}
changedInput schema / required
Previous value: -[
- "name",
- "since"
-]New value: +[
+ "since"
+]
addedOutput schema / properties / tickers_failed
Added value: +{
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
addedOutput schema / properties / tickers_requested
Added value: +{
+ "type": "integer"
+}
addedOutput schema / properties / truncated
Added value: +{
+ "type": "boolean"
+}
changedOutput schema / properties / watchlist_name / type
Previous value: -"string"New value: +[
+ "string",
+ "null"
+]
changedOutput schema / required
Previous value: -[
- "_meta",
- "watchlist_name",
- "since",
- "tickers_scanned",
- "filings"
-]New value: +[
+ "_meta",
+ "watchlist_name",
+ "since",
+ "tickers_scanned",
+ "tickers_requested",
+ "truncated",
+ "tickers_failed",
+ "filings"
+]