Skip to content

Commit f2410f3

Browse files
authored
Corrected property names and structure used in JSON schema generation for configuration of default data to install. (#17946)
1 parent 4a54215 commit f2410f3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

tools/Umbraco.JsonSchema/UmbracoCmsSchema.cs

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,23 @@ public class UmbracoCmsDefinition
7575

7676
public HelpPageSettings HelpPage { get; set; } = null!;
7777

78-
public InstallDefaultDataSettings DefaultDataCreation { get; set; } = null!;
78+
public InstallDefaultDataNamedOptions InstallDefaultData { get; set; } = null!;
7979

8080
public DataTypesSettings DataTypes { get; set; } = null!;
8181

8282
public MarketplaceSettings Marketplace { get; set; } = null!;
8383

8484
public WebhookSettings Webhook { get; set; } = null!;
8585
}
86+
87+
public class InstallDefaultDataNamedOptions
88+
{
89+
public InstallDefaultDataSettings Languages { get; set; } = null!;
90+
91+
public InstallDefaultDataSettings DataTypes { get; set; } = null!;
92+
93+
public InstallDefaultDataSettings MediaTypes { get; set; } = null!;
94+
95+
public InstallDefaultDataSettings MemberTypes { get; set; } = null!;
96+
}
8697
}

0 commit comments

Comments
 (0)