Is there a way to add an id prop to the json forms component?
<Box className="forms-engine" data-testid="forms-engine"> <JsonForms id={props.id} ajv={ajv} i18n={{ translateError: translateError }} schema={schema} uischema={uiSchema} data={values} renderers={renderers} cells={materialCells} additionalErrors={additionalErrors} validationMode="ValidateAndShow" onChange={({ data }) => { setValues(data); setAdditionalErrors(getAdditionalErrors(schema, data)); }}></JsonForms> </Box>