Craft.io · Schema

FeedbackPortal

Product ManagementRoadmapsOKRsBacklogFeedbackPortfolioSpecifications

Properties

Name Type Description
id string
name string
url string
workspaces array
webUrl string Fully-qualified portal URL (https://{slug}.{FPURL}). Convenience over `url`.
View JSON Schema on GitHub

JSON Schema

craft-io-feedbackportal-schema.json Raw ↑
{
  "$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
}