{
    "id":"template-hero-image",
    "title": "Project Hero Image",
    "description": "JSON schema for Single Image",
    "type": "object",
    "properties":{
        "projectType":{
            "type":"string",
            "required":true,
            "form":{
                "format":"readonly"
            }
        },
        "id":{
            "type":"string",
            "form":{
                "format":"hidden",
                "class":"idfield"
            }
        },
        "projectId":{
            "type":"string",
            "form":{
                "format":"hidden"
            }
        },
        "fields":{
            "type":"object",
            "properties":{
                "image":{
                    "title":"Image",
                    "type":"object",
                     "form":{
                                "options":{
                                    "class":"group-header"
                                }
                            },
                    "properties":{
                        "original":{
                            "type":"string",
                            "form":{
                                "format":"image"
                            }
                        }
                    }
                }
            }
        }
    },
    "additionalProperties":true
}