* @property {string} title The title of the policy as displayed in the UI, "Health Inspection SMR"
* @property {string} displayName The way the brand is dispayed as a choice in the UI
* @property {string} [titleClass] The class to apply to the title: "lime"
* @property {function(void):boolean} [requirements] Function to determine if a brand symbol can be used.
* @property {string} [activatedTitle] The title of the policy if the policy is active. Param "title" is used as a fallback.
* @property {string} text Text that describes the policy in detail. No initial cap, ends with punctuation.
* @property {string} [activatedText] Text that describes an active policy in detail. Uses param "text" as a fallback.
* @property {function(void):boolean} [requirements] Function to determine if a policy can be enabled.
* @property {function(void):void} [onImplementation] Beyond applying the policy itself and billing the player, are there other values to change? This allows a shortstack FS policy to revoke some generic tall policies, for example.
* @property {function(void):void} [onRepeal] same as onImplementation, but fires when a policy is repealed.
* @property {number|string} [enable] Value to enable a policy. Defaults to 1 if not defined.
* @property {object} [hide] Object controlling special hide settings that can hide parts of the policy if needed.
* @property {number} [hide.button] Hides the appeal/repeal button if 1
* @property {number} [hide.ifActivated] Hides the entire policy if the policy is applied. 1 to enable.
* @property {string} [note] Note that appears at the end of the policy display in italics to present further information. Starts with cap, no punctuation at end.
* @property {string} [activatedNote] Note that appears if policy is activated. Please note that unlike the other "activated" categories, "note" is only displayed on deactivated policies. There is no fallback.
* Key names represent a piece of the variable. "policies.SMR.basicSMR" will be checked against "V.policies.SMR.basicSMR". "arcologies[0].FSEgyptianRevivalistIncestPolicy" will be checked against "V.arcologies[0].FSEgyptianRevivalistIncestPolicy".