{ "name": "Photo", "type": "object", "properties": { "title": { "type": "string", "description": "Optional title for the photo" }, "era": { "type": "string", "enum": [ "1920s", "1930s", "1940s", "1950s", "1960s", "1970s", "1980s", "1990s", "2000s" ], "description": "The era filter applied" }, "original_url": { "type": "string", "description": "URL of the original uploaded photo" }, "filtered_url": { "type": "string", "description": "URL of the filtered photo (canvas export)" } }, "required": [ "era", "original_url" ] }