Craft.io · Schema

PortalForm

Product ManagementRoadmapsOKRsBacklogFeedbackPortfolioSpecifications

Properties

Name Type Description
id string
name string
categories array
fields array
View JSON Schema on GitHub

JSON Schema

craft-io-portalform-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-portalform-schema.json",
  "title": "PortalForm",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "categories": {
      "items": {
        "$ref": "#/components/schemas/Entity"
      },
      "type": "array"
    },
    "fields": {
      "items": {
        "$ref": "#/components/schemas/FormCustomField"
      },
      "type": "array"
    }
  },
  "required": [
    "id",
    "name",
    "categories",
    "fields"
  ],
  "type": "object",
  "additionalProperties": false
}