Craft.io · Schema

PortalImportance

Product ManagementRoadmapsOKRsBacklogFeedbackPortfolioSpecifications

Properties

Name Type Description
id string
name string
isDefault boolean True when this importance is the portal's default — used by create_feedback when `importanceId` is omitted.
View JSON Schema on GitHub

JSON Schema

craft-io-portalimportance-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-portalimportance-schema.json",
  "title": "PortalImportance",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "isDefault": {
      "type": "boolean",
      "description": "True when this importance is the portal's default \u2014 used by create_feedback when `importanceId` is omitted."
    }
  },
  "required": [
    "id",
    "name"
  ],
  "type": "object",
  "additionalProperties": false
}