{
  "id": "http://edoc-schema.kzn.ru/document/ru/uslugi/definitions/projections",
  "$schema": "http://json-schema.org/draft-06/schema#",
  "type": "array",
  "title": "Проекции",
  "minItems": 1,
  "items": {
  "type": "object",
    "properties": {
      "projection_type":{
        "type": "string",
        "title": "Тип проекции",
        "enum": [
          "спереди",
          "сзади",
          "сбоку"
        ]
      },
      "image_original":{
        "$ref": "http://edoc-schema.kzn.ru/document/ru/uslugi/definitions/image_original"
      },
      "image_project":{
        "$ref": "http://edoc-schema.kzn.ru/document/ru/uslugi/definitions/image_project"
      },
      "projection_elements": {
        "type": "array",
        "title": "Элементы проекции",
        "minItems": 1,
        "items": {
        "type": "object",
          "properties": {
            "projection_element":{
              "type": "string",
              "title": "Элемент вида"
            },
            "material":{
              "type": "string",
              "title": "Материал"
            },
            "color":{
              "type": "string",
              "title": "Цвет"
            },
            "dimensions":{
              "type": "string",
              "title": "Габаритные размеры"
            },
            "description":{
              "type": "string",
              "title": "Описание"
            }
          }
        }
      }
    }
  }
}


