Craft.io · Schema

Portfolio

Product ManagementRoadmapsOKRsBacklogFeedbackPortfolioSpecifications

Properties

Name Type Description
id string
name string
workspaces array
webUrl string Canonical Craft.io app URL for this portfolio. Computed in PublishService.
View JSON Schema on GitHub

JSON Schema

craft-io-portfolio-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-portfolio-schema.json",
  "title": "Portfolio",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "workspaces": {
      "items": {
        "$ref": "#/components/schemas/Workspace"
      },
      "type": "array"
    },
    "webUrl": {
      "type": "string",
      "description": "Canonical Craft.io app URL for this portfolio. Computed in PublishService."
    }
  },
  "required": [
    "workspaces"
  ],
  "type": "object",
  "additionalProperties": false
}