{
	"$schema": "http://json-schema.org/schema",
	"$id": "CodeFoxUIEditorSchema",
	"title": "CodeFoxUI Editor Schema",
	"type": "object",
	"properties": {
		"project": {
			"type": "string",
			"description": "The name of the project.",
			"$default": {
				"$source": "projectName"
			}
		},
		"singular": {
			"type": "string",
			"description": "The singular name of the component"
		},
		"plural": {
			"type": "string",
			"description": "The plural name of the component"
		},
		"namesingular": {
			"tpye": "string",
			"description": "Singular name of component"
		},
		"nameplural": {
			"tpye": "string",
			"description": "Plural name of component"
		}
	},
	"required": [
		"singular",
		"plural",
		"namesingular",
		"nameplural"
	]
}