+ {Object.entries(chosenVariantSchema.properties).map(
+ ([someKey, childSchema]) => {
+ if (someKey === "discriminator") {
+ return null;
+ }
+ const childKey = propKey ? `${propKey}.${someKey}` : someKey;
+ return (
+
+
+ {(childSchema as BlockIOSubSchema).title ||
+ beautifyString(someKey)}
+
+
+
+ );
+ },
+ )}
+