Prompt 1: Generate a machine-computable description of Tesla Model X Response: ## JSON Start ## { "model": "Tesla Model X", "year": 2021, "body_style": "SUV", "seating_capacity": 5, "drive": "Dual Motor All-Wheel Drive", "battery": { "capacity": "100 kWh", "range": "360 miles (EPA est.)", "charging": { "supercharging": "up to 170 miles in 30 minutes", "home_charging": "11.5 kW max (48A)", "outlet_charging": "NEMA 14-50" } }, "performance": { "0-60 mph": "2.5 seconds", "top_speed": "163 mph", "horsepower": "670 hp", "torque": "1,050 lb-ft" }, "dimensions": { "length": "198.3 in", "width": "81.6 in", "height": "66.3 in", "wheelbase": "116.7 in" }, "features": [ "Falcon Wing doors", "17-inch touchscreen display", "Smart Summon", "Autopilot advanced safety and convenience features", "Premium interior materials", "Heated front and rear seats", "Ventilated front seats", "Premium audio system", "Wireless phone charging", "Towing capacity of up to 5,000 pounds" ] } ## JSON End ## Prompt 2: Repeat, using JSON-LD . Response: ## JSON-LD Start ## { "@context": "https://schema.org/", "@type": "Product", "name": "Tesla Model X", "model": "Model X", "year": 2021, "bodyStyle": "SUV", "seatingCapacity": 5, "driveWheelConfiguration": "Dual Motor All-Wheel Drive", "batterySpecification": { "@type": "BatterySpecification", "batteryCapacity": "100 kWh", "batteryRange": "360 miles (EPA est.)", "chargingTime": { "@type": "ChargingTime", "supercharging": "up to 170 miles in 30 minutes", "homeCharging": "11.5 kW max (48A)", "outletCharging": "NEMA 14-50" } }, "performance": { "@type": "QuantitativeValue", "value": "2.5 seconds", "unitText": "seconds", "name": "0-60 mph" }, "topSpeed": { "@type": "QuantitativeValue", "value": "163 mph", "unitText": "miles per hour" }, "powerOutput": { "@type": "QuantitativeValue", "value": "670 hp", "unitText": "horsepower" }, "torque": { "@type": "QuantitativeValue", "value": "1,050 lb-ft", "unitText": "pound-foot" }, "dimensions": { "@type": "QuantitativeValue", "value": "198.3 in", "unitText": "inches", "name": "length" }, "width": { "@type": "QuantitativeValue", "value": "81.6 in", "unitText": "inches" }, "height": { "@type": "QuantitativeValue", "value": "66.3 in", "unitText": "inches" }, "wheelbase": { "@type": "QuantitativeValue", "value": "116.7 in", "unitText": "inches" }, "additionalProperty": [ { "@type": "PropertyValue", "name": "Features", "value": [ "Falcon Wing doors", "17-inch touchscreen display", "Smart Summon", "Autopilot advanced safety and convenience features", "Premium interior materials", "Heated front and rear seats", "Ventilated front seats", "Premium audio system", "Wireless phone charging", "Towing capacity of up to 5,000 pounds" ] } ] } ## JSON-LD End ## Prompt 3: Repeat, using RDF Turtle with subjects and objects denoted using a hash-based hyperlink and `## Turtle Start ##` and `## Turtle End ##` comments around the output. Response: ## Turtle Start ## @prefix schema: . <#ModelX> a schema:Product ; schema:name "Tesla Model X" ; schema:model "Model X" ; schema:year "2021" ; schema:bodyStyle "SUV" ; schema:seatingCapacity "5" ; schema:driveWheelConfiguration "Dual Motor All-Wheel Drive" ; schema:batterySpecification [ a schema:BatterySpecification ; schema:batteryCapacity "100 kWh" ; schema:batteryRange "360 miles (EPA est.)" ; schema:chargingTime [ a schema:ChargingTime ; schema:supercharging "up to 170 miles in 30 minutes" ; schema:homeCharging "11.5 kW max (48A)" ; schema:outletCharging "NEMA 14-50" ] ] ; schema:performance [ a schema:QuantitativeValue ; schema:value "2.5 seconds" ; schema:unitText "seconds" ; schema:name "0-60 mph" ] ; schema:topSpeed [ a schema:QuantitativeValue ; schema:value "163 mph" ; schema:unitText "miles per hour" ] ; schema:powerOutput [ a schema:QuantitativeValue ; schema:value "670 hp" ; schema:unitText "horsepower" ] ; schema:torque [ a schema:QuantitativeValue ; schema:value "1,050 lb-ft" ; schema:unitText "pound-foot" ] ; schema:dimensions [ a schema:QuantitativeValue ; schema:value "198.3 in" ; schema:unitText "inches" ; schema:name "length" ] ; schema:width [ a schema:QuantitativeValue ; schema:value "81.6 in" ; schema:unitText "inches" ] ; schema:height [ a schema:QuantitativeValue ; schema:value "66.3 in" ; schema:unitText "inches" ] ; schema:wheelbase [ a schema:QuantitativeValue ; schema:value "116.7 in" ; schema:unitText "inches" ] ; schema:additionalProperty [ a schema:PropertyValue ; schema:name "Features" ; schema:value ( "Falcon Wing doors" "17-inch touchscreen display" "Smart Summon" "Autopilot advanced safety and convenience features" "Premium interior materials" "Heated front and rear seats" "Ventilated front seats" "Premium audio system" "Wireless phone charging" "Towing capacity of up to 5,000 pounds" ) ] . ## Turtle End ##