{
  "name": "phoenix",
  "usedConcepts": {
    "authentication": {},
    "authorization": {},
    "comment": {},
    "topic": {
      "name": "label",
      "config": {
        "initialLabelIds": [
          "sexuality", "gender", "body image", "politics", "family"
        ]
      }
    },
    "geolocation": {
      "config": {
        "mapType": "leaflet"
      }
    },
    "personalinfo": {
      "name": "property",
      "config": {
        "schema": {
          "title": "PersonalInfo",
          "type": "object",
          "properties": {
            "email": {
              "type": "string"
            },
            "description": {
              "type": "string",
              "maxLength": 250
            },
            "zipCode": {
              "type": "string"
            },
            "locationRadius": {
              "type": "number"
            }
          }
        },
        "required": ["email", "description", "zipCode", "locationRadius"]
      }
    },
    "match": {},
    "connectionhistory": {
      "name": "property",
      "config": {
        "schema": {
          "title": "Connection History",
          "type": "object",
          "properties": {
            "pastConnection": {
              "type": "string"
            }
          },
          "required": ["pastConnection"]
        }
      }
    },
    "schedule": {}
  },
  "routes": [
    { "path": "/dashboard", "component": "show-dashboard" },
    { "path": "/faq", "component": "show-faq" },
    { "path": "/journal", "component": "show-journal" },
    { "path": "/personal", "component": "show-personal-info" },
    { "path": "/signin", "component": "signin" },
    { "path": "/register", "component": "register" },
    { "path": "", "component": "show-dashboard" }
  ]
}
