Craft.io · Schema

Person

Product ManagementRoadmapsOKRsBacklogFeedbackPortfolioSpecifications

Properties

Name Type Description
id string
name string
email string
View JSON Schema on GitHub

JSON Schema

craft-io-person-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-person-schema.json",
  "title": "Person",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "email": {
      "type": "string"
    }
  },
  "type": "object",
  "additionalProperties": false
}