Intro to JSON knowledge check Breaking down the basics of JSON for automation. Question Title * What is your work email?This should be your Rewst email address Question Title * Which of the following best describes JSON in the context of automation? It’s a format used to structure data so that different systems can understand and exchange information. It’s a programming language used to write automation scripts. It’s a tool that converts manual tasks into automated workflows. It’s a way to secure data by encrypting it before sending it to other systems. Question Title * Imagine you’re checking the results of a Rewst workflow that retrieves weather data for your “Night on the Town” package. Which of the following best describes how the data is presented in JSON format? A long, random string of text with no labels A neatly organized structure with labeled data, like “temperature” and “forecast” A list of tasks with specific details A graph showing weather trends over time Question Title * In Rewst, workflow results are organized and presented in a large folder called __________. Context Results Reports Workspace Question Title * How is JSON similar to a folder system on your computer? It randomly stores data without any labels. It organizes data into labeled folders and subfolders, making it easy to find specific information. It automatically deletes data after a workflow runs. It requires manual input to categorize data. Question Title * Which of the following examples best represents a JSON structure? `{ 'Name': 'John Doe', 'Age': 30, 'Address': [ 123 Main St, New York, NY ] }` `{ "Name": "John Doe", "Age": 30, "Address": { "Street": "123 Main St", "City": "New York", "State": "NY" } }` “`Name" = "John Doe"; "Age" = 30; "Address" = "123 Main St, New York, NY";` `{ "John Doe", "30", "New York" }` Done