#!/bin/bash # Check if the number of arguments is correct if [ $# -ne 2 ]; then echo "Usage: $0 " exit 1 fi # Get the schema ID and count from the arguments schema_id=$1 count=$2 # Loop through the count for i in $(seq 1 $count); do # Create the JSON data with the email and name data=$(cat <