Hey @alzarka, this looks quite similar to How to save schema to environment and reuse it after. You can reuse schema definitions across requests as follows:
- Save
pictureSchemainto an environment variable as follows:
pm.environment.set('picture_schema', JSON.stringify(schemaPicture));
- In the script where
commentSchemais defined, referpictureSchemaas follows:
const commentSchema = {
.
.
.
"picture": JSON.parse(pm.environment.get('picture_schema'))
.
.
.
}
In this manner, you can include the common reference wherever needed.