{
  "$schema": "http://json-schema.org/schema",
  "$id": "CloudApplicationSchema",
  "title": "Cloud Application Schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "$default": {
        "$source": "argv",
        "index": 0
      }
    }
  },
  "required": [
    "name"
  ]
}

