addedInput schema / properties / section
Added value: +{
+ "default": "all",
+ "description": "Filter the FAQ to one section (kebab-case, e.g. 'tax-legacy'); 'all' returns every entry.",
+ "enum": [
+ "all",
+ "understanding-savvly",
+ "investment-custody",
+ "payouts",
+ "withdrawals-estate",
+ "fees-cost",
+ "tax-legacy",
+ "employer-portability",
+ "safety-regulatory"
+ ],
+ "type": "string"
+}
removedInput schema / properties / topic
Removed value: -{
- "default": "all",
- "description": "Filter FAQ by topic",
- "enum": [
- "general",
- "investment",
- "payouts",
- "withdrawals",
- "tax",
- "fees",
- "employer",
- "regulatory",
- "all"
- ],
- "type": "string"
-}
changedOutput schema / properties / entries / description
Previous value: -"Filtered FAQ entries."New value: +"Filtered FAQ entries (the audience:'general' Q&A slice)."
addedOutput schema / properties / entries / items / properties / audience
Added value: +{
+ "enum": [
+ "employee",
+ "advisor",
+ "broker",
+ "employer",
+ "universal",
+ "general"
+ ],
+ "type": "string"
+}
removedOutput schema / properties / entries / items / properties / category
Removed value: -{
- "description": "FAQ category.",
- "enum": [
- "general",
- "investment",
- "payouts",
- "withdrawals",
- "tax",
- "fees",
- "employer",
- "regulatory"
- ],
- "type": "string"
-}
addedOutput schema / properties / entries / items / properties / footnotes
Added value: +{
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
removedOutput schema / properties / entries / items / properties / related_ids
Removed value: -{
- "items": {
- "type": "string"
- },
- "type": "array"
-}
addedOutput schema / properties / entries / items / properties / section
Added value: +{
+ "type": "string"
+}
changedOutput schema / properties / entries / items / required
Previous value: -[
- "id",
- "category",
- "question",
- "answer",
- "related_ids",
- "keywords"
-]New value: +[
+ "id",
+ "audience",
+ "section",
+ "question",
+ "answer",
+ "footnotes"
+]
addedOutput schema / properties / section
Added value: +{
+ "description": "Section filter applied to produce this result set ('all' if no filter).",
+ "type": "string"
+}
removedOutput schema / properties / topic
Removed value: -{
- "description": "Topic filter applied to produce this result set ('all' if no filter).",
- "type": "string"
-}
changedOutput schema / required
Previous value: -[
- "topic",
- "total",
- "entries"
-]New value: +[
+ "section",
+ "total",
+ "entries"
+]