﻿{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "EnumWithDescriptions",
  "type": "string",
  "description": "",
  "x-enumNames": [
    "FirstValue",
    "SecondValue",
    "ThirdValue"
  ],
  "x-enum-descriptions": [
    "First value description",
    "Second value description",
    null
  ],
  "enum": [
    "FirstValue",
    "SecondValue",
    "ThirdValue"
  ]
}