Craft.io · Schema

Workspace

Product ManagementRoadmapsOKRsBacklogFeedbackPortfolioSpecifications

Properties

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

JSON Schema

craft-io-workspace-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-workspace-schema.json",
  "title": "Workspace",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "key": {
      "type": "string"
    },
    "webUrl": {
      "type": "string",
      "description": "Canonical Craft.io app URL for this workspace. Computed in PublishService."
    }
  },
  "type": "object",
  "additionalProperties": false
}