addedInput schema / properties / facet
Added value: +{
+ "description": "Restrict the response to one facet by ID (e.g. \"stateid\"). Use with values_offset to page a facet whose values were truncated. Omit to get every facet.",
+ "minLength": 1,
+ "type": "string"
+}
addedInput schema / properties / values_offset
Added value: +{
+ "default": 0,
+ "description": "Index of the first facet value to return, applied to every facet in the response. Use the value named in a truncation hint to continue past the cap.",
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+}
changedOutput schema / properties / facets / description
Previous value: -"Filterable dimensions. Each facet has an ID and a set of valid values."New value: +"Filterable dimensions. Each facet has an ID and a window of its valid values. Restricted to one entry when the facet input is set."
addedOutput schema / properties / facets / items / properties / value_count
Added value: +{
+ "description": "Total values this facet has upstream, independent of the returned window.",
+ "type": "number"
+}
changedOutput schema / properties / facets / items / properties / values / description
Previous value: -"Valid values for this facet dimension."New value: +"Valid values for this facet dimension, starting at values_offset and capped at EIA_FACET_VALUE_CAP."
addedOutput schema / properties / facets / items / properties / values_truncated
Added value: +{
+ "description": "True when values stops short of value_count. Call eia_describe_route again with this facet ID and values_offset set to values_offset + values.length for the next page.",
+ "type": "boolean"
+}
changedOutput schema / properties / facets / items / required
Previous value: -[
- "id",
- "description",
- "values"
-]New value: +[
+ "id",
+ "description",
+ "values",
+ "value_count",
+ "values_truncated"
+]
addedOutput schema / properties / values_offset
Added value: +{
+ "description": "Index of the first facet value returned, echoing the requested offset.",
+ "type": "number"
+}
changedOutput schema / required
Previous value: -[
- "route",
- "description",
- "facets",
- "data_columns",
- "frequencies",
- "date_range",
- "default_frequency",
- "default_date_format"
-]New value: +[
+ "route",
+ "description",
+ "facets",
+ "values_offset",
+ "data_columns",
+ "frequencies",
+ "date_range",
+ "default_frequency",
+ "default_date_format"
+]