﻿{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "segment.schema.json",
  "title": "Segment",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "minLength": 1
    },
    "layout": {
      "$ref": "layout.schema.json"
    },
    "setting": {
      "$ref": "setting.schema.json"
    }
  },
  "required": [ "title", "layout", "setting" ],
  "additionalProperties": false
}