Last active
June 11, 2023 16:48
-
-
Save Geczy/01fa563e1408744a3d1b1d3323ed0d84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Airtable API URL | |
base_url="https://api.airtable.com/v0/appHLMobCaTLuVQQy/Data" | |
api_key="keyoFYTwLB0vomKLC" | |
# Output file name | |
output_file="airtable_records.json" | |
# Initialize variables | |
offset="" | |
all_records="" | |
record_count=0 | |
error_flag=0 | |
# Function to download records for a given offset | |
function download_records() { | |
local url="${base_url}?api_key=${api_key}&offset=${1}" | |
local response=$(curl -s "$url") | |
echo "$response" | |
} | |
# Loop to retrieve all records with pagination | |
while true; do | |
# Download records using current offset | |
records=$(download_records "$offset") | |
# Check for errors | |
if ! jq -e '.error' <<<"$records" >/dev/null; then | |
# Append current batch of records to the overall result | |
all_records="${all_records}${records}" | |
# Increment record count | |
new_records=$(echo "$records" | jq -r '.records | length') | |
record_count=$((record_count + new_records)) | |
# Save records to output file | |
echo "$all_records" >"$output_file" | |
# Check if there are more records available | |
offset=$(echo "$records" | jq -r '.offset') | |
if [[ -z "$offset" || ${#offset} -le 3 ]]; then | |
break | |
fi | |
# Display progress | |
echo "Downloaded $record_count records..." | |
else | |
# Error encountered | |
error_flag=1 | |
error_message=$(echo "$records" | jq -r '.error.message') | |
echo "Error: $error_message" | |
break | |
fi | |
done | |
# Check for any errors during download | |
if [ $error_flag -eq 0 ]; then | |
if [ $? -eq 0 ]; then | |
echo "Records downloaded successfully." | |
else | |
echo "Error downloading records." | |
fi | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"records": [ | |
{ | |
"id": "rec0J2LZCH5BNGu6i", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "little", | |
"Concise1": "slight", | |
"Concise2": "diminutive", | |
"Concise3": "infinitesimal", | |
"Concise4": "meager", | |
"Concise5": "paltry", | |
"Concise6": "tiny" | |
} | |
}, | |
{ | |
"id": "rec116wpPYiHwAcGi", | |
"createdTime": "2021-01-05T02:18:41.000Z", | |
"fields": { | |
"Simple": "popular", | |
"Concise1": "widespread", | |
"Concise2": "prominent", | |
"Concise3": "renowned" | |
} | |
}, | |
{ | |
"id": "rec1N1Wgsi2eZQZRe", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "odd", | |
"Concise1": "distinctive", | |
"Concise2": "peculiar", | |
"Concise3": "incomparable" | |
} | |
}, | |
{ | |
"id": "rec1gaQZPzovTeEVw", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "shiny", | |
"Concise1": "gleaming", | |
"Concise2": "lustrous", | |
"Concise3": "sparkling" | |
} | |
}, | |
{ | |
"id": "rec1hul7yF70cflwz", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "tense", | |
"Concise1": "rigid", | |
"Concise2": "taut", | |
"Concise3": "up the wall" | |
} | |
}, | |
{ | |
"id": "rec2LD4av0peStY3V", | |
"createdTime": "2022-10-13T03:17:00.000Z", | |
"fields": { | |
"Simple": "hot", | |
"Concise1": "blistering", | |
"Concise2": "sweltering", | |
"Concise3": "boiling", | |
"Concise4": "scorching", | |
"Concise5": "scalding", | |
"Concise6": "torrid", | |
"Concise7": "sultry" | |
} | |
}, | |
{ | |
"id": "rec2PV1voUX6z46rK", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "thankful", | |
"Concise1": "indebted", | |
"Concise2": "beholden", | |
"Concise3": "grateful" | |
} | |
}, | |
{ | |
"id": "rec2qf9N7cIOrk0CD", | |
"createdTime": "2020-12-31T18:24:48.000Z", | |
"fields": { | |
"Simple": "challenging", | |
"Concise1": "laborious", | |
"Concise2": "strenuous" | |
} | |
}, | |
{ | |
"id": "rec36F7zD9OWxgAga", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "lazy", | |
"Concise1": "loafing", | |
"Concise2": "apathetic", | |
"Concise3": "comatose" | |
} | |
}, | |
{ | |
"id": "rec38kqswNn65DT9U", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "foolish", | |
"Concise1": "asinine", | |
"Concise2": "ludicrous", | |
"Concise3": "preposterous", | |
"Concise4": "absurd" | |
} | |
}, | |
{ | |
"id": "rec3HsQ4g7Fb0b6Yj", | |
"createdTime": "2020-12-28T19:34:08.000Z", | |
"fields": { | |
"Simple": "bold", | |
"Concise1": "audacious", | |
"Concise2": "enterprising", | |
"Concise3": "gumptious", | |
"Concise4": "brazen" | |
} | |
}, | |
{ | |
"id": "rec3aM333R7dcc8eX", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "healthy", | |
"Concise1": "robust", | |
"Concise2": "prospering", | |
"Concise3": "exuberant" | |
} | |
}, | |
{ | |
"id": "rec46TeVuEOJydols", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "interesting", | |
"Concise1": "fascinating", | |
"Concise2": "alluring", | |
"Concise3": "provocative", | |
"Concise4": "stimulating", | |
"Concise5": "engrossing", | |
"Concise6": "enchanting", | |
"Concise7": "riveting", | |
"Concise8": "gripping" | |
} | |
}, | |
{ | |
"id": "rec4AyecsQU4K6BQ9", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "simple", | |
"Concise1": "transparent", | |
"Concise2": "elementary", | |
"Concise3": "child's play", | |
"Concise4": "straightforward" | |
} | |
}, | |
{ | |
"id": "rec4MvAbq0coRPbUz", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "annoying", | |
"Concise1": "disturbing", | |
"Concise2": "irritating", | |
"Concise3": "aggravating" | |
} | |
}, | |
{ | |
"id": "rec4TSkP3HVgmmGgK", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "upset", | |
"Concise1": "fuming", | |
"Concise2": "in disarray" | |
} | |
}, | |
{ | |
"id": "rec5AQbo8gqO6E4hM", | |
"createdTime": "2020-12-28T22:18:24.000Z", | |
"fields": { | |
"Simple": "exciting", | |
"Concise1": "breathtaking", | |
"Concise2": "astonishing", | |
"Concise3": "inspiring" | |
} | |
}, | |
{ | |
"id": "rec5KT0tsFCifWQxU", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "clumsy", | |
"Concise1": "inept", | |
"Concise2": "unwieldy", | |
"Concise3": "all thumbs", | |
"Concise4": "bumbling" | |
} | |
}, | |
{ | |
"id": "rec5jAB2PQZRcR7aD", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "tame", | |
"Concise1": "subdued", | |
"Concise2": "harmless", | |
"Concise3": "docile", | |
"Concise4": "submissive" | |
} | |
}, | |
{ | |
"id": "rec5riNZATBX5nvtv", | |
"createdTime": "2022-12-24T04:42:07.000Z", | |
"fields": { | |
"Simple": "difficult", | |
"Concise1": "formidable", | |
"Concise2": "herculean", | |
"Concise3": "monumental", | |
"Concise4": "laborious", | |
"Concise5": "arduous" | |
} | |
}, | |
{ | |
"id": "rec6EoIDgfr6zy2zw", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "young", | |
"Concise1": "juvenile", | |
"Concise2": "green", | |
"Concise3": "pubescent" | |
} | |
}, | |
{ | |
"id": "rec6G8RH8dGawW2TX", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "talented", | |
"Concise1": "brilliant", | |
"Concise2": "expert", | |
"Concise3": "ingenious", | |
"Concise4": "masterful" | |
} | |
}, | |
{ | |
"id": "rec6JEWuCkzBBkYjz", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "different", | |
"Concise1": "distinctive", | |
"Concise2": "peculiar", | |
"Concise3": "incomparable" | |
} | |
}, | |
{ | |
"id": "rec6uLKfPMdpigA1C", | |
"createdTime": "2020-12-31T15:59:12.000Z", | |
"fields": { | |
"Simple": "sleepy", | |
"Concise1": "lethargic", | |
"Concise2": "exhausted" | |
} | |
}, | |
{ | |
"id": "rec6x3t86hoLPQzuI", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "rich", | |
"Concise1": "affluent", | |
"Concise2": "prosperous", | |
"Concise3": "opulent", | |
"Concise4": "lavish", | |
"Concise5": "sumptuous" | |
} | |
}, | |
{ | |
"id": "rec7BYugZyR5LNPMi", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "successful", | |
"Concise1": "triumphant", | |
"Concise2": "undefeated", | |
"Concise3": "reigning" | |
} | |
}, | |
{ | |
"id": "rec7FlCTj72Mzs1ML", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "troubled", | |
"Concise1": "disturbed", | |
"Concise2": "neurotic", | |
"Concise3": "psychotic", | |
"Concise4": "tormented" | |
} | |
}, | |
{ | |
"id": "rec7G4qWv8J63Dk2o", | |
"createdTime": "2020-12-27T16:22:11.000Z", | |
"fields": { | |
"Simple": "hard", | |
"Concise1": "backbreaking", | |
"Concise2": "demanding", | |
"Concise3": "formidable", | |
"Concise4": "grueling", | |
"Concise5": "arduous" | |
} | |
}, | |
{ | |
"id": "rec7HWpyPLenkNp9Q", | |
"createdTime": "2022-10-13T03:23:30.000Z", | |
"fields": { | |
"Simple": "dry", | |
"Concise1": "arid" | |
} | |
}, | |
{ | |
"id": "rec7TJ1mmlcydnYVE", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "funny", | |
"Concise1": "hilarious", | |
"Concise2": "hysterical" | |
} | |
}, | |
{ | |
"id": "rec7WbkrBkQHaGVgK", | |
"createdTime": "2022-12-24T04:43:06.000Z", | |
"fields": { | |
"Simple": "special", | |
"Concise1": "exceptional", | |
"Concise2": "precious", | |
"Concise3": "extraordinary", | |
"Concise4": "momentous" | |
} | |
}, | |
{ | |
"id": "rec8Qzt6x63KxCU2T", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "tired", | |
"Concise1": "exhausted", | |
"Concise2": "flagging", | |
"Concise3": "spent" | |
} | |
}, | |
{ | |
"id": "rec8vm2zLPArHOXIn", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "angry", | |
"Concise1": "furious", | |
"Concise2": "enraged", | |
"Concise3": "livid", | |
"Concise4": "fuming" | |
} | |
}, | |
{ | |
"id": "rec91WevG1rpl2G5t", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "uptight", | |
"Concise1": "draconian", | |
"Concise2": "exacting", | |
"Concise3": "prudish" | |
} | |
}, | |
{ | |
"id": "rec9cnCNWDiH1EMsc", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "dirty", | |
"Concise1": "filthy", | |
"Concise2": "unkempt", | |
"Concise3": "disarrayed", | |
"Concise4": "sullied", | |
"Concise5": "disheveled" | |
} | |
}, | |
{ | |
"id": "rec9lHbr0fksgMolv", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "tasty", | |
"Concise1": "delectable", | |
"Concise2": "pungent", | |
"Concise3": "divine", | |
"Concise4": "heavenly" | |
} | |
}, | |
{ | |
"id": "recAAnCrfMxXovD4W", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "clever", | |
"Concise1": "cunning", | |
"Concise2": "keen", | |
"Concise3": "nimble", | |
"Concise4": "quick-witted" | |
} | |
}, | |
{ | |
"id": "recAu6RAdPrlDu5RC", | |
"createdTime": "2020-12-28T19:53:58.000Z", | |
"fields": { | |
"Simple": "clearly", | |
"Concise1": "explicitly", | |
"Concise2": "precisely", | |
"Concise3": "distinctly", | |
"Concise4": "overtly" | |
} | |
}, | |
{ | |
"id": "recB1K67QG6iNCMZ7", | |
"createdTime": "2020-12-27T16:37:27.000Z", | |
"fields": { | |
"Simple": "gay", | |
"Concise1": "Mystik", | |
"Concise2": "Mystik", | |
"Concise3": "Mystik" | |
} | |
}, | |
{ | |
"id": "recB3Le2j3ArYjGoJ", | |
"createdTime": "2020-12-27T01:30:52.000Z", | |
"fields": { | |
"Simple": "complex", | |
"Concise1": "labyrinthine", | |
"Concise2": "convoluted", | |
"Concise3": "byzantine", | |
"Concise4": "perplexing" | |
} | |
}, | |
{ | |
"id": "recBss0nXOoulwVeZ", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "scary", | |
"Concise1": "chilling", | |
"Concise2": "bloodcurdling", | |
"Concise3": "horrifying" | |
} | |
}, | |
{ | |
"id": "recCjOawo0TzgOA8y", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "cool", | |
"Concise1": "neat", | |
"Concise2": "nifty", | |
"Concise3": "dandy", | |
"Concise4": "swell", | |
"Concise5": "composed", | |
"Concise6": "unflappable" | |
} | |
}, | |
{ | |
"id": "recCom5wN83CZ65lk", | |
"createdTime": "2020-12-31T16:16:16.000Z", | |
"fields": { | |
"Simple": "frustrated", | |
"Concise1": "infuriating", | |
"Concise2": "vexed", | |
"Concise3": "irked" | |
} | |
}, | |
{ | |
"id": "recD6r23QmLk7oQWJ", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "bright", | |
"Concise1": "glistening", | |
"Concise2": "dazzling", | |
"Concise3": "beaming", | |
"Concise4": "brilliant", | |
"Concise5": "keen" | |
} | |
}, | |
{ | |
"id": "recD6rrEkuJ26xCrD", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "intelligent", | |
"Concise1": "astute", | |
"Concise2": "adept", | |
"Concise3": "bright", | |
"Concise4": "pointed", | |
"Concise5": "brilliant", | |
"Concise6": "gifted", | |
"Concise7": "ingenious" | |
} | |
}, | |
{ | |
"id": "recD7vUAHVYq43irK", | |
"createdTime": "2020-12-28T20:43:17.000Z", | |
"fields": { | |
"Simple": "skinny", | |
"Concise1": "gangly", | |
"Concise2": "emaciated", | |
"Concise3": "scrawny" | |
} | |
}, | |
{ | |
"id": "recDUK4uVqAoKH6ui", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "concerned", | |
"Concise1": "distressed", | |
"Concise2": "exercised", | |
"Concise3": "perturbed" | |
} | |
}, | |
{ | |
"id": "recESZf8ACKdLJFrr", | |
"createdTime": "2020-12-26T17:38:28.000Z", | |
"fields": { | |
"Simple": "good", | |
"Concise1": "excellent", | |
"Concise2": "exceptional", | |
"Concise3": "marvelous", | |
"Concise4": "super", | |
"Concise5": "sterling", | |
"Concise6": "splendid" | |
} | |
}, | |
{ | |
"id": "recEvPoIYZ6wBc0wS", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "small", | |
"Concise1": "miniscule", | |
"Concise2": "modest", | |
"Concise3": "minute", | |
"Concise4": "insignificant", | |
"Concise5": "petite", | |
"Concise6": "tiny" | |
} | |
}, | |
{ | |
"id": "recFcB2Sy28USHW4D", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "bad", | |
"Concise1": "atrocious", | |
"Concise2": "dreadful", | |
"Concise3": "abominable", | |
"Concise4": "detrimental", | |
"Concise5": "criminal", | |
"Concise6": "vile", | |
"Concise7": "wicked" | |
} | |
}, | |
{ | |
"id": "recGGyZOwxDDxZbzD", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "anxious", | |
"Concise1": "restless", | |
"Concise2": "spooked", | |
"Concise3": "distressed", | |
"Concise4": "agitated" | |
} | |
}, | |
{ | |
"id": "recH47tjvLPvWh1kJ", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "hurt", | |
"Concise1": "crushed", | |
"Concise2": "battered" | |
} | |
}, | |
{ | |
"id": "recIUBH1Su08bkyTo", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "dangerous", | |
"Concise1": "treacherous", | |
"Concise2": "perilous", | |
"Concise3": "formidable" | |
} | |
}, | |
{ | |
"id": "recIuM9bOa5uVPG1G", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "stupid", | |
"Concise1": "foolish", | |
"Concise2": "nonsensical", | |
"Concise3": "half-baked", | |
"Concise4": "mindless", | |
"Concise5": "ludicrous" | |
} | |
}, | |
{ | |
"id": "recIxw0mXDYdVE7Jd", | |
"createdTime": "2020-12-28T19:11:37.000Z", | |
"fields": { | |
"Simple": "entertaining", | |
"Concise1": "absorbing", | |
"Concise2": "captivating", | |
"Concise3": "engrossing", | |
"Concise4": "thrilling", | |
"Concise5": "gripping", | |
"Concise6": "delightful" | |
} | |
}, | |
{ | |
"id": "recJBnmTWK4TVwdcT", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "creepy", | |
"Concise1": "macabre", | |
"Concise2": "ghastly" | |
} | |
}, | |
{ | |
"id": "recJCODndQ9dbpxqM", | |
"createdTime": "2020-12-26T17:38:28.000Z", | |
"fields": { | |
"Simple": "calm", | |
"Concise1": "tranquil", | |
"Concise2": "serene", | |
"Concise3": "placid", | |
"Concise4": "temperate", | |
"Concise5": "zen" | |
} | |
}, | |
{ | |
"id": "recJIQcotDtYYnLPA", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "cautious", | |
"Concise1": "judicious", | |
"Concise2": "circumspect", | |
"Concise3": "calculating" | |
} | |
}, | |
{ | |
"id": "recJZetq9HfcfuHSz", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "frail", | |
"Concise1": "feeble", | |
"Concise2": "decrepit" | |
} | |
}, | |
{ | |
"id": "recJdrLdCy5iaBIBW", | |
"createdTime": "2020-12-28T19:08:12.000Z", | |
"fields": { | |
"Simple": "frequent", | |
"Concise1": "persistent", | |
"Concise2": "incessant", | |
"Concise3": "perpetual", | |
"Concise4": "ceaseless" | |
} | |
}, | |
{ | |
"id": "recJmaY5t7rAhgWnm", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "open", | |
"Concise1": "exposed", | |
"Concise2": "gaping", | |
"Concise3": "revealed" | |
} | |
}, | |
{ | |
"id": "recKImMbO0lBpjPSN", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "expensive", | |
"Concise1": "extravagant", | |
"Concise2": "lavish", | |
"Concise3": "exorbitant" | |
} | |
}, | |
{ | |
"id": "recLJrw0DaYKnTJdU", | |
"createdTime": "2020-12-26T17:38:28.000Z", | |
"fields": { | |
"Simple": "confused", | |
"Concise1": "baffled", | |
"Concise2": "befuddled", | |
"Concise3": "bewildered", | |
"Concise4": "perplexed", | |
"Concise5": "flummoxed" | |
} | |
}, | |
{ | |
"id": "recLPT876hHw4SiRd", | |
"createdTime": "2022-10-13T04:23:52.000Z", | |
"fields": { | |
"Simple": "scared", | |
"Concise1": "terrified", | |
"Concise2": "petrified", | |
"Concise3": "horrified" | |
} | |
}, | |
{ | |
"id": "recLUi3d4ReuuhJ2i", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "faithful", | |
"Concise1": "devoted", | |
"Concise2": "enduring", | |
"Concise3": "unwavering", | |
"Concise4": "ardent" | |
} | |
}, | |
{ | |
"id": "recLpzuJA9VEtcOTR", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "brave", | |
"Concise1": "audacious", | |
"Concise2": "valiant", | |
"Concise3": "resolute" | |
} | |
}, | |
{ | |
"id": "recMd8Fr2KjOzReEZ", | |
"createdTime": "2020-12-28T01:44:25.000Z", | |
"fields": { | |
"Simple": "sexy", | |
"Concise1": "tantalizing", | |
"Concise2": "seductive", | |
"Concise3": "provocative" | |
} | |
}, | |
{ | |
"id": "recMiCiSAKV927GWw", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "disgusted", | |
"Concise1": "appalled", | |
"Concise2": "outraged", | |
"Concise3": "abhorred", | |
"Concise4": "repelled", | |
"Concise5": "repulsed" | |
} | |
}, | |
{ | |
"id": "recMj8H0fkJwru7RH", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "glad", | |
"Concise1": "overjoyed", | |
"Concise2": "contented", | |
"Concise3": "beaming", | |
"Concise4": "gleeful" | |
} | |
}, | |
{ | |
"id": "recMpzpu21l6i3iOH", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "fair", | |
"Concise1": "courteous", | |
"Concise2": "honorable", | |
"Concise3": "principled" | |
} | |
}, | |
{ | |
"id": "recNbWYDXFnhpXU9E", | |
"createdTime": "2022-10-13T04:34:09.000Z", | |
"fields": { | |
"Simple": "sweet", | |
"Concise1": "saccharine", | |
"Concise2": "cloying", | |
"Concise3": "delectable" | |
} | |
}, | |
{ | |
"id": "recNkwKvtObjksiY1", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "ashamed", | |
"Concise1": "humiliated", | |
"Concise2": "repentant", | |
"Concise3": "contrite" | |
} | |
}, | |
{ | |
"id": "recNl45PU5FHAwNe9", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "useless", | |
"Concise1": "futile", | |
"Concise2": "meaningless", | |
"Concise3": "expendable" | |
} | |
}, | |
{ | |
"id": "recNpXosuxAEisukN", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "new", | |
"Concise1": "novel", | |
"Concise2": "state-of-the-art", | |
"Concise3": "cutting edge" | |
} | |
}, | |
{ | |
"id": "recNyijfaee8kHFLq", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "awful", | |
"Concise1": "appalling", | |
"Concise2": "atrocious", | |
"Concise3": "dire", | |
"Concise4": "harrowing", | |
"Concise5": "deplorable", | |
"Concise6": "abominable" | |
} | |
}, | |
{ | |
"id": "recO0CDJf6Jt8cCFD", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "lucky", | |
"Concise1": "blessed", | |
"Concise2": "fortunate" | |
} | |
}, | |
{ | |
"id": "recO3Q0VGEJvvBftB", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "careful", | |
"Concise1": "fastidious", | |
"Concise2": "scrupulous", | |
"Concise3": "meticulous", | |
"Concise4": "vigilant", | |
"Concise5": "deliberate" | |
} | |
}, | |
{ | |
"id": "recO4TnoBOymEOBGH", | |
"createdTime": "2020-12-31T16:16:57.000Z", | |
"fields": { | |
"Simple": "aroused", | |
"Concise1": "horny", | |
"Concise2": "lascivious" | |
} | |
}, | |
{ | |
"id": "recOs9ii6ajGMSMW9", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "useful", | |
"Concise1": "all-purpose", | |
"Concise2": "instrumental" | |
} | |
}, | |
{ | |
"id": "recOuLWNu45HocHpY", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "mad", | |
"Concise1": "demented", | |
"Concise2": "psychotic", | |
"Concise3": "frenzied", | |
"Concise4": "furious", | |
"Concise5": "enraged", | |
"Concise6": "livid", | |
"Concise7": "fuming" | |
} | |
}, | |
{ | |
"id": "recPC6kZcFTWc14Tb", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "outrageous", | |
"Concise1": "preposterous", | |
"Concise2": "unconscionable" | |
} | |
}, | |
{ | |
"id": "recPGFiiiooSa5g6t", | |
"createdTime": "2020-12-31T16:05:23.000Z", | |
"fields": { | |
"Simple": "unique", | |
"Concise1": "singular", | |
"Concise2": "exceptional", | |
"Concise3": "incomparable" | |
} | |
}, | |
{ | |
"id": "recPSnFfOb6Ysjjuc", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "large", | |
"Concise1": "colossal", | |
"Concise2": "enormous", | |
"Concise3": "hulking", | |
"Concise4": "strapping", | |
"Concise5": "thundering", | |
"Concise6": "walloping", | |
"Concise7": "momentous" | |
} | |
}, | |
{ | |
"id": "recPYpHLyawCSHl9M", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "fancy", | |
"Concise1": "gaudy", | |
"Concise2": "lavish", | |
"Concise3": "ornate", | |
"Concise4": "sumptuous", | |
"Concise5": "baroque", | |
"Concise6": "ostentatious" | |
} | |
}, | |
{ | |
"id": "recQ02aB48cSb25N9", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "fast", | |
"Concise1": "rapid", | |
"Concise2": "nimble", | |
"Concise3": "dashing", | |
"Concise4": "breakneck" | |
} | |
}, | |
{ | |
"id": "recQGnSS5lDYMh89V", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "important", | |
"Concise1": "decisive", | |
"Concise2": "paramount", | |
"Concise3": "imperative", | |
"Concise4": "critical", | |
"Concise5": "distinguished" | |
} | |
}, | |
{ | |
"id": "recQQq6eyM6yGL8YF", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "public", | |
"Concise1": "overt", | |
"Concise2": "exposed", | |
"Concise3": "universal" | |
} | |
}, | |
{ | |
"id": "recQXVCyglkJwwPBt", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "plain", | |
"Concise1": "stark", | |
"Concise2": "blunt", | |
"Concise3": "austere" | |
} | |
}, | |
{ | |
"id": "recRD0aw6XnUQZVbr", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "cute", | |
"Concise1": "adorable", | |
"Concise2": "dainty", | |
"Concise3": "precious", | |
"Concise4": "delectable" | |
} | |
}, | |
{ | |
"id": "recRKw8IZyKv4scDR", | |
"createdTime": "2020-12-28T16:09:17.000Z", | |
"fields": { | |
"Simple": "sad", | |
"Concise1": "inconsolable", | |
"Concise2": "miserable", | |
"Concise3": "gloomy", | |
"Concise4": "somber", | |
"Concise5": "dispirited", | |
"Concise6": "forlorn" | |
} | |
}, | |
{ | |
"id": "recS8yRNf7trB6gbs", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "gentle", | |
"Concise1": "placid", | |
"Concise2": "tame", | |
"Concise3": "benign", | |
"Concise4": "serene", | |
"Concise5": "subdued" | |
} | |
}, | |
{ | |
"id": "recSY0zkE5bbiss4Y", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "quiet", | |
"Concise1": "hushed", | |
"Concise2": "muted", | |
"Concise3": "reticent", | |
"Concise4": "reserved", | |
"Concise5": "taciturn", | |
"Concise6": "faint" | |
} | |
}, | |
{ | |
"id": "recSdiUsHlJXKU5eO", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "rude", | |
"Concise1": "boorish", | |
"Concise2": "vulgar", | |
"Concise3": "ill-mannered", | |
"Concise4": "discourteous", | |
"Concise5": "choice" | |
} | |
}, | |
{ | |
"id": "recSe4wW1lUjkO6CR", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "envious", | |
"Concise1": "hankering", | |
"Concise2": "yearning" | |
} | |
}, | |
{ | |
"id": "recT5UbHeXmtCyfWR", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "right", | |
"Concise1": "legitimate", | |
"Concise2": "perfect", | |
"Concise3": "indubitable" | |
} | |
}, | |
{ | |
"id": "recTin4fjWljyb6KK", | |
"createdTime": "2020-12-28T01:44:08.000Z", | |
"fields": { | |
"Simple": "silly", | |
"Concise1": "preposterous", | |
"Concise2": "frivolous", | |
"Concise3": "ludicrous" | |
} | |
}, | |
{ | |
"id": "recTq7fcW8DbgWPx3", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "pretty", | |
"Concise1": "charming", | |
"Concise2": "elegant", | |
"Concise3": "beautiful", | |
"Concise4": "dazzling", | |
"Concise5": "stunning", | |
"Concise6": "bewitching", | |
"Concise7": "ravishing", | |
"Concise8": "statuesque", | |
"Concise9": "sublime" | |
} | |
}, | |
{ | |
"id": "recUAQWCAovZj8Daw", | |
"createdTime": "2020-12-28T17:37:46.000Z", | |
"fields": { | |
"Simple": "smelly", | |
"Concise1": "rancid", | |
"Concise2": "putrid", | |
"Concise3": "foul", | |
"Concise4": "rank", | |
"Concise5": "pungent" | |
} | |
}, | |
{ | |
"id": "recUNQsMtXltcCcx8", | |
"createdTime": "2022-10-13T04:31:18.000Z", | |
"fields": { | |
"Simple": "wet", | |
"Concise1": "soaked", | |
"Concise2": "drenched", | |
"Concise3": "swamped" | |
} | |
}, | |
{ | |
"id": "recUZFVV0QZ84H9Ru", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "nervous", | |
"Concise1": "skittish", | |
"Concise2": "distressed", | |
"Concise3": "high-strung" | |
} | |
} | |
], | |
"offset": "itrO9xv44HG5uxAow/recUZFVV0QZ84H9Ru" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"records": [ | |
{ | |
"id": "recUjmQhxrxHQmIGF", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "quaint", | |
"Concise1": "charming", | |
"Concise2": "whimsical", | |
"Concise3": "enchanting", | |
"Concise4": "bizarre" | |
} | |
}, | |
{ | |
"id": "recVUOOvULit7301w", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "difficult", | |
"Concise1": "laborious", | |
"Concise2": "strenuous", | |
"Concise3": "challenging" | |
} | |
}, | |
{ | |
"id": "recVaEeNY6vjUOl6Z", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "tender", | |
"Concise1": "supple", | |
"Concise2": "delicate", | |
"Concise3": "raw", | |
"Concise4": "green" | |
} | |
}, | |
{ | |
"id": "recWE5aqfpsJc577d", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "able", | |
"Concise1": "proficient", | |
"Concise2": "adept", | |
"Concise3": "cunning" | |
} | |
}, | |
{ | |
"id": "recXJV1pCnM6E5E9M", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "joyful", | |
"Concise1": "exuberant", | |
"Concise2": "ecstatic", | |
"Concise3": "elated", | |
"Concise4": "jubilant", | |
"Concise5": "rapturous", | |
"Concise6": "effervescent", | |
"Concise7": "euphoric" | |
} | |
}, | |
{ | |
"id": "recXNjfrZwBdF4vcl", | |
"createdTime": "2020-12-28T19:24:16.000Z", | |
"fields": { | |
"Simple": "outspoken", | |
"Concise1": "brazen", | |
"Concise2": "rambunctious", | |
"Concise3": "unreserved", | |
"Concise4": "forthright" | |
} | |
}, | |
{ | |
"id": "recXWwvIplIR2UI0u", | |
"createdTime": "2022-12-24T05:41:27.000Z", | |
"fields": { | |
"Simple": "offensive", | |
"Concise1": "foul", | |
"Concise2": "choice", | |
"Concise3": "repugnant", | |
"Concise4": "vile", | |
"Concise5": "abhorrent", | |
"Concise6": "distasteful", | |
"Concise7": "vulgar" | |
} | |
}, | |
{ | |
"id": "recXzV8nIf64JiqYW", | |
"createdTime": "2020-12-28T17:44:56.000Z", | |
"fields": { | |
"Simple": "cold", | |
"Concise1": "siberian", | |
"Concise2": "arctic", | |
"Concise3": "frigid", | |
"Concise4": "freezing", | |
"Concise5": "glacial", | |
"Concise6": "bitterly cold", | |
"Concise7": "inclement" | |
} | |
}, | |
{ | |
"id": "recY7ZzJytrG2dG5B", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "colorful", | |
"Concise1": "gaudy", | |
"Concise2": "vivid", | |
"Concise3": "ostentatious", | |
"Concise4": "garish" | |
} | |
}, | |
{ | |
"id": "recYciRNpUU3iJoyY", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "encouraging", | |
"Concise1": "auspicious", | |
"Concise2": "propitious" | |
} | |
}, | |
{ | |
"id": "recYeNiXdeGdDbLqr", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "obnoxious", | |
"Concise1": "abhorrent", | |
"Concise2": "loathsome", | |
"Concise3": "reprehensible", | |
"Concise4": "nauseating" | |
} | |
}, | |
{ | |
"id": "recZ8qDBcWueYbZBF", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "obedient", | |
"Concise1": "subservient", | |
"Concise2": "submissive", | |
"Concise3": "resigned" | |
} | |
}, | |
{ | |
"id": "recZcBfJuz9vsNagM", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "powerful", | |
"Concise1": "preeminent", | |
"Concise2": "mighty" | |
} | |
}, | |
{ | |
"id": "recZfFiPn4lvgXoki", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "poor", | |
"Concise1": "destitute", | |
"Concise2": "indigent" | |
} | |
}, | |
{ | |
"id": "recaAixlFzBrsfpc6", | |
"createdTime": "2022-12-24T05:37:35.000Z", | |
"fields": { | |
"Simple": "best", | |
"Concise1": "finest", | |
"Concise2": "unrivaled", | |
"Concise3": "foremost", | |
"Concise4": "choice", | |
"Concise5": "premier", | |
"Concise6": "A1" | |
} | |
}, | |
{ | |
"id": "recaCmlsMy9WdB3CO", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "crowded", | |
"Concise1": "teeming", | |
"Concise2": "jam-packed", | |
"Concise3": "stuffed", | |
"Concise4": "brimming" | |
} | |
}, | |
{ | |
"id": "recaYDy95H5QDDvmk", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "strange", | |
"Concise1": "distinctive", | |
"Concise2": "peculiar", | |
"Concise3": "bizarre", | |
"Concise4": "extraordinary" | |
} | |
}, | |
{ | |
"id": "recadYa7VZhQemMbt", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "helpful", | |
"Concise1": "essential", | |
"Concise2": "invaluable" | |
} | |
}, | |
{ | |
"id": "recaeiYD1cDaJpzfF", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "mean", | |
"Concise1": "wicked", | |
"Concise2": "malicious", | |
"Concise3": "vile", | |
"Concise4": "malign" | |
} | |
}, | |
{ | |
"id": "recalHrffv2PBXDSZ", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "clean", | |
"Concise1": "immaculate", | |
"Concise2": "sparkling" | |
} | |
}, | |
{ | |
"id": "recbPcQrPFr7eSrGz", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "shy", | |
"Concise1": "timid", | |
"Concise2": "apprehensive", | |
"Concise3": "sheepish", | |
"Concise4": "coy", | |
"Concise5": "bashful" | |
} | |
}, | |
{ | |
"id": "recd3a1XBz6xBiogD", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "dumb", | |
"Concise1": "dim-witted", | |
"Concise2": "moronic", | |
"Concise3": "feebleminded" | |
} | |
}, | |
{ | |
"id": "recd4TekpRlzA9C7x", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "lonely", | |
"Concise1": "deserted", | |
"Concise2": "desolate", | |
"Concise3": "destitute" | |
} | |
}, | |
{ | |
"id": "recdEucI1QXw4txSr", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "happy", | |
"Concise1": "ecstatic", | |
"Concise2": "overjoyed", | |
"Concise3": "delighted", | |
"Concise4": "elated", | |
"Concise5": "jubilant", | |
"Concise6": "intoxicated" | |
} | |
}, | |
{ | |
"id": "recdT05DH3fpsDFj8", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "determined", | |
"Concise1": "tenacious", | |
"Concise2": "unwavering" | |
} | |
}, | |
{ | |
"id": "recdZxxo0bWA7N1y2", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "pleasant", | |
"Concise1": "heavenly", | |
"Concise2": "enticing", | |
"Concise3": "delectable" | |
} | |
}, | |
{ | |
"id": "recddnbKlkrbCeUeJ", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "cruel", | |
"Concise1": "brutal", | |
"Concise2": "cold-blooded", | |
"Concise3": "heartless", | |
"Concise4": "merciless", | |
"Concise5": "wicked" | |
} | |
}, | |
{ | |
"id": "recdfKvUeozXDVcMD", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "smart", | |
"Concise1": "astute", | |
"Concise2": "adept", | |
"Concise3": "bright", | |
"Concise4": "brilliant", | |
"Concise5": "gifted", | |
"Concise6": "ingenious" | |
} | |
}, | |
{ | |
"id": "recdpOgMIq1kTsUSz", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "curious", | |
"Concise1": "inquisitive", | |
"Concise2": "inquiring", | |
"Concise3": "meddling" | |
} | |
}, | |
{ | |
"id": "recdxf6PAg1n1FKpD", | |
"createdTime": "2020-12-28T18:57:21.000Z", | |
"fields": { | |
"Simple": "common", | |
"Concise1": "humdrum", | |
"Concise2": "pedestrian", | |
"Concise3": "mundane", | |
"Concise4": "typical" | |
} | |
}, | |
{ | |
"id": "recdzBMjU8vYx82Ku", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "outstanding", | |
"Concise1": "distinguished", | |
"Concise2": "preeminent" | |
} | |
}, | |
{ | |
"id": "rece4fK0bzbGH06ag", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "thoughtful", | |
"Concise1": "considerate", | |
"Concise2": "circumspect", | |
"Concise3": "heedful", | |
"Concise4": "compassionate" | |
} | |
}, | |
{ | |
"id": "recedQijnjH2BxJRw", | |
"createdTime": "2020-12-28T17:42:51.000Z", | |
"fields": { | |
"Simple": "slow", | |
"Concise1": "lethargic", | |
"Concise2": "sluggish", | |
"Concise3": "lackadaisical", | |
"Concise4": "protracted", | |
"Concise5": "ponderous" | |
} | |
}, | |
{ | |
"id": "recetz6X7Q5rHYs0s", | |
"createdTime": "2021-07-22T15:30:29.000Z", | |
"fields": { | |
"Simple": "deeply", | |
"Concise1": "passionately", | |
"Concise2": "severely", | |
"Concise3": "vehemently" | |
} | |
}, | |
{ | |
"id": "recf5lHN6bBBiDAZx", | |
"createdTime": "2022-10-13T03:45:34.000Z", | |
"fields": { | |
"Simple": "loud", | |
"Concise1": "deafening", | |
"Concise2": "boisterous", | |
"Concise3": "blaring", | |
"Concise4": "earsplitting", | |
"Concise5": "booming", | |
"Concise6": "thunderous" | |
} | |
}, | |
{ | |
"id": "recfDxGhNryOlFgVK", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "comfortable", | |
"Concise1": "cozy", | |
"Concise2": "relaxed", | |
"Concise3": "snug", | |
"Concise4": "contented" | |
} | |
}, | |
{ | |
"id": "recfKD1TJbX9wpssf", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "selfish", | |
"Concise1": "egotistical", | |
"Concise2": "narcissistic", | |
"Concise3": "small-minded" | |
} | |
}, | |
{ | |
"id": "recfcZHh771PVvzbs", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "excited", | |
"Concise1": "hysterical", | |
"Concise2": "thrilled", | |
"Concise3": "inflamed", | |
"Concise4": "feverish" | |
} | |
}, | |
{ | |
"id": "recfqT23Va0iFm105", | |
"createdTime": "2022-10-13T04:02:35.000Z", | |
"fields": { | |
"Simple": "tall", | |
"Concise1": "towering", | |
"Concise2": "colossal", | |
"Concise3": "skyscraping" | |
} | |
}, | |
{ | |
"id": "recfrCxDUXjlDn45x", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "fat", | |
"Concise1": "gargantuan", | |
"Concise2": "porcine", | |
"Concise3": "bulging" | |
} | |
}, | |
{ | |
"id": "recfvB22EY687q4Wj", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "high", | |
"Concise1": "lofty", | |
"Concise2": "grand", | |
"Concise3": "steep" | |
} | |
}, | |
{ | |
"id": "recgXMACDSgK4DjE9", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "enthusiastic", | |
"Concise1": "fanatical", | |
"Concise2": "exuberant", | |
"Concise3": "fervent", | |
"Concise4": "rabid", | |
"Concise5": "zealous" | |
} | |
}, | |
{ | |
"id": "rechPbOYRyHPqe9ai", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "arrogant", | |
"Concise1": "pretentious", | |
"Concise2": "audacious", | |
"Concise3": "brazen", | |
"Concise4": "impudent" | |
} | |
}, | |
{ | |
"id": "rechVRrGLOI4tiedD", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "courageous", | |
"Concise1": "tenacious", | |
"Concise2": "adventurous", | |
"Concise3": "gutsy" | |
} | |
}, | |
{ | |
"id": "rechiC63O6MdWKn1k", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "perfect", | |
"Concise1": "impeccable", | |
"Concise2": "foolproof", | |
"Concise3": "sublime" | |
} | |
}, | |
{ | |
"id": "reciOg615E6HiKCHT", | |
"createdTime": "2020-12-31T16:12:17.000Z", | |
"fields": { | |
"Simple": "frustrating", | |
"Concise1": "irksome", | |
"Concise2": "vexing", | |
"Concise3": "infuriating" | |
} | |
}, | |
{ | |
"id": "reciT1Um1cDJ5DigO", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "big", | |
"Concise1": "colossal", | |
"Concise2": "enormous", | |
"Concise3": "hulking", | |
"Concise4": "strapping", | |
"Concise5": "thundering", | |
"Concise6": "walloping", | |
"Concise7": "momentous" | |
} | |
}, | |
{ | |
"id": "recj0vakQSanWhXwx", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "attractive", | |
"Concise1": "bewitching", | |
"Concise2": "captivating", | |
"Concise3": "enchanting", | |
"Concise4": "enthralling", | |
"Concise5": "magnetic", | |
"Concise6": "tantalizing" | |
} | |
}, | |
{ | |
"id": "recjkarKnLy5iBID3", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "depressed", | |
"Concise1": "dejected", | |
"Concise2": "downcast" | |
} | |
}, | |
{ | |
"id": "recjngA9LxuMA2tTQ", | |
"createdTime": "2022-12-24T05:15:50.000Z", | |
"fields": { | |
"Simple": "serious", | |
"Concise1": "sincere", | |
"Concise2": "austere", | |
"Concise3": "earnest", | |
"Concise4": "rigorous", | |
"Concise5": "solemn", | |
"Concise6": "no-nonsense", | |
"Concise7": "bleak", | |
"Concise8": "forbidding" | |
} | |
}, | |
{ | |
"id": "recjoQIZyCMMnKKiv", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "tough", | |
"Concise1": "tenacious", | |
"Concise2": "resilient", | |
"Concise3": "seasoned" | |
} | |
}, | |
{ | |
"id": "reck65kY1Viwj3GQ9", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "jealous", | |
"Concise1": "hankering", | |
"Concise2": "yearning" | |
} | |
}, | |
{ | |
"id": "reck8eRMwI5pVZLnU", | |
"createdTime": "2020-12-28T18:39:25.000Z", | |
"fields": { | |
"Simple": "fun", | |
"Concise1": "exhilarating", | |
"Concise2": "intoxicating", | |
"Concise3": "thrilling" | |
} | |
}, | |
{ | |
"id": "reckKn5XxgmJ5ymoz", | |
"createdTime": "2020-12-31T16:04:39.000Z", | |
"fields": { | |
"Simple": "thirsty", | |
"Concise1": "parched", | |
"Concise2": "cottonmouthed" | |
} | |
}, | |
{ | |
"id": "recki4M6S7hBAJjko", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "painful", | |
"Concise1": "excruciating", | |
"Concise2": "agonizing" | |
} | |
}, | |
{ | |
"id": "recklZFVam0usIwbZ", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "early", | |
"Concise1": "prematurely", | |
"Concise2": "fresh", | |
"Concise3": "precipitately" | |
} | |
}, | |
{ | |
"id": "reckrQrX36AtQErD7", | |
"createdTime": "2022-12-24T05:34:31.000Z", | |
"fields": { | |
"Simple": "thoughtfully", | |
"Concise1": "compassionately", | |
"Concise2": "circumspectly", | |
"Concise3": "heedfully", | |
"Concise4": "considerately", | |
"Concise5": "mindfully" | |
} | |
}, | |
{ | |
"id": "recl1cyEk63obBTm0", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "hungry", | |
"Concise1": "famished", | |
"Concise2": "ravenous", | |
"Concise3": "starving" | |
} | |
}, | |
{ | |
"id": "reclXAQ1wR9o1Rqeh", | |
"createdTime": "2020-12-28T19:56:36.000Z", | |
"fields": { | |
"Simple": "easy", | |
"Concise1": "elementary", | |
"Concise2": "picnic", | |
"Concise3": "effortless" | |
} | |
}, | |
{ | |
"id": "reclXUd2kI45oiKfa", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "energetic", | |
"Concise1": "tireless", | |
"Concise2": "spry", | |
"Concise3": "rocking", | |
"Concise4": "spirited" | |
} | |
}, | |
{ | |
"id": "recmCaVevrDQ6f8I8", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "lovely", | |
"Concise1": "alluring", | |
"Concise2": "captivating", | |
"Concise3": "enchanting", | |
"Concise4": "exquisite" | |
} | |
}, | |
{ | |
"id": "recn7CvssCeEEfNFn", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "ugly", | |
"Concise1": "hideous", | |
"Concise2": "grotesque", | |
"Concise3": "horrid", | |
"Concise4": "unsightly", | |
"Concise5": "foul" | |
} | |
}, | |
{ | |
"id": "recnIMM6f3Ey4xzuB", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "kind", | |
"Concise1": "compassionate", | |
"Concise2": "considerate", | |
"Concise3": "benevolent" | |
} | |
}, | |
{ | |
"id": "recnQJvkz0aBSYh4U", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "boring", | |
"Concise1": "tedious", | |
"Concise2": "humdrum", | |
"Concise3": "monotonous", | |
"Concise4": "mundane", | |
"Concise5": "tiresome", | |
"Concise6": "dreary" | |
} | |
}, | |
{ | |
"id": "recp6NHOPb3Ag9jk1", | |
"createdTime": "2022-12-24T05:21:18.000Z", | |
"fields": { | |
"Simple": "seriously", | |
"Concise1": "ernestly", | |
"Concise2": "solemnly", | |
"Concise3": "rigorously", | |
"Concise4": "sincerely", | |
"Concise5": "fervently", | |
"Concise6": "zealously" | |
} | |
}, | |
{ | |
"id": "recp6v9wjmP5erymY", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "old", | |
"Concise1": "ancient", | |
"Concise2": "decrepit", | |
"Concise3": "dilapidated", | |
"Concise4": "geriatric" | |
} | |
}, | |
{ | |
"id": "recpV5YKyVtPlcRfF", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "dark", | |
"Concise1": "somber", | |
"Concise2": "bleak", | |
"Concise3": "morbid", | |
"Concise4": "sinister" | |
} | |
}, | |
{ | |
"id": "recpf5sQnidfdzU0s", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "nervous", | |
"Concise1": "shrinking", | |
"Concise2": "neurotic", | |
"Concise3": "jittery" | |
} | |
}, | |
{ | |
"id": "recqj3r5IxoWJ14Vh", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "busy", | |
"Concise1": "buried", | |
"Concise2": "engrossed", | |
"Concise3": "slaving", | |
"Concise4": "bustling", | |
"Concise5": "restless" | |
} | |
}, | |
{ | |
"id": "recqmT4DYPGG3X4t1", | |
"createdTime": "2020-12-28T19:36:38.000Z", | |
"fields": { | |
"Simple": "necessary", | |
"Concise1": "paramount", | |
"Concise2": "imperative", | |
"Concise3": "imminent", | |
"Concise4": "vital" | |
} | |
}, | |
{ | |
"id": "recrswDqiXAOkAPcg", | |
"createdTime": "2020-12-27T16:25:06.000Z", | |
"fields": { | |
"Simple": "clear", | |
"Concise1": "crystal", | |
"Concise2": "explicit", | |
"Concise3": "precise", | |
"Concise4": "overt" | |
} | |
}, | |
{ | |
"id": "recsGnvsTAWVhD45J", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "wrong", | |
"Concise1": "unsound", | |
"Concise2": "reprehensible", | |
"Concise3": "flawed" | |
} | |
}, | |
{ | |
"id": "recsZu9PsKMx3Qm8E", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "embarrassed", | |
"Concise1": "mortified", | |
"Concise2": "repentant", | |
"Concise3": "abashed", | |
"Concise4": "humiliated" | |
} | |
}, | |
{ | |
"id": "rect7yDjGvkL70oCT", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "famous", | |
"Concise1": "distinguished", | |
"Concise2": "eminent", | |
"Concise3": "preeminent", | |
"Concise4": "renowned", | |
"Concise5": "exalted", | |
"Concise6": "peerless" | |
} | |
}, | |
{ | |
"id": "recuMJfU4qnrRv4pn", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "long", | |
"Concise1": "protracted", | |
"Concise2": "far-reaching", | |
"Concise3": "long-winded", | |
"Concise4": "dragging" | |
} | |
}, | |
{ | |
"id": "recuXlXvhu1ulIltg", | |
"createdTime": "2022-10-13T04:27:20.000Z", | |
"fields": { | |
"Simple": "weird", | |
"Concise1": "eccentric", | |
"Concise2": "bizarre", | |
"Concise3": "outlandish", | |
"Concise4": "peculiar", | |
"Concise5": "queer", | |
"Concise6": "uncanny" | |
} | |
}, | |
{ | |
"id": "recvZ2JbEJWkp86PY", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "filthy", | |
"Concise1": "obscene", | |
"Concise2": "putrid", | |
"Concise3": "repulsive", | |
"Concise4": "despicable" | |
} | |
}, | |
{ | |
"id": "recvtXXVvFh7xQ2Xk", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "evil", | |
"Concise1": "heinous", | |
"Concise2": "vile", | |
"Concise3": "wicked", | |
"Concise4": "atrocious", | |
"Concise5": "damnable", | |
"Concise6": "repugnant" | |
} | |
}, | |
{ | |
"id": "recvvA58gKNyxt4Kd", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "crazy", | |
"Concise1": "lunatic", | |
"Concise2": "delirious", | |
"Concise3": "ludicrous", | |
"Concise4": "ridiculous", | |
"Concise5": "hysterical" | |
} | |
}, | |
{ | |
"id": "recvzUCq8k3nFnrmR", | |
"createdTime": "2022-10-13T03:57:18.000Z", | |
"fields": { | |
"Simple": "strong", | |
"Concise1": "strapping", | |
"Concise2": "stout", | |
"Concise3": "hulking", | |
"Concise4": "brawny", | |
"Concise5": "stalwart" | |
} | |
}, | |
{ | |
"id": "recwB4VsvSYkRtr05", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "ill", | |
"Concise1": "anemic", | |
"Concise2": "lifeless", | |
"Concise3": "listless" | |
} | |
}, | |
{ | |
"id": "recx8loalbHLrS00n", | |
"createdTime": "2020-12-28T19:14:36.000Z", | |
"fields": { | |
"Simple": "willing", | |
"Concise1": "eager", | |
"Concise2": "enthusiastic", | |
"Concise3": "fervent", | |
"Concise4": "ardent" | |
} | |
}, | |
{ | |
"id": "recxOjy4f58imnNR4", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "beautiful", | |
"Concise1": "dazzling", | |
"Concise2": "stunning", | |
"Concise3": "bewitching", | |
"Concise4": "ravishing", | |
"Concise5": "statuesque", | |
"Concise6": "sublime" | |
} | |
}, | |
{ | |
"id": "recxSqAJehGveNc0X", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "friendly", | |
"Concise1": "benevolent", | |
"Concise2": "benign" | |
} | |
}, | |
{ | |
"id": "recxXaS3JLJ99Stk5", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "outgoing", | |
"Concise1": "gregarious", | |
"Concise2": "unrestrained" | |
} | |
}, | |
{ | |
"id": "recxbksEpd0RtiNVF", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "handsome", | |
"Concise1": "statuesque", | |
"Concise2": "stunning", | |
"Concise3": "sharp" | |
} | |
}, | |
{ | |
"id": "recy0Kpk8rcAoQEMy", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "wild", | |
"Concise1": "savage", | |
"Concise2": "feral", | |
"Concise3": "tempestuous" | |
} | |
}, | |
{ | |
"id": "recyTQINP5V7Mu0sL", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "fragile", | |
"Concise1": "feeble", | |
"Concise2": "frail" | |
} | |
}, | |
{ | |
"id": "recym4f5AumYA6U5t", | |
"createdTime": "2020-12-26T17:40:40.000Z", | |
"fields": { | |
"Simple": "nice", | |
"Concise1": "charming", | |
"Concise2": "delightful", | |
"Concise3": "alluring" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment