{
  "title":"Feature",
  "type":"object",
  "properties": {
    "FeatureName": {
      "type": "string",
      "default": "Base Api"
    },
    "Details": {
      "type": "array",
      "format": "table",
      "title": "Details",
      "uniqueItems": true,
      "items": {
        "type": "object",
        "title": "SubFeature",
        "properties": {
          "SubFeatureName": {"type": "string","default":"SubFeature One"},
          "ApiRoute":{"type": "string","default":"/en/v1"},
          "Description":{
            "type": "array",
            "format": "text",
            "uniqueItems": true,
            "items": {"type": "string"}},
          "Requirements":{
            "type": "array",
            "format": "text",
            "uniqueItems": true,
            "items": {"type": "string"}},
          "ErrorCaseTests":{
            "type": "array",
            "format": "text",
            "uniqueItems": true,
            "items": {"type": "string"}},
          "SuccessCaseTests":{
            "type": "array",
            "uniqueItems": true,
            "format": "text",
            "items": {"type": "string"}}
        }
      }
    }
  }
}