{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/craft-io/main/json-schema/craft-io-feedbackportal-schema.json", "title": "FeedbackPortal", "properties": { "id": { "type": "string" }, "name": { "type": "string", "nullable": true }, "url": { "type": "string" }, "workspaces": { "items": { "$ref": "#/components/schemas/Workspace" }, "type": "array" }, "webUrl": { "type": "string", "description": "Fully-qualified portal URL (https://{slug}.{FPURL}). Convenience over `url`." } }, "type": "object", "additionalProperties": false }