{

	"name": "sap.ui.test.inherit.Component",

	"sap.app": {
		"id": "sap.ui.test.inherit",
		"applicationVersion": {
			"version": "1.0.0"
		},
		"title": "{{title}}",
		"description": "{{description}}"
	},

	"sap.ui5": {

		"resourceRoots": {
			"foo.bar": "../../foo/bar",
			"absolute": "http://absolute/uri",
			"server.absolute": "/server/absolute/uri"
		},

		"resources": {
			"js": [
				{
					"uri": "script.js"
				},
				{}
			],
			"css": [
				{
					"uri": "style.css",
					"id": "mystyle"
				},
				{}
			]
		},

		"dependencies": {
			"minUI5Version": "1.22.5",
			"libs": {
				"sap.ui.layout": {
					"minVersion": "1.22.0"
				}
			},
			"components": {
				"sap.ui.test.other": {
					"optional": true,
					"minVersion": "1.0.1"
				}
			}
		},

		"models": {
			"i18n": {
				"type": "sap.ui.model.resource.ResourceModel",
				"uri": "i18n/i18n.properties"
			},
			"sfapi": {
				"type": "sap.ui.model.odata.ODataModel",
				"uri": "./some/odata/service"
			}
		},

		"config": {
			"any1": {
				"entry": "configuration"
			},
			"any2": {
				"anyobject": {
					"key1": "value1"
				}
			},
			"any3": {
				"anyarray": [1, 2, 3]
			},
			"zero": 0
		},

		"routing": {
			"routes": [
				{
					"name" : "myRouteName1",
					"pattern" : "FirstView/{from}",
					"view" : "myViewId"
				}
			]
		},

		"extends": {
			"component": "sap.ui.test.inherit.parent",
			"extensions": {
				"sap.ui.viewReplacements": {
					"sap.ui.test.view.Main": {
						"viewName": "sap.ui.test.view.Main",
						"type": "XML"
					}
				},
				"sap.ui.controllerReplacements": {
					"sap.ui.test.view.Main": "sap.ui.test.view.Main"
				},
				"sap.ui.viewExtensions": {
					"sap.ui.test.view.Main": {
						"extension": {
							"name": "sap.xx.new.Fragment",
							"type": "sap.ui.core.XMLFragment"
						}
					}
				},
				"sap.ui.viewModification": {
					"sap.ui.test.view.Main": {
						"myControlId": {
							"text": "{{mytext}}"
						}
					}
				}
			}
		}

	},

	"foo": {},
	"foo.bar": "string as entry value is not valid!"

}
