{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalFooterMenuSection", "title": "PortalFooterMenuSection", "type": "object", "properties": { "title": { "description": "The footer menu section title", "type": "string", "maxLength": 512 }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/PortalMenuItem" } } }, "additionalProperties": false, "required": [ "title", "items" ] }