Craft.io · Schema

CustomFieldValue

Product ManagementRoadmapsOKRsBacklogFeedbackPortfolioSpecifications

Properties

Name Type Description
id string
name string
value object
values object
label string
View JSON Schema on GitHub

JSON Schema

craft-io-customfieldvalue-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-customfieldvalue-schema.json",
  "title": "CustomFieldValue",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "value": {
      "$ref": "#/components/schemas/NullableType_string_"
    },
    "values": {
      "$ref": "#/components/schemas/NullableType_string-Array_"
    },
    "label": {
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object",
  "additionalProperties": false
}