addedInput schema / properties / as_of_date
Added value: +{
+ "description": "Point-in-time cutoff (YYYY-MM-DD): only 13F filings ACCEPTED by SEC on or before this date are considered, applied BEFORE the latest + prior periods (and the QoQ basis) are resolved. A 13F/A amendment or late filing accepted after this date is excluded (zero look-ahead). Omit for the latest knowable portfolio.",
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
+ "type": "string"
+}
changedInput schema / properties / period_end / description
Previous value: -"Quarter-end (YYYY-MM-DD). Omit to use latest available."New value: +"Quarter-end (YYYY-MM-DD). Omit to use latest available. This is a REPORTING period, NOT a point-in-time cutoff — use as_of_date for that."
addedOutput schema / properties / aggregate
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "basis": {
+ "type": "string"
+ },
+ "covers_positions": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "has_incomplete_rows": {
+ "description": "True when ≥1 included position reported a null shares/market_value — the total sums only known values and UNDERSTATES the true book (missing ≠ zero).",
+ "type": "boolean"
+ },
+ "is_partial": {
+ "type": "boolean"
+ },
+ "note": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "basis",
+ "is_partial",
+ "has_incomplete_rows",
+ "covers_positions",
+ "note"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / as_of_date
Added value: +{
+ "description": "The point-in-time cutoff actually applied (echo of the as_of_date input). Null when no PIT cut was requested — never confuse this with the reporting period_end.",
+ "type": [
+ "string",
+ "null"
+ ]
+}
addedOutput schema / properties / period_end / description
Added value: +"The 13F REPORTING period the positions belong to — NOT a point-in-time cutoff."
changedOutput schema / required
Previous value: -[
- "_meta",
- "filer_cik",
- "filer_name",
- "period_end",
- "prior_period_end",
- "data_age_days",
- "staleness_warning",
- "total_market_value_usd",
- "positions_count",
- "rows"
-]New value: +[
+ "_meta",
+ "filer_cik",
+ "filer_name",
+ "period_end",
+ "prior_period_end",
+ "as_of_date",
+ "data_age_days",
+ "staleness_warning",
+ "total_market_value_usd",
+ "positions_count",
+ "aggregate",
+ "rows"
+]