input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appid" : 314050, "name" : "Spheritis", "windows" : true, "mac" : false, "linux" : true, "early_access" : false, "lookup_time" : 1490977989} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Cary Plt, ME", "North Amity, ME", "Amity, ME", "Orient, ME"], "state" : "ME", "postal_code" : "04471", "locality" : "Orient, ME", "lat" : 45.916545, "region" : {"fips" : "23", "abbr" : "ME", "name" : "Maine"}, "city" : "Orient", "type" : "STANDARD", "lng" : -67.856824, "counties" : [{"fips" : "003", "name" : "Aroostook County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xcb35d14759e2931022c7315f53e37cdcd38e570c", "tool" : "solhint", "start" : 1563668154.264601, "end" : 1563668159.6192448, "duration" : 5.354643821716309, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Kykotsmovi Village", "state_name" : "Arizona", "state_abbrv" : "AZ", "lat" : "35.8742", "long" : "-110.6235"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-85.23, 30.77]}, "type" : "Feature", "id" : "32447", "properties" : {"other_cities" : "", "city" : "Marianna", "state" : "FL", "county" : "Jackson County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}, "tape": {"type": "string"}}, "required": ["standard", "tape"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "to-ascii", "version" : "0.1.0", "description" : "Convert a string to ascii", "main" : "index.js", "scripts" : {"test" : "standard && tape test.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/bsiddiqui/to-ascii.git"}, "keywords" : ["ascii", "string"], "author" : "Basil Siddiqui <basil.siddiqui@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/bsiddiqui/to-ascii/issues"}, "homepage" : "https://github.com/bsiddiqui/to-ascii#readme", "dependencies" : {}, "devDependencies" : {"standard" : "^5.2.2", "tape" : "^4.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}, "tape": {"type": "string"}}, "required": ["standard", "tape"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"functions": {"type": "object", "properties": {"predeploy": {"type": "array", "items": {"type": "string"}}}, "required": ["predeploy"]}}, "required": ["functions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"functions" : {"predeploy" : ["cd functions && npm run build"]}} | json_instruct | {"type": "object", "properties": {"functions": {"type": "object", "properties": {"predeploy": {"type": "array", "items": {"type": "string"}}}, "required": ["predeploy"]}}, "required": ["functions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"UnityBuildRunner": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}, "environmentVariables": {"type": "object", "properties": {"UnityPath": {"type": "string"}}, "required": ["UnityPath"]}}, "required": ["commandName", "commandLineArgs", "environmentVariables"]}}, "required": ["UnityBuildRunner"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"profiles" : {"UnityBuildRunner" : {"commandName" : "Project", "commandLineArgs" : "-u \"C:\\Program Files\\Unity\\Hub\\Editor\\2018.3.13f1\\Editor\\Unity.exe\" -quit -batchmode -buildTarget WindowsStoreApps -projectPath D:\\git\\guitarrapc\\HoloLens-AzurePipelinev1 -logfile log.log -executeMethod HoloToolkit.Unity.HoloToolkitCommands.BuildSLN", "environmentVariables" : {"UnityPath" : "C:\\Program Files\\Unity\\Hub\\Editor\\2018.3.13f1\\Editor\\Unity.exe"}}}} | json_instruct | {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"UnityBuildRunner": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}, "environmentVariables": {"type": "object", "properties": {"UnityPath": {"type": "string"}}, "required": ["UnityPath"]}}, "required": ["commandName", "commandLineArgs", "environmentVariables"]}}, "required": ["UnityBuildRunner"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "regiseredAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "regiseredAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contacts" : [{"name" : "M.Asif", "email" : "besws055@gmail.com", "designation" : "Manager", "mobile" : []}], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=4917", "name" : "Bright Educational & Social Welfare Society", "primaryEmail" : "besws055@gmail.com", "website" : "Village Jalalpur Post. Incholi.", "organisationType" : ["Direct Service"], "telephone" : ["919412108654"], "mainAddrress" : {"state" : "Uttar Pradesh", "address" : ["220", "meerut", "Meerut", "Uttar Pradesh", "250001"]}, "regiseredAddrress" : {"state" : "Uttar Pradesh", "address" : ["220", "Village Jalalpur Post. Incholi.", "meerut", "Meerut", "Uttar Pradesh", "250001"]}} | json_instruct | {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "regiseredAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "regiseredAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"user": {"type": "object", "properties": {"team": {"type": "string"}}, "required": ["team"]}, "team": {"type": "object", "properties": {"user": {"type": "string"}, "player": {"type": "string"}, "match": {"type": "string"}}, "required": ["user", "player", "match"]}, "player": {"type": "object", "properties": {"team": {"type": "string"}, "score": {"type": "string"}}, "required": ["team", "score"]}, "match": {"type": "object", "properties": {"team": {"type": "string"}, "score": {"type": "string"}}, "required": ["team", "score"]}, "score": {"type": "object", "properties": {"player": {"type": "string"}, "match": {"type": "string"}}, "required": ["player", "match"]}}, "required": ["user", "team", "player", "match", "score"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user" : {"team" : "0..*"}, "team" : {"user" : "0..*", "player" : "0..*", "match" : "0..*"}, "player" : {"team" : "1", "score" : "0..*"}, "match" : {"team" : "1", "score" : "0..*"}, "score" : {"player" : "1", "match" : "1"}} | json_instruct | {"type": "object", "properties": {"user": {"type": "object", "properties": {"team": {"type": "string"}}, "required": ["team"]}, "team": {"type": "object", "properties": {"user": {"type": "string"}, "player": {"type": "string"}, "match": {"type": "string"}}, "required": ["user", "player", "match"]}, "player": {"type": "object", "properties": {"team": {"type": "string"}, "score": {"type": "string"}}, "required": ["team", "score"]}, "match": {"type": "object", "properties": {"team": {"type": "string"}, "score": {"type": "string"}}, "required": ["team", "score"]}, "score": {"type": "object", "properties": {"player": {"type": "string"}, "match": {"type": "string"}}, "required": ["player", "match"]}}, "required": ["user", "team", "player", "match", "score"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["plus.garden"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Folcarde", "dpt" : "Haute-Garonne", "inscrits" : 96, "abs" : 18, "votants" : 78, "blancs" : 6, "nuls" : 4, "exp" : 68, "res" : [{"panneau" : "1", "voix" : 38}, {"panneau" : "2", "voix" : 30}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"model": {"type": "object", "properties": {"scene1_body": {"type": "string"}, "scene2_body": {"type": "string"}, "scene3_body": {"type": "string"}, "scene4_body": {"type": "string"}, "scene5_body": {"type": "string"}, "scene6_body": {"type": "string"}, "scene7_body": {"type": "string"}, "scene8_body": {"type": "string"}, "scene9_body": {"type": "string"}, "scene10_body": {"type": "string"}, "FT3_title": {"type": "string"}, "findInPicture": {"type": "string"}, "FT4_title": {"type": "string"}}, "required": ["scene1_body", "scene2_body", "scene3_body", "scene4_body", "scene5_body", "scene6_body", "scene7_body", "scene8_body", "scene9_body", "scene10_body", "FT3_title", "findInPicture", "FT4_title"]}}, "required": ["model"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"model" : {"scene1_body" : "My name is Ramu. One day, we went to a Dasara fair", "scene2_body" : "Papa bought Chintu fancy glasses. Mother bought me a bright blue cap. The baby got sugar candy.", "scene3_body" : "On the way home, a very strong wind came. It blew my cap away.", "scene4_body" : "My cap got stuck on a branch of the old Pipal tree.", "scene5_body" : "I cried a lot. And I did not eat my dinner.", "scene6_body" : "Later that night, the moon came up. It looked at my cap on the old Pipal tree.", "scene7_body" : "It tried on my cap. The moon smiled happily. I smiled too.", "scene8_body" : "After school the next day, my mother gave me a shiny new red cap.\"The moon sent it,\" she said.", "scene9_body" : "That night, both the moon and I wore our caps and smiled. We were happy.", "scene10_body" : "Do you think the sun needs a hat?.", "FT3_title" : "Words that rhyme", "findInPicture" : "Find the Following things in picture", "FT4_title" : "Meals of the day"}} | json_instruct | {"type": "object", "properties": {"model": {"type": "object", "properties": {"scene1_body": {"type": "string"}, "scene2_body": {"type": "string"}, "scene3_body": {"type": "string"}, "scene4_body": {"type": "string"}, "scene5_body": {"type": "string"}, "scene6_body": {"type": "string"}, "scene7_body": {"type": "string"}, "scene8_body": {"type": "string"}, "scene9_body": {"type": "string"}, "scene10_body": {"type": "string"}, "FT3_title": {"type": "string"}, "findInPicture": {"type": "string"}, "FT4_title": {"type": "string"}}, "required": ["scene1_body", "scene2_body", "scene3_body", "scene4_body", "scene5_body", "scene6_body", "scene7_body", "scene8_body", "scene9_body", "scene10_body", "FT3_title", "findInPicture", "FT4_title"]}}, "required": ["model"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@puppeteer/replay": {"type": "string"}, "puppeteer": {"type": "string"}}, "required": ["@puppeteer/replay", "puppeteer"]}, "type": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "user-journeys-demo", "version" : "1.0.0", "description" : "Replay recorded user journeys of your website on Cloud Run jobs.", "main" : "runner.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/GoogleCloudPlatform/jobs-demos.git"}, "author" : "Steren Giannini <steren@google.com>", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/GoogleCloudPlatform/jobs-demos/issues"}, "homepage" : "https://github.com/GoogleCloudPlatform/jobs-demos/tree/main/user-journeys#readme", "dependencies" : {"@puppeteer/replay" : "^0.0.2", "puppeteer" : "^13.4.1"}, "type" : "module"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@puppeteer/replay": {"type": "string"}, "puppeteer": {"type": "string"}}, "required": ["@puppeteer/replay", "puppeteer"]}, "type": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "tempo": {"type": "string"}, "beats": {"type": "string"}, "composer": {"type": "string"}, "capo": {"type": "string"}, "instrument": {"type": "string"}, "tuning": {"type": "string"}, "bars": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "tempo", "beats", "composer", "capo", "instrument", "tuning", "bars"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "", "tempo" : "80", "beats" : "4", "composer" : "traditional", "capo" : "0", "instrument" : "ukulele", "tuning" : "g3,c4,e4,a4", "bars" : ["---d,04;---d,04;---c,02;---d,02;---f,04", "---a,08;--d-,08", "--b-,04;--b-,04;--a-,02;--b-,02;--d-,04", "-c--,16", "--a-,04;--a-,04;--c-,02;--d-,04;---a,02", "---f,08;--d-,08", "---d,04;---d,04;---d,02;---c,04;---a,02", "--d-,16", "---d,04;---d,04;---c,02;---d,02;---f,04", "---a,08;--d-,08", "--b-,04;--b-,04;--a-,02;--b-,02;--d-,04", "-c--,08;e---,08", "--a-,04;--a-,04;--c-,02;--d-,04;---a,02", "---f,08;--d-,08", "---i,04;---i,04;---i,02;---h,04;---f,02", "---h,04;---d,04;---c,04;---b,04", "---a,06;---a,02;---c,02;---d,04;---f,02", "--d-,08;--ad,08", "-a--,04;-a--,04;--b-,02;--a-,04;-c--,02", "-a--,16"]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "tempo": {"type": "string"}, "beats": {"type": "string"}, "composer": {"type": "string"}, "capo": {"type": "string"}, "instrument": {"type": "string"}, "tuning": {"type": "string"}, "bars": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "tempo", "beats", "composer", "capo", "instrument", "tuning", "bars"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "38050", "place_name" : "Alameda", "place_type" : "Residencial", "county" : "Celaya", "state" : "Guanajuato", "city" : "Celaya"}, {"postal_code" : "38050", "place_name" : "Los Pirules", "place_type" : "Conjunto habitacional", "county" : "Celaya", "state" : "Guanajuato", "city" : "Celaya"}, {"postal_code" : "38050", "place_name" : "Los Veintes", "place_type" : "Fraccionamiento", "county" : "Celaya", "state" : "Guanajuato", "city" : "Celaya"}, {"postal_code" : "38050", "place_name" : "Zempoala", "place_type" : "Colonia", "county" : "Celaya", "state" : "Guanajuato", "city" : "Celaya"}, {"postal_code" : "38050", "place_name" : "Parque Central", "place_type" : "Colonia", "county" : "Celaya", "state" : "Guanajuato", "city" : "Celaya"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "logseq": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "mode": {"type": "string"}}, "required": ["name", "url", "description", "mode"]}}, "id": {"type": "string"}, "icon": {"type": "string"}}, "required": ["themes", "id", "icon"]}}, "required": ["name", "author", "version", "description", "logseq"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Quattro", "author" : "Alexander Rink", "version" : "0.0.17", "description" : "Where your attention goes, your time goes. An iA Writer inspired theme for Logseq.", "logseq" : {"themes" : [{"name" : "Quattro - Light", "url" : "./quattro.css", "description" : "Where your attention goes, your time goes. An iA Writer inspired theme for Logseq.", "mode" : "light"}, {"name" : "Quattro - Dark", "url" : "./quattro.css", "description" : "Where your attention goes, your time goes. An iA Writer inspired theme for Logseq.", "mode" : "dark"}], "id" : "quattro", "icon" : "./icon.png"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "logseq": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "mode": {"type": "string"}}, "required": ["name", "url", "description", "mode"]}}, "id": {"type": "string"}, "icon": {"type": "string"}}, "required": ["themes", "id", "icon"]}}, "required": ["name", "author", "version", "description", "logseq"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["230826201200", "\u4e5d\u9633\u6751\u59d4\u4f1a", "210", "0"], ["230826201201", "\u5174\u5b89\u6751\u59d4\u4f1a", "220", "0"], ["230826201202", "\u4e1c\u65b9\u7ea2\u6751\u59d4\u4f1a", "220", "0"], ["230826201204", "\u4e1c\u5347\u6751\u59d4\u4f1a", "220", "0"], ["230826201205", "\u4e1c\u5b8f\u6751\u59d4\u4f1a", "220", "0"], ["230826201206", "\u4e1c\u6cb3\u6751\u59d4\u4f1a", "220", "0"], ["230826201209", "\u5174\u56fd\u6751\u59d4\u4f1a", "220", "0"], ["230826201500", "\u4e1c\u65b9\u7ea2\u79cd\u725b\u573a\u751f\u6d3b\u533a", "220", "0"], ["230826201501", "\u4e1c\u65b9\u7ea2\u826f\u79cd\u573a\u751f\u6d3b\u533a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "date": {"type": "string"}, "death": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "movements": {"type": "array", "items": {"type": "object", "properties": {"era": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "workCount": {"type": "integer"}}, "required": ["id", "name", "workCount"]}, "id": {"type": "integer"}, "name": {"type": "string"}, "workCount": {"type": "integer"}}, "required": ["era", "id", "name", "workCount"]}}, "totalWorks": {"type": "integer"}, "url": {"type": "string"}}, "required": ["activePlaceCount", "birth", "date", "death", "fc", "gender", "id", "mda", "movements", "totalWorks", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"activePlaceCount" : 0, "birth" : {"place" : {"name" : "Guildford, United Kingdom", "placeName" : "Guildford", "placeType" : "inhabited_place"}, "time" : {"startYear" : 1744}}, "date" : "1744\u20131807", "death" : {"place" : {"name" : "Kingston-Upon-Hull, United Kingdom", "placeName" : "Kingston-Upon-Hull", "placeType" : "inhabited_place"}, "time" : {"startYear" : 1807}}, "fc" : "John Russell", "gender" : "Male", "id" : 466, "mda" : "Russell, John", "movements" : [{"era" : {"id" : 290, "name" : "18th century", "workCount" : 462}, "id" : 341, "name" : "Fancy Picture", "workCount" : 16}], "totalWorks" : 2, "url" : "http://www.tate.org.uk/art/artists/john-russell-466"} | json_instruct | {"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "date": {"type": "string"}, "death": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "movements": {"type": "array", "items": {"type": "object", "properties": {"era": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "workCount": {"type": "integer"}}, "required": ["id", "name", "workCount"]}, "id": {"type": "integer"}, "name": {"type": "string"}, "workCount": {"type": "integer"}}, "required": ["era", "id", "name", "workCount"]}}, "totalWorks": {"type": "integer"}, "url": {"type": "string"}}, "required": ["activePlaceCount", "birth", "date", "death", "fc", "gender", "id", "mda", "movements", "totalWorks", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "San Gregorio, Cabiao, Nueva Ecija, Central Luzon (Region III), PH", "locale" : "ph.central-luzon-region-iii.nueva-ecija.cabiao.san-gregorio", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "6", "region_reference" : "3", "region_name" : "Central Luzon (Region III)", "province_id" : "55", "province_reference" : "55", "province_name" : "Nueva Ecija", "city_id" : "269", "city_reference" : "1122", "city_name" : "Cabiao", "barangay_id" : "7215", "barangay_reference" : "29448", "barangay_name" : "San Gregorio"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.868622, 15.26763], [120.870369, 15.2672], [120.864273, 15.25361], [120.860107, 15.25524], [120.854279, 15.25823], [120.855408, 15.25837], [120.856567, 15.25882], [120.857826, 15.25936], [120.858597, 15.25977], [120.860168, 15.26069], [120.861443, 15.26192], [120.862984, 15.26341], [120.864029, 15.26442], [120.86541, 15.2654], [120.866432, 15.26598], [120.867233, 15.2665], [120.868622, 15.26763]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-config-dir": {"type": "string"}, "grunt-contrib-sass": {"type": "string"}}, "required": ["grunt", "grunt-cli", "grunt-config-dir", "grunt-contrib-sass"]}, "devDependencies": {"type": "object", "properties": {"grunt-babel": {"type": "string"}}, "required": ["grunt-babel"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "wesuquirrel", "version" : "0.9.0", "description" : "This is your new Play application =================================", "main" : "Gruntfile.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/magudb/WeSquirrelScala.git"}, "author" : "Magnus Udbj\u00f8rg", "license" : "ISC", "bugs" : {"url" : "https://github.com/magudb/WeSquirrelScala/issues"}, "homepage" : "https://github.com/magudb/WeSquirrelScala#readme", "dependencies" : {"grunt" : "^0.4.5", "grunt-cli" : "^0.1.13", "grunt-config-dir" : "^0.3.2", "grunt-contrib-sass" : "^0.9.2"}, "devDependencies" : {"grunt-babel" : "^5.0.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-config-dir": {"type": "string"}, "grunt-contrib-sass": {"type": "string"}}, "required": ["grunt", "grunt-cli", "grunt-config-dir", "grunt-contrib-sass"]}, "devDependencies": {"type": "object", "properties": {"grunt-babel": {"type": "string"}}, "required": ["grunt-babel"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Online Linear Quadratic Control.", "fields" : ["exponential growth", "steady state", "quadratic equation", "regret", "time horizon"], "abstract" : "We study the problem of controlling linear time-invariant systems with known noisy dynamics and adversarially chosen quadratic losses. We present the first efficient online learning algorithms in this setting that guarantee $O(\\sqrt{T})$ regret under mild assumptions, where $T$ is the time horizon. Our algorithms rely on a novel SDP relaxation for the steady-state distribution of the system. Crucially, and in contrast to previously proposed relaxations, the feasible solutions of our SDP all correspond to \"strongly stable\" policies that mix exponentially fast to a steady state.", "citation" : "Not cited", "departments" : ["Technion \u2013 Israel Institute of Technology", "Bar-Ilan University", "Google", "Google", "Tel Aviv University"], "authors" : ["Alon Cohen.....http://dblp.org/pers/hd/c/Cohen:Alon", "Avinatan Hassidim.....http://dblp.org/pers/hd/h/Hassidim:Avinatan", "Tomer Koren.....http://dblp.org/pers/hd/k/Koren:Tomer", "Nevena Lazic.....http://dblp.org/pers/hd/l/Lazic:Nevena", "Yishay Mansour.....http://dblp.org/pers/hd/m/Mansour:Yishay", "Kunal Talwar.....http://dblp.org/pers/hd/t/Talwar:Kunal"], "conf" : "icml", "year" : "2018", "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 63476, "cartId" : "1491538f-999f-480f-b033-ef11208c2e67", "preferredProducts" : [4200, 1415, 3834, 731, 4456, 185, 2463], "productReviews" : [{"productId" : 1633, "reviewText" : "I saw one of these in Bhutan and I bought one.", "reviewDate" : "2018-08-21T18:59:32.5453406+03:00"}, {"productId" : 365, "reviewText" : "This Toys & Industrial works quite well. It romantically improves my golf by a lot.", "reviewDate" : "2019-09-25T06:43:25.7156968+03:00"}, {"productId" : 2789, "reviewText" : "This Concrete works so well. It delightedly improves my football by a lot.", "reviewDate" : "2018-01-16T13:03:08.9401986+02:00"}, {"productId" : 1963, "reviewText" : "It only works when I'm Cook Islands.", "reviewDate" : "2019-12-08T05:41:10.0212253+02:00"}, {"productId" : 1959, "reviewText" : "I tried to attack it but got meatball all over it.", "reviewDate" : "2016-08-01T05:27:23.6097805+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-101.26771, 31.561089], [-101.264216, 32.087136], [-100.821594, 32.08661], [-100.821673, 32.006174], [-100.82537, 31.696155], [-100.861099, 31.705418], [-100.865256, 31.562294], [-101.26763, 31.556462], [-101.26771, 31.561089]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 85459}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"future": {"type": "object", "properties": {"id": {"type": "integer"}, "sport": {"type": "string"}, "league": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "sport", "league", "name"]}, "sports_book": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "name": {"type": "string"}, "price": {"type": "number"}, "checked_date": {"type": "string"}, "changed_date": {"type": "string"}}, "required": ["future", "sports_book", "name", "price", "checked_date", "changed_date"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"future" : {"id" : 11, "sport" : "football", "league" : "NFL", "name" : "NFC West Division Winner"}, "sports_book" : {"name" : "BetMGM"}, "name" : "Arizona Cardinals", "price" : -120.0, "checked_date" : "2021-11-01T23:09:16.217713-04:00", "changed_date" : "2021-11-01T23:09:16.217725-04:00"}, {"future" : {"id" : 11, "sport" : "football", "league" : "NFL", "name" : "NFC West Division Winner"}, "sports_book" : {"name" : "BetMGM"}, "name" : "Los Angeles Rams", "price" : 100.0, "checked_date" : "2021-11-01T23:09:16.220660-04:00", "changed_date" : "2021-11-01T23:09:16.220670-04:00"}, {"future" : {"id" : 11, "sport" : "football", "league" : "NFL", "name" : "NFC West Division Winner"}, "sports_book" : {"name" : "BetMGM"}, "name" : "San Francisco 49ers", "price" : 3500.0, "checked_date" : "2021-11-01T23:09:16.223104-04:00", "changed_date" : "2021-11-01T23:09:16.223114-04:00"}, {"future" : {"id" : 11, "sport" : "football", "league" : "NFL", "name" : "NFC West Division Winner"}, "sports_book" : {"name" : "BetMGM"}, "name" : "Seattle Seahawks", "price" : 10000.0, "checked_date" : "2021-11-01T23:09:16.226866-04:00", "changed_date" : "2021-11-01T23:09:16.226876-04:00"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"future": {"type": "object", "properties": {"id": {"type": "integer"}, "sport": {"type": "string"}, "league": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "sport", "league", "name"]}, "sports_book": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "name": {"type": "string"}, "price": {"type": "number"}, "checked_date": {"type": "string"}, "changed_date": {"type": "string"}}, "required": ["future", "sports_book", "name", "price", "checked_date", "changed_date"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"28918": {"type": "string"}, "28923": {"type": "string"}, "28929": {"type": "string"}, "28920": {"type": "string"}, "28921": {"type": "string"}}, "required": ["28918", "28923", "28929", "28920", "28921"]}, "timeto": {"type": "object", "properties": {"28918": {"type": "number"}, "28923": {"type": "number"}, "28929": {"type": "number"}, "28920": {"type": "number"}, "28921": {"type": "number"}}, "required": ["28918", "28923", "28929", "28920", "28921"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 28922, "title" : ["[Kraken's Fall, Logging Colony]"], "description" : ["Cracked and broken, a burbling water pump fills a nearby iron-bound oak barrel to overflowing and is undoubtedly the culprit that has turned the roadways to mud. Some enterprising individual has created a makeshift boardwalk of rough oak planks over the muddy ground that leads from the town gates and fortifications in the west to a squat pub with a copper tile roof built nearby. Shouts and cries echo in from the southeast, the sound of industry mingling with the warm seaborne breeze."], "paths" : ["Obvious paths: north, east, south, west, northwest"], "location" : "Widowmaker's Road", "wayto" : {"28918" : "west", "28923" : "south", "28929" : "east", "28920" : "northwest", "28921" : "north"}, "timeto" : {"28918" : 0.2, "28923" : 0.2, "28929" : 0.2, "28920" : 0.2, "28921" : 0.2}, "image" : "kf-krackens_fall-1465343055.png", "image_coords" : [801, 176, 815, 189]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"28918": {"type": "string"}, "28923": {"type": "string"}, "28929": {"type": "string"}, "28920": {"type": "string"}, "28921": {"type": "string"}}, "required": ["28918", "28923", "28929", "28920", "28921"]}, "timeto": {"type": "object", "properties": {"28918": {"type": "number"}, "28923": {"type": "number"}, "28929": {"type": "number"}, "28920": {"type": "number"}, "28921": {"type": "number"}}, "required": ["28918", "28923", "28929", "28920", "28921"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "idiom": {"type": "string"}, "scale": {"type": "string"}, "size": {"type": "string"}}, "required": ["filename", "idiom", "scale", "size"]}}, "info": {"type": "object", "properties": {"author": {"type": "string"}, "template-rendering-intent": {"type": "string"}, "version": {"type": "integer"}}, "required": ["author", "template-rendering-intent", "version"]}}, "required": ["images", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"images" : [{"filename" : "round_flashlight_off_black_18pt_1x.png", "idiom" : "universal", "scale" : "1x", "size" : "18x18"}, {"filename" : "round_flashlight_off_black_18pt_2x.png", "idiom" : "universal", "scale" : "2x", "size" : "18x18"}, {"filename" : "round_flashlight_off_black_18pt_3x.png", "idiom" : "universal", "scale" : "3x", "size" : "18x18"}], "info" : {"author" : "xcode", "template-rendering-intent" : "template", "version" : 1}} | json_instruct | {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "idiom": {"type": "string"}, "scale": {"type": "string"}, "size": {"type": "string"}}, "required": ["filename", "idiom", "scale", "size"]}}, "info": {"type": "object", "properties": {"author": {"type": "string"}, "template-rendering-intent": {"type": "string"}, "version": {"type": "integer"}}, "required": ["author", "template-rendering-intent", "version"]}}, "required": ["images", "info"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x9ade34fd700bb5d933fced4fc9809d56a797456db13a53006853f49f43bb60d9", "parentHash" : "0x150417b3f6fc908183dc50f254ad5ec5123d39e9e15bff14ac1b63a0d91f3174", "number" : 65814, "timestamp" : 1439243259, "nonce" : "0x53cd5ce529b14557", "difficulty" : 1951058557662, "gasLimit" : {"_hex" : "0x2fd805"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x70C6b45fe0A5116E97B112B806A76E2F51E24413", "extraData" : "0x476574682f76312e302e302f77696e646f77732f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"coursefinder": {"type": "string"}}, "required": ["coursefinder"]}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}, "eslint-plugin-standard": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type": "string"}}, "required": ["eslint", "eslint-config-standard", "eslint-plugin-promise", "eslint-plugin-standard", "mocha", "should"]}, "dependencies": {"type": "object", "properties": {"nightmare": {"type": "string"}, "pretty-format": {"type": "string"}}, "required": ["nightmare", "pretty-format"]}}, "required": ["name", "version", "description", "keywords", "author", "license", "homepage", "bugs", "repository", "main", "bin", "scripts", "engines", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "coursefinder", "version" : "0.0.4", "description" : "A Node.js scraper for UofT's Course Finder.", "keywords" : ["uoft", "university of toronto", "coursefinder", "scraper"], "author" : "Kashav Madan <kshvmdn@gmail.com> (http://kshvmdn.com)", "license" : "MIT", "homepage" : "https://github.com/kshvmdn/uoft-coursefinder#readme", "bugs" : {"url" : "https://github.com/keithamus/uoft-coursefinder/issues"}, "repository" : {"type" : "git", "url" : "git+https://github.com/kshvmdn/uoft-coursefinder.git"}, "main" : "lib/index.js", "bin" : {"coursefinder" : "bin/coursefinder"}, "scripts" : {"lint" : "eslint bin/coursefinder index.js utils", "test" : "npm run lint && mocha"}, "engines" : {"node" : ">=6"}, "devDependencies" : {"eslint" : "^3.4.0", "eslint-config-standard" : "^6.0.0", "eslint-plugin-promise" : "^2.0.1", "eslint-plugin-standard" : "^2.0.0", "mocha" : "^3.0.2", "should" : "^11.1.0"}, "dependencies" : {"nightmare" : "^2.6.1", "pretty-format" : "^3.7.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"coursefinder": {"type": "string"}}, "required": ["coursefinder"]}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}, "eslint-plugin-standard": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type": "string"}}, "required": ["eslint", "eslint-config-standard", "eslint-plugin-promise", "eslint-plugin-standard", "mocha", "should"]}, "dependencies": {"type": "object", "properties": {"nightmare": {"type": "string"}, "pretty-format": {"type": "string"}}, "required": ["nightmare", "pretty-format"]}}, "required": ["name", "version", "description", "keywords", "author", "license", "homepage", "bugs", "repository", "main", "bin", "scripts", "engines", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "26a8e1fd5118487783c5defe8d621ee6"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}, "evm_code_coverage": {"type": "string"}, "integer_underflow": {"type": "boolean"}, "integer_overflow": {"type": "boolean"}, "parity_multisig_bug_2": {"type": "boolean"}, "callstack_depth_attack_vulnerability": {"type": "boolean"}, "transaction-ordering_dependence_tod": {"type": "boolean"}, "timestamp_dependency": {"type": "boolean"}, "re-entrancy_vulnerability": {"type": "boolean"}}, "required": ["errors", "file", "name", "evm_code_coverage", "integer_underflow", "integer_overflow", "parity_multisig_bug_2", "callstack_depth_attack_vulnerability", "transaction-ordering_dependence_tod", "timestamp_dependency", "re-entrancy_vulnerability"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xfefc38f1904970f3625d1d7f096db3786907e5bc", "tool" : "oyente", "start" : 1563591432.4093962, "end" : 1563591442.4817026, "duration" : 10.072306394577026, "analysis" : [{"errors" : [], "file" : "/unique_chucks/23/0xfefc38f1904970f3625d1d7f096db3786907e5bc.sol", "name" : "LUPXSale", "evm_code_coverage" : "85.8%", "integer_underflow" : false, "integer_overflow" : false, "parity_multisig_bug_2" : false, "callstack_depth_attack_vulnerability" : false, "transaction-ordering_dependence_tod" : true, "timestamp_dependency" : false, "re-entrancy_vulnerability" : false}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}, "evm_code_coverage": {"type": "string"}, "integer_underflow": {"type": "boolean"}, "integer_overflow": {"type": "boolean"}, "parity_multisig_bug_2": {"type": "boolean"}, "callstack_depth_attack_vulnerability": {"type": "boolean"}, "transaction-ordering_dependence_tod": {"type": "boolean"}, "timestamp_dependency": {"type": "boolean"}, "re-entrancy_vulnerability": {"type": "boolean"}}, "required": ["errors", "file", "name", "evm_code_coverage", "integer_underflow", "integer_overflow", "parity_multisig_bug_2", "callstack_depth_attack_vulnerability", "transaction-ordering_dependence_tod", "timestamp_dependency", "re-entrancy_vulnerability"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["phpunit/phpunit", "squizlabs/php_codesniffer"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Eye4web\\Base\\": {"type": "string"}}, "required": ["Eye4web\\Base\\"]}}, "required": ["psr-0"]}}, "required": ["name", "description", "license", "keywords", "homepage", "authors", "extra", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eye4web/eye4web-base", "description" : "Basic functionality for ZF2 projects", "license" : "MIT", "keywords" : ["zendframework", "module", "eye4web"], "homepage" : "https://github.com/Eye4web/Eye4webBase", "authors" : [{"name" : "Daniel Str\u00f8m", "email" : "daniel@eye4web.dk", "homepage" : "http://eye4web.dk"}], "extra" : {"branch-alias" : {"dev-master" : "0.0.x-dev"}}, "require" : {"php" : ">=5.4"}, "require-dev" : {"phpunit/phpunit" : "~4.0.0", "squizlabs/php_codesniffer" : "~2.0.0@DEV"}, "autoload" : {"psr-0" : {"Eye4web\\Base\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["phpunit/phpunit", "squizlabs/php_codesniffer"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Eye4web\\Base\\": {"type": "string"}}, "required": ["Eye4web\\Base\\"]}}, "required": ["psr-0"]}}, "required": ["name", "description", "license", "keywords", "homepage", "authors", "extra", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404394351, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "7b5496bcad7ba3dc20f4520e444c3046", "wof:id" : 404394351, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.55826304843057, 43.4035335203876, 5.61045736487339, 43.44271220907606], "geometry" : {"coordinates" : [[[5.58178788384723, 43.40503322965708], [5.57748616614124, 43.4035335203876], [5.56149808674614, 43.41016877080583], [5.56341643368912, 43.41637018765631], [5.55826304843057, 43.42155073474817], [5.55871779618802, 43.4339977318795], [5.56318578091492, 43.43309097659538], [5.58746954195536, 43.44271220907606], [5.60458402795515, 43.43162630940954], [5.61045736487339, 43.41189784181201], [5.60798802493313, 43.40917593851194], [5.58178788384723, 43.40503322965708]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gel-grid": {"type": "string"}, "gel-sass-tools": {"type": "string"}, "gel-typography": {"type": "string"}, "sass-mq": {"type": "string"}}, "required": ["gel-grid", "gel-sass-tools", "gel-typography", "sass-mq"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "license", "ignore", "author", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gs-sass-tools", "version" : "6.0.1", "description" : "A collection of Sass Settings & Tools used by Grandstand", "main" : "_sass-tools.scss", "repository" : {"type" : "git", "url" : "https://github.com/bbc/gs-sass-tools.git"}, "keywords" : ["Sass", "Tools", "Settings", "Grandstand", "Sport", "Live"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "../", "test", "tests"], "author" : "BBC", "bugs" : {"url" : "https://github.com/bbc/gs-sass-tools/issues"}, "homepage" : "https://github.com/bbc/gs-sass-tools", "dependencies" : {"gel-grid" : "^4.0.0", "gel-sass-tools" : "^1.2.1", "gel-typography" : "^3.0.0", "sass-mq" : "^5.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gel-grid": {"type": "string"}, "gel-sass-tools": {"type": "string"}, "gel-typography": {"type": "string"}, "sass-mq": {"type": "string"}}, "required": ["gel-grid", "gel-sass-tools", "gel-typography", "sass-mq"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "license", "ignore", "author", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "QQswap", "symbol" : "QQX", "address" : "0xE9ccD4b9205924A4dC7A9AE5F83930cdB2fc999a", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"main.css": {"type": "string"}, "main.css.map": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "static/media/arrow.svg": {"type": "string"}, "static/media/forward.svg": {"type": "string"}, "static/media/logo.svg": {"type": "string"}, "static/media/pause.svg": {"type": "string"}, "static/media/play.svg": {"type": "string"}, "static/media/reverse.svg": {"type": "string"}, "static/media/sortArrow.svg": {"type": "string"}}, "required": ["main.css", "main.css.map", "main.js", "main.js.map", "static/media/arrow.svg", "static/media/forward.svg", "static/media/logo.svg", "static/media/pause.svg", "static/media/play.svg", "static/media/reverse.svg", "static/media/sortArrow.svg"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main.css" : "static/css/main.47ecaa9b.css", "main.css.map" : "static/css/main.47ecaa9b.css.map", "main.js" : "static/js/main.bd9a9c4a.js", "main.js.map" : "static/js/main.bd9a9c4a.js.map", "static/media/arrow.svg" : "static/media/arrow.eff38055.svg", "static/media/forward.svg" : "static/media/forward.f1ccab0c.svg", "static/media/logo.svg" : "static/media/logo.aa3e12c9.svg", "static/media/pause.svg" : "static/media/pause.4f900bf3.svg", "static/media/play.svg" : "static/media/play.b45755ff.svg", "static/media/reverse.svg" : "static/media/reverse.558e2c49.svg", "static/media/sortArrow.svg" : "static/media/sortArrow.ce739ed8.svg"} | json_instruct | {"type": "object", "properties": {"main.css": {"type": "string"}, "main.css.map": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "static/media/arrow.svg": {"type": "string"}, "static/media/forward.svg": {"type": "string"}, "static/media/logo.svg": {"type": "string"}, "static/media/pause.svg": {"type": "string"}, "static/media/play.svg": {"type": "string"}, "static/media/reverse.svg": {"type": "string"}, "static/media/sortArrow.svg": {"type": "string"}}, "required": ["main.css", "main.css.map", "main.js", "main.js.map", "static/media/arrow.svg", "static/media/forward.svg", "static/media/logo.svg", "static/media/pause.svg", "static/media/play.svg", "static/media/reverse.svg", "static/media/sortArrow.svg"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 8, "n_trials" : 130, "objective" : "risk_on_cube", "white" : "scipy_powell", "black" : "platypus_evolutionary", "traceback" : ["passing", "passing"], "best_val" : [0.13686748089045397, 2.3422632521219127], "best_x" : [[0.41163103381645644, 0.07385981971632252, 0.25756095379843913, 0.10181835945055961, 6.610696135189609e-05, 0.05748443357584673, 6.610696135189609e-05, 6.610696135189609e-05], [0.11288983188164115, 0.5072427197734152, 0.005505461333642048, 0.149920122146306, 0.14773219514070002, 0.09612144302258896, 0.14358237900669968, 0.5463108803868599]], "feval_count" : [92, 100], "n_trials_instructed" : [91, 92], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "scipy_powell", "loser" : "platypus_evolutionary"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "galacticraft-rewoven:block/sphere.obj"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 42, "line_cd" : 11905, "line_name" : "JR\u9577\u5d0e\u672c\u7dda(\u9ce5\u6816\uff5e\u9577\u5d0e)", "station_cd" : 1190525, "station_g_cd" : 1190525, "station_name" : "\u80a5\u524d\u9577\u7530", "lon" : 130.079971, "lat" : 32.861773}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101888185, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "5789c56dfd5b346b0b42c4cbbc4ea2b2", "wof:id" : 101888185, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [7.26374886059727, 47.68454580733516, 7.2742018208873, 47.69280533242267], "geometry" : {"coordinates" : [[[7.27144535067293, 47.69280533242267], [7.27149304771996, 47.6919060641614], [7.27415417237819, 47.69197239987841], [7.2742018208873, 47.69107312985761], [7.2728712809822, 47.69103997075513], [7.27291895056783, 47.69014070098075], [7.27158843542622, 47.6901075263732], [7.27163612608615, 47.68920825684626], [7.26897514689165, 47.68914186044907], [7.26902288182498, 47.68824259183907], [7.26769241777231, 47.68820937005057], [7.26778792764571, 47.68641083290379], [7.26645751155428, 47.68637759628285], [7.26655305929665, 47.68457905878756], [7.2652226911631, 47.68454580733516], [7.26517489516164, 47.68544507562376], [7.26384450539598, 47.68541180732882], [7.26374886059727, 47.6872103412968], [7.26507929675887, 47.68724361093325], [7.26493588315219, 47.68994141073085], [7.26626639047993, 47.68997466620658], [7.26612302727881, 47.69267246421754], [7.27144535067293, 47.69280533242267]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id_2850": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_2850"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_2850" : {"publicdate" : "2012-04-01 18:55:01", "title" : "Autobiography"}} | json_instruct | {"type": "object", "properties": {"id_2850": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_2850"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"TITLE": {"type": "string"}, "NUMBER": {"type": "integer"}, "DESCRIPTION": {"type": "string"}, "CONTENT": {"type": "string"}, "IMAGE": {"type": "string"}, "ITUNES_IMAGE": {"type": "string"}, "FILE": {"type": "string"}, "DATE": {"type": "string"}, "EXPLICIT": {"type": "boolean"}}, "required": ["TITLE", "NUMBER", "DESCRIPTION", "CONTENT", "IMAGE", "ITUNES_IMAGE", "FILE", "DATE", "EXPLICIT"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"TITLE" : "Episode 40 - How to Combat Burnout", "NUMBER" : 40, "DESCRIPTION" : "Jessie sits down with life coach Uwe Dockhorn. Life is only getting more stressful for healthcare providers, business owners and... well pretty much everyone. Uwe works with people who are at the point of \u201cgiving up\u201d or about to lose everything they love to help them restore their lives. They talk about how important we should see ourselves and our families and how it begins with the individual. There\u2019s a lot of overlap with the principles of the voluntaryist movement. Uwe is a successful life coach who has clients all over the world. He plans to begin cohosting a podcast called \u201clifegasms\u201d with friend Sherry Fetzer.", "CONTENT" : "Jessie sits down with life coach Uwe Dockhorn. Life is only getting more stressful for healthcare providers, business owners and... well pretty much everyone. Uwe works with people who are at the point of \u201cgiving up\u201d or about to lose everything they love to help them restore their lives. They talk about how important we should see ourselves and our families and how it begins with the individual. There\u2019s a lot of overlap with the principles of the voluntaryist movement. Uwe is a successful life coach who has clients all over the world. He plans to begin cohosting a podcast called \u201clifegasms\u201d with friend Sherry Fetzer.", "IMAGE" : "", "ITUNES_IMAGE" : "", "FILE" : "vv_0040.mp3", "DATE" : "2020-04-16T00:01:35.410Z", "EXPLICIT" : false} | json_instruct | {"type": "object", "properties": {"TITLE": {"type": "string"}, "NUMBER": {"type": "integer"}, "DESCRIPTION": {"type": "string"}, "CONTENT": {"type": "string"}, "IMAGE": {"type": "string"}, "ITUNES_IMAGE": {"type": "string"}, "FILE": {"type": "string"}, "DATE": {"type": "string"}, "EXPLICIT": {"type": "boolean"}}, "required": ["TITLE", "NUMBER", "DESCRIPTION", "CONTENT", "IMAGE", "ITUNES_IMAGE", "FILE", "DATE", "EXPLICIT"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "relationship_type": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "modified": {"type": "string"}, "created": {"type": "string"}}, "required": ["created_by_ref", "object_marking_refs", "source_ref", "target_ref", "relationship_type", "description", "id", "type", "modified", "created"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "bundle", "id" : "bundle--c7e3e81b-77de-418f-bcf5-32ac09e926a6", "spec_version" : "2.0", "objects" : [{"created_by_ref" : "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5", "object_marking_refs" : ["marking-definition--fa42a846-8d90-4e51-bc29-71d5b4802168"], "source_ref" : "course-of-action--20f6a9df-37c4-4e20-9e47-025983b1b39d", "target_ref" : "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "relationship_type" : "mitigates", "description" : "Modify network and/or host firewall rules, as well as other network controls, to only allow legitimate BITS traffic.", "id" : "relationship--4b4d8f9e-a416-4af6-9c20-582892601668", "type" : "relationship", "modified" : "2021-04-13T21:36:05.235Z", "created" : "2019-06-13T16:47:56.005Z"}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "relationship_type": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "modified": {"type": "string"}, "created": {"type": "string"}}, "required": ["created_by_ref", "object_marking_refs", "source_ref", "target_ref", "relationship_type", "description", "id", "type", "modified", "created"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-87.690078, 42.02695], [-87.689955, 42.034028], [-87.680204, 42.03395], [-87.67842, 42.02656], [-87.690078, 42.02695]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 22952}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "g": {"type": "string"}, "tsc": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "g", "tsc", "typescript"]}, "scripts": {"type": "object", "properties": {"nodegen": {"type": "string"}}, "required": ["nodegen"]}}, "required": ["dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"@types/node" : "^17.0.25", "g" : "^2.0.1", "tsc" : "^2.0.4", "typescript" : "^4.6.4"}, "scripts" : {"nodegen" : "tsc && node generator.js"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "g": {"type": "string"}, "tsc": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "g", "tsc", "typescript"]}, "scripts": {"type": "object", "properties": {"nodegen": {"type": "string"}}, "required": ["nodegen"]}}, "required": ["dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"towns" : [{"name" : "Alassio ", "url" : "alassio"}]} | json_instruct | {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}, "rocket:start": {"type": "string"}, "rocket:build": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["dev", "start", "rocket:start", "rocket:build", "test", "test:watch"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"@lion/overlays": {"type": "string"}, "lit-element": {"type": "string"}}, "required": ["@lion/overlays", "lit-element"]}}, "required": ["name", "version", "publishConfig", "description", "license", "author", "main", "scripts", "files", "keywords", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@d4kmor/drawer", "version" : "0.1.0", "publishConfig" : {"access" : "public"}, "description" : "Rocket stuff", "license" : "MIT", "author" : "Modern Web <hello@modern-web.dev> (https://modern-web.dev/)", "main" : "index.js", "scripts" : {"dev" : "es-dev-server --node-resolve --root-dir ../../ --open packages/drawer/ --watch", "start" : "npm run rocket:start", "rocket:start" : "node src/start/cli.js -c demo/docs --root-dir ../../ --open packages/cli/demo/docs/README.md", "rocket:build" : "node src/build/cli.js -c demo/docs", "test" : "mocha test/**/*.test.js test/*.test.js", "test:watch" : "mocha test/**/*.test.js test/*.test.js --watch"}, "files" : ["*.js", "src", "docs"], "keywords" : ["storybook", "demo", "demo-states", "testing"], "dependencies" : {"@lion/overlays" : "0.16.6", "lit-element" : "^2.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}, "rocket:start": {"type": "string"}, "rocket:build": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["dev", "start", "rocket:start", "rocket:build", "test", "test:watch"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"@lion/overlays": {"type": "string"}, "lit-element": {"type": "string"}}, "required": ["@lion/overlays", "lit-element"]}}, "required": ["name", "version", "publishConfig", "description", "license", "author", "main", "scripts", "files", "keywords", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xcc88e4c59942c064936316c3ecd6f1aeb41d433f", "tool" : "oyente", "start" : 1563590425.9879909, "end" : 1563590430.4069252, "duration" : 4.418934345245361, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "\u6c88\u5148\u751f\u63a2\u82b1\u817f\u4e0a\u7eb9\u8eab\u53cc\u9a6c\u5c3e\u840c\u59b9\u5b50\u6253\u5b8c\u724c\u7b2c\u4e8c\u70ae\u540e\u5165\u731b\u64cd\u62ac\u817f\u4fa7\u5165\u62bd\u63d2", "size" : 105598914, "link" : "https://streamtape.com/e/XB63LmGjjXfDy1b", "created_at" : "2022\u5e7404\u670828\u65e5 19:05:23", "downloads" : 0, "linkid" : "XB63LmGjjXfDy1b", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458659", "folderName" : "\u6c88\u5148\u751f\u63a2\u82b1\u817f\u4e0a\u7eb9\u8eab\u53cc\u9a6c\u5c3e\u840c\u59b9\u5b50\u6253\u5b8c\u724c\u7b2c\u4e8c\u70ae\u540e\u5165\u731b\u64cd\u62ac\u817f\u4fa7\u5165\u62bd\u63d2", "thumbUrl" : "https://thumb.tapecontent.net/thumb/XB63LmGjjXfDy1b/j6rYZAl3WXhLpl.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"events": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "source": {"type": "string"}, "description": {"type": "string"}, "authenticated": {"type": "boolean"}, "created_at": {"type": "string"}, "received_at": {"type": "string"}, "properties": {"type": "object", "properties": {"model": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["model", "size"]}, "user_id": {"type": "string"}}, "required": ["id", "type", "source", "description", "authenticated", "created_at", "received_at", "properties", "user_id"]}}, "links": {"type": "null"}}, "required": ["events", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"events" : [{"id" : "5c7f31aef8df240001e60bbf", "type" : "remove_from_cart", "source" : "shopify", "description" : "", "authenticated" : true, "created_at" : "2019-03-06T02:34:22.381847424Z", "received_at" : "2019-03-06T02:34:22.381847424Z", "properties" : {"model" : 221, "size" : 6}, "user_id" : "123123121232"}], "links" : null} | json_instruct | {"type": "object", "properties": {"events": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "source": {"type": "string"}, "description": {"type": "string"}, "authenticated": {"type": "boolean"}, "created_at": {"type": "string"}, "received_at": {"type": "string"}, "properties": {"type": "object", "properties": {"model": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["model", "size"]}, "user_id": {"type": "string"}}, "required": ["id", "type", "source", "description", "authenticated", "created_at", "received_at", "properties", "user_id"]}}, "links": {"type": "null"}}, "required": ["events", "links"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-84.699718, 33.496234], [-84.699552, 33.499364], [-84.697881, 33.502369], [-84.697983, 33.504558], [-84.69236, 33.506731], [-84.692893, 33.511406], [-84.672314, 33.511097], [-84.672239, 33.50995], [-84.670774, 33.510013], [-84.670105, 33.511758], [-84.621031, 33.510713], [-84.620879, 33.503291], [-84.60954, 33.502511], [-84.610067, 33.501883], [-84.609489, 33.500832], [-84.61106, 33.500224], [-84.612614, 33.49391], [-84.616757, 33.487361], [-84.618099, 33.482991], [-84.622674, 33.480697], [-84.625592, 33.477082], [-84.625951, 33.474473], [-84.623296, 33.468282], [-84.624433, 33.465964], [-84.626585, 33.46464], [-84.625145, 33.462511], [-84.627084, 33.460727], [-84.626105, 33.458741], [-84.62675, 33.451045], [-84.624331, 33.448928], [-84.626148, 33.447285], [-84.625743, 33.443235], [-84.62722, 33.440078], [-84.625535, 33.437708], [-84.624104, 33.437013], [-84.623379, 33.435172], [-84.62183, 33.430424], [-84.621857, 33.427401], [-84.619534, 33.423371], [-84.619555, 33.417557], [-84.616569, 33.412675], [-84.613944, 33.402954], [-84.611993, 33.400911], [-84.60912, 33.400405], [-84.61034, 33.398708], [-84.609646, 33.397019], [-84.618302, 33.396599], [-84.622526, 33.397733], [-84.62377, 33.405121], [-84.630001, 33.41525], [-84.636506, 33.419407], [-84.643291, 33.429961], [-84.649052, 33.433261], [-84.652968, 33.437313], [-84.657134, 33.448093], [-84.656566, 33.453183], [-84.661682, 33.460568], [-84.663007, 33.464736], [-84.662746, 33.473832], [-84.656483, 33.480392], [-84.660001, 33.484948], [-84.662663, 33.486745], [-84.667979, 33.495466], [-84.673597, 33.495353], [-84.672877, 33.500557], [-84.677857, 33.499808], [-84.680357, 33.498039], [-84.68288, 33.499437], [-84.685866, 33.499611], [-84.690443, 33.495417], [-84.694712, 33.49465], [-84.699413, 33.495193], [-84.699718, 33.496234]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 18179}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "saturday", "definition" : "The seventh or last day of the week; the day following Friday and preceding Sunday."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Dialogs": {"type": "array", "items": {}}}, "required": ["Dialogs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Dialogs" : []} | json_instruct | {"type": "object", "properties": {"Dialogs": {"type": "array", "items": {}}}, "required": ["Dialogs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Java": {"type": "integer"}}, "required": ["Java"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Java" : 212538} | json_instruct | {"type": "object", "properties": {"Java": {"type": "integer"}}, "required": ["Java"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-98.73, 29.8]}, "type" : "Feature", "id" : "78015", "properties" : {"other_cities" : "Fair Oaks, Fair Oaks Ranch", "city" : "Boerne", "state" : "TX", "county" : "Bexar County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["441881110001", "\u897f\u725b\u5c45\u59d4\u4f1a", "121", "0"], ["441881110202", "\u897f\u8054\u6751\u59d4\u4f1a", "121", "0"], ["441881110203", "\u9c9c\u6c34\u6751\u59d4\u4f1a", "220", "0"], ["441881110204", "\u9ad8\u9053\u6751\u59d4\u4f1a", "220", "0"], ["441881110205", "\u5c0f\u6e7e\u6751\u59d4\u4f1a", "220", "0"], ["441881110206", "\u82b1\u7530\u6751\u59d4\u4f1a", "220", "0"], ["441881110207", "\u82b1\u5858\u6751\u59d4\u4f1a", "220", "0"], ["441881110209", "\u8d64\u7c73\u6751\u59d4\u4f1a", "220", "0"], ["441881110210", "\u91d1\u7af9\u6751\u59d4\u4f1a", "220", "0"], ["441881110211", "\u6c99\u575d\u6751\u59d4\u4f1a", "220", "0"], ["441881110212", "\u5174\u5858\u6751\u59d4\u4f1a", "220", "0"], ["441881110214", "\u77f3\u91d1\u6751\u59d4\u4f1a", "220", "0"], ["441881110215", "\u9ece\u6c99\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "authors", "license", "keywords", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "country-select", "version" : "0.0.1", "description" : "Collection", "main" : "country-select.html", "authors" : ["wolfgang@gmail.com"], "license" : "MIT", "keywords" : ["element-collection", "web", "component", "web component", "web-components"], "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "authors", "license", "keywords", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@nomiclabs/buidler": {"type": "string"}, "@nomiclabs/buidler-ethers": {"type": "string"}, "@nomiclabs/buidler-truffle5": {"type": "string"}, "@nomiclabs/buidler-waffle": {"type": "string"}, "chai": {"type": "string"}, "ethereum-waffle": {"type": "string"}, "ethers": {"type": "string"}, "husky": {"type": "string"}}, "required": ["@nomiclabs/buidler", "@nomiclabs/buidler-ethers", "@nomiclabs/buidler-truffle5", "@nomiclabs/buidler-waffle", "chai", "ethereum-waffle", "ethers", "husky"]}}, "required": ["name", "version", "description", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "buidler-hackathon-boilerplate", "version" : "1.0.0", "description" : "A boilerplate repository to get you started with Buidler and Ethereum development", "directories" : {"test" : "test"}, "scripts" : {"test" : "npx buidler test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/nomiclabs/buidler-hackathon-boilerplate.git"}, "keywords" : ["buidler", "ethereum", "hackathon"], "author" : "Nomic Labs", "license" : "MIT", "bugs" : {"url" : "https://github.com/nomiclabs/buidler-hackathon-boilerplate/issues"}, "homepage" : "https://github.com/nomiclabs/buidler-hackathon-boilerplate#readme", "devDependencies" : {"@nomiclabs/buidler" : "^1.3.8", "@nomiclabs/buidler-ethers" : "^1.2.0", "@nomiclabs/buidler-truffle5" : "^1.3.4", "@nomiclabs/buidler-waffle" : "^1.2.0", "chai" : "^4.2.0", "ethereum-waffle" : "^2.4.1", "ethers" : "^4.0.46", "husky" : "^4.2.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@nomiclabs/buidler": {"type": "string"}, "@nomiclabs/buidler-ethers": {"type": "string"}, "@nomiclabs/buidler-truffle5": {"type": "string"}, "@nomiclabs/buidler-waffle": {"type": "string"}, "chai": {"type": "string"}, "ethereum-waffle": {"type": "string"}, "ethers": {"type": "string"}, "husky": {"type": "string"}}, "required": ["@nomiclabs/buidler", "@nomiclabs/buidler-ethers", "@nomiclabs/buidler-truffle5", "@nomiclabs/buidler-waffle", "chai", "ethereum-waffle", "ethers", "husky"]}}, "required": ["name", "version", "description", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "builds": {"type": "object", "properties": {"yui-throttle": {"type": "object", "properties": {"jsfiles": {"type": "array", "items": {"type": "string"}}}, "required": ["jsfiles"]}}, "required": ["yui-throttle"]}}, "required": ["name", "builds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "yui-throttle", "builds" : {"yui-throttle" : {"jsfiles" : ["throttle.js"]}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "builds": {"type": "object", "properties": {"yui-throttle": {"type": "object", "properties": {"jsfiles": {"type": "array", "items": {"type": "string"}}}, "required": ["jsfiles"]}}, "required": ["yui-throttle"]}}, "required": ["name", "builds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"inputs" : ["5\n00\n01\n10\n110\n111\n", "3\n00\n01\n10\n"], "outputs" : ["11\n", "-1\n"]} | json_instruct | {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"http-server": {"type": "string"}, "workbox-cli": {"type": "string"}, "workbox-webpack-plugin": {"type": "string"}}, "required": ["http-server", "workbox-cli", "workbox-webpack-plugin"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "workbox-example", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "http-server -c0"}, "author" : "", "license" : "ISC", "devDependencies" : {"http-server" : "^0.11.1", "workbox-cli" : "^3.0.0", "workbox-webpack-plugin" : "^2.1.2"}, "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"http-server": {"type": "string"}, "workbox-cli": {"type": "string"}, "workbox-webpack-plugin": {"type": "string"}}, "required": ["http-server", "workbox-cli", "workbox-webpack-plugin"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "null"}, "death_date": {"type": "null"}, "birth_place": {"type": "null"}, "death_place": {"type": "null"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Bhairavi Ragini", "creation_date" : "18th century", "creation_date_earliest" : "1700-01-01", "creation_date_latest" : "1799-01-01", "medium" : "watercolor on paper", "accession_number" : "75.62.2", "id" : "cmoa:things/619b07e1-a909-4493-aae8-433e74192343", "credit_line" : "Gift of Mr. and Mrs. Ed Wiener", "date_acquired" : "1975-02-12", "department" : "Fine Arts", "physical_location" : "Not on View", "item_width" : 14.25, "item_height" : 19.25, "item_depth" : 0.0, "item_diameter" : 0.0, "web_url" : "http://collection.cmoa.org/CollectionDetail.aspx?item=1017851", "provenance_text" : "Mr. And Mrs. Ed Wiener, Great Neck, NY", "classification" : "drawings and watercolors", "images" : [{"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=114965&size=Medium"}], "creator" : [{"artist_id" : "cmoa:parties/e2c8f997-3cde-4a32-9c88-edf672df4544", "party_type" : "Person", "full_name" : "unknown Indian", "cited_name" : "unknown Indian", "role" : null, "nationality" : "Indian", "birth_date" : null, "death_date" : null, "birth_place" : null, "death_place" : null}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "null"}, "death_date": {"type": "null"}, "birth_place": {"type": "null"}, "death_place": {"type": "null"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"refreshToken": {"type": "null"}, "refreshTokenExpiry": {"type": "number"}, "ResponseResult": {"type": "object", "properties": {"IsSuccess": {"type": "boolean"}, "ErrorCode": {"type": "string"}, "ErrorDescription": {"type": "string"}, "TransactionId": {"type": "null"}}, "required": ["IsSuccess", "ErrorCode", "ErrorDescription", "TransactionId"]}, "nextStep": {"type": "integer"}, "NextStepData": {"type": "null"}, "authCode": {"type": "null"}, "redirectUri": {"type": "null"}, "idToken": {"type": "null"}, "state": {"type": "null"}, "cloudKey": {"type": "null"}, "isTrustedDevice": {"type": "boolean"}, "uasTokenInfo": {"type": "null"}}, "required": ["refreshToken", "refreshTokenExpiry", "ResponseResult", "nextStep", "NextStepData", "authCode", "redirectUri", "idToken", "state", "cloudKey", "isTrustedDevice", "uasTokenInfo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"refreshToken" : null, "refreshTokenExpiry" : 0.0, "ResponseResult" : {"IsSuccess" : false, "ErrorCode" : "E3013", "ErrorDescription" : "Authentication Pending", "TransactionId" : null}, "nextStep" : 0, "NextStepData" : null, "authCode" : null, "redirectUri" : null, "idToken" : null, "state" : null, "cloudKey" : null, "isTrustedDevice" : false, "uasTokenInfo" : null} | json_instruct | {"type": "object", "properties": {"refreshToken": {"type": "null"}, "refreshTokenExpiry": {"type": "number"}, "ResponseResult": {"type": "object", "properties": {"IsSuccess": {"type": "boolean"}, "ErrorCode": {"type": "string"}, "ErrorDescription": {"type": "string"}, "TransactionId": {"type": "null"}}, "required": ["IsSuccess", "ErrorCode", "ErrorDescription", "TransactionId"]}, "nextStep": {"type": "integer"}, "NextStepData": {"type": "null"}, "authCode": {"type": "null"}, "redirectUri": {"type": "null"}, "idToken": {"type": "null"}, "state": {"type": "null"}, "cloudKey": {"type": "null"}, "isTrustedDevice": {"type": "boolean"}, "uasTokenInfo": {"type": "null"}}, "required": ["refreshToken", "refreshTokenExpiry", "ResponseResult", "nextStep", "NextStepData", "authCode", "redirectUri", "idToken", "state", "cloudKey", "isTrustedDevice", "uasTokenInfo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"text.fabric-essentials.command.inventory.menu.other": {"type": "string"}, "text.fabric-essentials.command.heal.self": {"type": "string"}, "text.fabric-essentials.command.heal.other": {"type": "string"}, "text.fabric-essentials.command.heal.healed": {"type": "string"}, "text.fabric-essentials.command.feed.self": {"type": "string"}, "text.fabric-essentials.command.feed.other": {"type": "string"}, "text.fabric-essentials.command.feed.healed": {"type": "string"}, "text.fabric-essentials.command.ping.self": {"type": "string"}, "text.fabric-essentials.command.ping.other": {"type": "string"}, "text.fabric-essentials.command.mods.list.title": {"type": "string"}}, "required": ["text.fabric-essentials.command.inventory.menu.other", "text.fabric-essentials.command.heal.self", "text.fabric-essentials.command.heal.other", "text.fabric-essentials.command.heal.healed", "text.fabric-essentials.command.feed.self", "text.fabric-essentials.command.feed.other", "text.fabric-essentials.command.feed.healed", "text.fabric-essentials.command.ping.self", "text.fabric-essentials.command.ping.other", "text.fabric-essentials.command.mods.list.title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text.fabric-essentials.command.inventory.menu.other" : "Opened %s's %s", "text.fabric-essentials.command.heal.self" : "You have healed yourself", "text.fabric-essentials.command.heal.other" : "You have healed %s", "text.fabric-essentials.command.heal.healed" : "You have been healed by %s", "text.fabric-essentials.command.feed.self" : "You have fed yourself", "text.fabric-essentials.command.feed.other" : "You have fed %s", "text.fabric-essentials.command.feed.healed" : "You have been fed by %s", "text.fabric-essentials.command.ping.self" : "Pong! Your connection latency to the server is %sms", "text.fabric-essentials.command.ping.other" : "Pong! %s's connection latency to the server is %sms", "text.fabric-essentials.command.mods.list.title" : "Mods [%s]:"} | json_instruct | {"type": "object", "properties": {"text.fabric-essentials.command.inventory.menu.other": {"type": "string"}, "text.fabric-essentials.command.heal.self": {"type": "string"}, "text.fabric-essentials.command.heal.other": {"type": "string"}, "text.fabric-essentials.command.heal.healed": {"type": "string"}, "text.fabric-essentials.command.feed.self": {"type": "string"}, "text.fabric-essentials.command.feed.other": {"type": "string"}, "text.fabric-essentials.command.feed.healed": {"type": "string"}, "text.fabric-essentials.command.ping.self": {"type": "string"}, "text.fabric-essentials.command.ping.other": {"type": "string"}, "text.fabric-essentials.command.mods.list.title": {"type": "string"}}, "required": ["text.fabric-essentials.command.inventory.menu.other", "text.fabric-essentials.command.heal.self", "text.fabric-essentials.command.heal.other", "text.fabric-essentials.command.heal.healed", "text.fabric-essentials.command.feed.self", "text.fabric-essentials.command.feed.other", "text.fabric-essentials.command.feed.healed", "text.fabric-essentials.command.ping.self", "text.fabric-essentials.command.ping.other", "text.fabric-essentials.command.mods.list.title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "Hi Kerger,\n\n\nYou will not receive any diffuse contributions in your model, because \nthe ambient bounce setting (ab) is 0. Only direct sunlight values will \nbe returned--static_system.dir.dc will show some results when sensors \ncan directly see the direct solar sources. Try increasing ab to \nsomething larger. 2 is a good testing value, and 6 is a good value for \nhigh quality results. An -lr of setting of 0 means no limit; therefore, \nit should not influence your results.\n\n\n > When I changed my limit reflections parameter (-lr) to >/= 1. This \nreturned both direct and diffuse coefficients.\n\n\nI'm not sure how this could be with an ab setting of 0.\n\n\nBest,\n\n\nAlstan\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-daysim/2017-May/000147.html).</sup>", "attachments" : [], "created_by_name" : "Alstan Jakubiec", "created_at" : "May 09, 2017 at 07:27AM", "created_by" : "Alstan_Jakubiec", "parent_id" : "radiance-daysim_000146", "id" : "radiance-daysim_000147"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "minimum-stability", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mlntn/lumen-artisan-serve", "type" : "library", "description" : "artisan serve for Lumen projects", "keywords" : ["lumen", "artisan"], "homepage" : "http://github.com/mlntn/lumen-artisan-serve", "license" : "MIT", "authors" : [{"name" : "Jared Mellentine", "email" : "jared@mellentine.com"}], "minimum-stability" : "stable", "autoload" : {"classmap" : ["src/"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "minimum-stability", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"my-custom-event": {"type": "object", "properties": {"hello": {"type": "integer"}}, "required": ["hello"]}, "fake-id": {"type": "string"}, "headers": {"type": "object", "properties": {"X-Datadog-Trace-Id": {"type": "string"}, "X-Datadog-Parent-Id": {"type": "string"}}, "required": ["X-Datadog-Trace-Id", "X-Datadog-Parent-Id"]}}, "required": ["my-custom-event", "fake-id", "headers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"my-custom-event" : {"hello" : 100}, "fake-id" : "12345678910", "headers" : {"X-Datadog-Trace-Id" : "1231452342", "X-Datadog-Parent-Id" : "45678910"}} | json_instruct | {"type": "object", "properties": {"my-custom-event": {"type": "object", "properties": {"hello": {"type": "integer"}}, "required": ["hello"]}, "fake-id": {"type": "string"}, "headers": {"type": "object", "properties": {"X-Datadog-Trace-Id": {"type": "string"}, "X-Datadog-Parent-Id": {"type": "string"}}, "required": ["X-Datadog-Trace-Id", "X-Datadog-Parent-Id"]}}, "required": ["my-custom-event", "fake-id", "headers"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "react-hot-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "validator": {"type": "string"}}, "required": ["babel-core", "babel-loader", "react-hot-loader", "webpack", "webpack-dev-server", "validator"]}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "classnames": {"type": "string"}}, "required": ["react", "classnames"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-lofty", "version" : "0.0.1", "description" : "react-lofty", "scripts" : {"start" : "node server.js"}, "repository" : {"type" : "git", "url" : ""}, "keywords" : ["react"], "author" : "jinzhiwei", "license" : "MIT", "bugs" : {"url" : ""}, "homepage" : "", "devDependencies" : {"babel-core" : "^5.1.11", "babel-loader" : "^5.0.0", "react-hot-loader" : "^1.2.2", "webpack" : "^1.7.2", "webpack-dev-server" : "^1.7.0", "validator" : "^3.40.0"}, "dependencies" : {"react" : "^0.13.0", "classnames" : "^2.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "react-hot-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "validator": {"type": "string"}}, "required": ["babel-core", "babel-loader", "react-hot-loader", "webpack", "webpack-dev-server", "validator"]}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "classnames": {"type": "string"}}, "required": ["react", "classnames"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "exports": {"type": "object", "properties": {"import": {"type": "string"}, "require": {"type": "string"}}, "required": ["import", "require"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-plugin-import"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "scripts": {"type": "object", "properties": {"genrules-report": {"type": "string"}}, "required": ["genrules-report"]}}, "required": ["name", "version", "exports", "license", "dependencies", "eslintConfig", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eslint-config-bluejava", "version" : "1.0.2", "exports" : {"import" : "./index.js", "require" : "./.eslintrc.js"}, "license" : "MIT", "dependencies" : {"eslint" : "^8.0.0", "eslint-plugin-import" : "^2.25.1"}, "eslintConfig" : {"extends" : "."}, "scripts" : {"genrules-report" : "eslint --print-config .eslintrc.js > rules-report.json"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "exports": {"type": "object", "properties": {"import": {"type": "string"}, "require": {"type": "string"}}, "required": ["import", "require"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-plugin-import"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "scripts": {"type": "object", "properties": {"genrules-report": {"type": "string"}}, "required": ["genrules-report"]}}, "required": ["name", "version", "exports", "license", "dependencies", "eslintConfig", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : true, "values" : ["minecraft:redstone_lamp", "minecraft:lantern", "minecraft:soul_lantern"]} | json_instruct | {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 8856, "source" : "clarke", "verse_id" : 18817, "verse_count" : 1, "reference" : "59:16", "title" : "", "html" : " <p> <em>And wondered that there was no intercessor\u2014 </em> This and the following verses some of the most eminent rabbins understand as spoken of the Messiah. Kimchi says that Rabbi Joshua ben Levi proposes this objection: \"It is written, 'Behold, he will come in the clouds of heaven as the son of man,' <a class=\"ref\">Daniel 7:13</a>; and elsewhere it is written, 'He cometh lowly, and riding upon an ass,' <a class=\"ref\">Zechariah 9:9</a>. How can these texts be reconciled? Thus: If the Jews have merit, he will come unto them in the clouds of heaven; but if they be destitute of merit, he will come unto them riding upon an ass.\" Now out of their own mouth they may be condemned. They were truly destitute of all merit when Jesus Christ came into Jerusalem riding upon an ass, according to the letter of the above prophecy; and they neither acknowledged nor received him. And that they were destitute of merit their destruction by the Romans, which shortly followed their rejection of him, sufficiently proves. </p> ", "audit" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "PROCEDURE_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : 0, "X_COUNT" : 1}, "PROCEDURES_BY_TYPE" : {"CONCEPT_NAME" : "EHR order list entry", "COUNT_VALUE" : 18}, "AGE_AT_FIRST_OCCURRENCE" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [26, 45], "P10_VALUE" : [28, 45], "P25_VALUE" : [42, 50], "MEDIAN_VALUE" : [54, 53], "P75_VALUE" : [63, 67], "P90_VALUE" : [70, 80], "MAX_VALUE" : [73, 80]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 45984, "cartId" : "67a141de-32c1-41aa-b954-fe83d7dc1ece", "preferredProducts" : [895, 1927, 2601, 3405, 1414, 3013, 135], "productReviews" : [{"productId" : 3916, "reviewText" : "My co-worker Skylar has one of these. He says it looks sweaty.", "reviewDate" : "2019-03-19T15:00:20.3186116+02:00"}, {"productId" : 4853, "reviewText" : "It only works when I'm Finland.", "reviewDate" : "2020-01-21T01:44:12.0741763+02:00"}, {"productId" : 3823, "reviewText" : "This Villages works too well. It nonchalantly improves my baseball by a lot.", "reviewDate" : "2019-06-12T07:58:44.1941037+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "INDRAGIRI HULU", "originalFilename" : "ALI AKBAR2.jpg", "namaPartai" : "Partai Keadilan dan Persatuan Indonesia", "id" : 40956, "noUrut" : 1, "nama" : "ALI AKBAR", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "INDRAGIRI HULU", "originalFilename" : "CATUR.jpg", "namaPartai" : "Partai Keadilan dan Persatuan Indonesia", "id" : 291953, "noUrut" : 2, "nama" : "CATUR UMAR USMAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "INDRAGIRI HULU", "originalFilename" : "IMG_20180730_155246.JPG", "namaPartai" : "Partai Keadilan dan Persatuan Indonesia", "id" : 293107, "noUrut" : 3, "nama" : "TRI SUSANTI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "INDRAGIRI HULU", "originalFilename" : "BARKAT.jpg", "namaPartai" : "Partai Keadilan dan Persatuan Indonesia", "id" : 292653, "noUrut" : 4, "nama" : "MOHAMMAD BARKAT, S.S", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "INDRAGIRI HULU", "originalFilename" : "IMG-20180716-WA0006.jpg", "namaPartai" : "Partai Keadilan dan Persatuan Indonesia", "id" : 293318, "noUrut" : 5, "nama" : "YUKA ARISTA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "INDRAGIRI HULU", "originalFilename" : "IMG_20180730_165100.JPG", "namaPartai" : "Partai Keadilan dan Persatuan Indonesia", "id" : 293420, "noUrut" : 6, "nama" : "SUNATRA JAHILIN", "stringJenisKelamin" : "Laki-Laki"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"clbid": {"type": "integer"}, "credits": {"type": "number"}, "crsid": {"type": "integer"}, "departments": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "level": {"type": "integer"}, "locations": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "number": {"type": "integer"}, "pn": {"type": "boolean"}, "prerequisites": {"type": "boolean"}, "semester": {"type": "integer"}, "status": {"type": "string"}, "term": {"type": "integer"}, "times": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "year": {"type": "integer"}}, "required": ["clbid", "credits", "crsid", "departments", "description", "instructors", "level", "locations", "name", "number", "pn", "prerequisites", "semester", "status", "term", "times", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"clbid" : 52984, "credits" : 1.0, "crsid" : 1104, "departments" : ["PSCI"], "description" : "Why do some societies have democratic political systems and others authoritarian ones? What is democracy? Is it the norm or the exception? The course provides a foundation for the understanding of contemporary political regimes. It applies the major concepts of comparative analysis to the political systems of Western and non-Western societies.", "instructors" : ["D Christopher Brooks"], "level" : 100, "locations" : ["RML 421"], "name" : "Comparative Politics", "number" : 112, "pn" : false, "prerequisites" : false, "semester" : 4, "status" : "X", "term" : 20054, "times" : ["M-F 0800-0930"], "type" : "Research", "year" : 2005} | json_instruct | {"type": "object", "properties": {"clbid": {"type": "integer"}, "credits": {"type": "number"}, "crsid": {"type": "integer"}, "departments": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "level": {"type": "integer"}, "locations": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "number": {"type": "integer"}, "pn": {"type": "boolean"}, "prerequisites": {"type": "boolean"}, "semester": {"type": "integer"}, "status": {"type": "string"}, "term": {"type": "integer"}, "times": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "year": {"type": "integer"}}, "required": ["clbid", "credits", "crsid", "departments", "description", "instructors", "level", "locations", "name", "number", "pn", "prerequisites", "semester", "status", "term", "times", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Lunay", "circ" : "3\u00e8me circonscription", "dpt" : "Loir-et-Cher", "inscrits" : 1013, "abs" : 469, "votants" : 544, "blancs" : 35, "nuls" : 11, "exp" : 498, "res" : [{"nuance" : "UDI", "nom" : "M. Maurice LEROY", "voix" : 295}, {"nuance" : "REM", "nom" : "Mme Marl\u00e8ne MARTIN", "voix" : 203}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "import React from 'react';\nimport createSvgIcon from './utils/createSvgIcon';\nexport default createSvgIcon(React.createElement(React.Fragment, null, React.createElement(\"path\", {\n d: \"M22 15c0-1.66-1.34-3-3-3h-1.5v-.5C17.5 8.46 15.04 6 12 6c-.77 0-1.49.17-2.16.46L20.79 17.4c.73-.55 1.21-1.41 1.21-2.4zM2 14c0 2.21 1.79 4 4 4h9.73l-8-8H6c-2.21 0-4 1.79-4 4z\",\n opacity: \".3\"\n}), React.createElement(\"path\", {\n d: \"M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81 0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z\"\n})), 'CloudOffTwoTone');", "map" : null, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Hasi\\PayTabs\\": {"type": "string"}}, "required": ["Hasi\\PayTabs\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"laravel/framework": {"type": "string"}}, "required": ["laravel/framework"]}}, "required": ["name", "version", "description", "license", "authors", "minimum-stability", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hasi/pay-tab", "version" : "1.0.0", "description" : " PayTabs Express Checkout is a solution that provides an efficient checkout process for online shoppers which keeps them on the merchant's website while making a payment and even after the payment is complete", "license" : "MIT", "authors" : [{"name" : "Haseeb Ahmad", "email" : "hahmad748@gmail.com"}], "minimum-stability" : "stable", "autoload" : {"psr-4" : {"Hasi\\PayTabs\\" : "src/"}}, "require" : {"laravel/framework" : "^6.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Hasi\\PayTabs\\": {"type": "string"}}, "required": ["Hasi\\PayTabs\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"laravel/framework": {"type": "string"}}, "required": ["laravel/framework"]}}, "required": ["name", "version", "description", "license", "authors", "minimum-stability", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"topic" : "What platforms are people using for Radiance", "category" : "radiance-general", "attachments" : [], "created_by_name" : "R Fritz", "created_at" : "June 25, 2008 at 12:50PM", "body" : "I'm starting to look into several development projects, and one \nquestion that's come up is that all-time favorite, platform \ncompatibility. And I've realized that I don't actually know what \nhardware and software people are using these days. A quick sweep of \nthe mailing list doesn't find answers any more, so I figure I'd ask. \nMy list of likelies is the big three:\n Mac OS X (PowerPC/Intel)\n Windows (Intel)\n Linux (Intel)\n\n\nAnyone using anything else? Sun, perhaps? Old SGI systems?\n\n\nRandolph Fritz\n design machine group\n architecture department\n university of washington\nrfritz at u.washington.edu\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2008-June/005159.html).</sup>", "id" : "radiance-general_005159", "created_by" : "R_Fritz"} | json_instruct | {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"repo_name": {"type": "string"}, "repo_full_name": {"type": "string"}, "repo_owner": {"type": "string"}, "repo_description": {"type": "string"}, "repo_private": {"type": "boolean"}, "repo_fork": {"type": "boolean"}, "schemas": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "sha": {"type": "string"}, "url": {"type": "string"}, "git_url": {"type": "string"}, "html_url": {"type": "string"}, "content": {"type": "string"}, "containsQueryType": {"type": "boolean"}, "validSchema": {"type": "boolean"}, "contentDuplicate": {"type": "boolean"}, "numDefinitions": {"type": "integer"}}, "required": ["name", "path", "sha", "url", "git_url", "html_url", "content", "containsQueryType", "validSchema", "contentDuplicate", "numDefinitions"]}}, "metrics": {"type": "object", "properties": {"created_at": {"type": "string"}, "updated_at": {"type": "string"}, "pushed_at": {"type": "string"}, "issues": {"type": "integer"}, "watchers": {"type": "integer"}, "fork_count": {"type": "integer"}, "has_wiki_enabled": {"type": "boolean"}, "license": {"type": "string"}, "pull_requests": {"type": "integer"}, "pull_requests_open": {"type": "integer"}, "pull_requests_closed": {"type": "integer"}, "pull_requests_merged": {"type": "integer"}, "releases": {"type": "integer"}, "stargazers": {"type": "integer"}}, "required": ["created_at", "updated_at", "pushed_at", "issues", "watchers", "fork_count", "has_wiki_enabled", "license", "pull_requests", "pull_requests_open", "pull_requests_closed", "pull_requests_merged", "releases", "stargazers"]}}, "required": ["repo_name", "repo_full_name", "repo_owner", "repo_description", "repo_private", "repo_fork", "schemas", "metrics"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"repo_name" : "movieql", "repo_full_name" : "yunheur/movieql", "repo_owner" : "yunheur", "repo_description" : "nomadcoders - Movie API with Grapql", "repo_private" : false, "repo_fork" : false, "schemas" : [{"name" : "schema.graphql", "path" : "graphql/schema.graphql", "sha" : "e962183997f869aed71638430a0b78ce6008500c", "url" : "https://api.github.com/repositories/176511802/contents/graphql/schema.graphql?ref=1f5d8887ec2db77b14a7c99f45e55368f023e852", "git_url" : "https://api.github.com/repositories/176511802/git/blobs/e962183997f869aed71638430a0b78ce6008500c", "html_url" : "https://github.com/yunheur/movieql/blob/1f5d8887ec2db77b14a7c99f45e55368f023e852/graphql/schema.graphql", "content" : "type Movie {\n id: Int!\n title: String!\n rating: Float\n summary: String\n language: String\n medium_cover_image: String\n genres: [String]\n}\n\ntype Query {\n movies(limit: Int!, rating: Float): [Movie]!\n movie(id: Int!): Movie\n suggestions(id: Int!): [Movie]!\n}", "containsQueryType" : true, "validSchema" : true, "contentDuplicate" : true, "numDefinitions" : 2}], "metrics" : {"created_at" : "2019-03-19T12:55:24Z", "updated_at" : "2019-03-19T17:57:26Z", "pushed_at" : "2019-03-19T17:57:25Z", "issues" : 0, "watchers" : 1, "fork_count" : 0, "has_wiki_enabled" : true, "license" : "mit", "pull_requests" : 0, "pull_requests_open" : 0, "pull_requests_closed" : 0, "pull_requests_merged" : 0, "releases" : 0, "stargazers" : 0}} | json_instruct | {"type": "object", "properties": {"repo_name": {"type": "string"}, "repo_full_name": {"type": "string"}, "repo_owner": {"type": "string"}, "repo_description": {"type": "string"}, "repo_private": {"type": "boolean"}, "repo_fork": {"type": "boolean"}, "schemas": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "sha": {"type": "string"}, "url": {"type": "string"}, "git_url": {"type": "string"}, "html_url": {"type": "string"}, "content": {"type": "string"}, "containsQueryType": {"type": "boolean"}, "validSchema": {"type": "boolean"}, "contentDuplicate": {"type": "boolean"}, "numDefinitions": {"type": "integer"}}, "required": ["name", "path", "sha", "url", "git_url", "html_url", "content", "containsQueryType", "validSchema", "contentDuplicate", "numDefinitions"]}}, "metrics": {"type": "object", "properties": {"created_at": {"type": "string"}, "updated_at": {"type": "string"}, "pushed_at": {"type": "string"}, "issues": {"type": "integer"}, "watchers": {"type": "integer"}, "fork_count": {"type": "integer"}, "has_wiki_enabled": {"type": "boolean"}, "license": {"type": "string"}, "pull_requests": {"type": "integer"}, "pull_requests_open": {"type": "integer"}, "pull_requests_closed": {"type": "integer"}, "pull_requests_merged": {"type": "integer"}, "releases": {"type": "integer"}, "stargazers": {"type": "integer"}}, "required": ["created_at", "updated_at", "pushed_at", "issues", "watchers", "fork_count", "has_wiki_enabled", "license", "pull_requests", "pull_requests_open", "pull_requests_closed", "pull_requests_merged", "releases", "stargazers"]}}, "required": ["repo_name", "repo_full_name", "repo_owner", "repo_description", "repo_private", "repo_fork", "schemas", "metrics"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"backbone-min.js": {"type": "string"}, "backbone.js": {"type": "string"}}, "required": ["backbone-min.js", "backbone.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"backbone-min.js" : "sha512-QxOft1VNfOBcWiF3YkCwZSYGge8Pc/oZ+iupvF5xZOoFaekkz7Fi3dlM3UUT2DGl+306r3z53DC0rD0AHk/GpQ==", "backbone.js" : "sha512-KKCn+9SYbqCHwx1GBBJPjDBKApx8EyUxBOClfbRiGNfDSXns3HuxW9smSizm0qKBh2Mlq7GFbL1pH6oD80inEQ=="} | json_instruct | {"type": "object", "properties": {"backbone-min.js": {"type": "string"}, "backbone.js": {"type": "string"}}, "required": ["backbone-min.js", "backbone.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["In a small saucepan, combine all the ingredients and bring to a simmer over medium heat. Stir until sugar is dissolved, then remove from heat. Let syrup cool to room temperature, then strain.", "Fill each glass with 1 teaspoon cardamom syrup, and add a dash of bitters. Top up with prosecco and serve garnished with an orange twist."], "ingredients" : ["1/2 cup granulated sugar", "1/2 cup water", "2 teaspoons lightly crushed whole cardamom pods", "2-inch strip orange zest, removed with a vegetable peeler", "1 750-ml bottle prosecco, chilled", "Cardamom syrup (recipe follows)", "Angostura bitters", "Orange twists, for serving"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Cocktail", "Orange", "Cardamom"], "title" : "Orange-Cardamom Spritzer", "url" : "http://www.epicurious.com/recipes/food/views/orange-cardamom-spritzer-51254820"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "653126207200", "text" : "\u5df4\u4ec0\u5854\u5c15\u5176\u827e\u65e5\u514b\u6751\u59d4\u4f1a"}, {"id" : "653126207201", "text" : "\u5410\u683c\u66fc\u8d1d\u5e0c\u6751\u59d4\u4f1a"}, {"id" : "653126207202", "text" : "\u963f\u4e9a\u683c\u5854\u5c15\u5176\u827e\u65e5\u514b\u6751\u59d4\u4f1a"}, {"id" : "653126207203", "text" : "\u4ee3\u666e\u53f0\u5c14\u6751\u59d4\u4f1a"}, {"id" : "653126207204", "text" : "\u5e93\u52d2\u827e\u65e5\u514b\u6751\u59d4\u4f1a"}, {"id" : "653126207205", "text" : "\u5176\u6765\u514b\u4e9a\u6751\u59d4\u4f1a"}, {"id" : "653126207206", "text" : "\u5df4\u4ec0\u5df4\u4ec1\u6751\u59d4\u4f1a"}, {"id" : "653126207207", "text" : "\u963f\u4e9a\u683c\u5df4\u4ec1\u6751\u59d4\u4f1a"}, {"id" : "653126207208", "text" : "\u963f\u6070\u827e\u65e5\u514b\u6751\u59d4\u4f1a"}, {"id" : "653126207209", "text" : "\u963f\u62c9\u8428\u4f9d\u5e72\u6751\u59d4\u4f1a"}, {"id" : "653126207210", "text" : "\u5e78\u798f\u6751\u59d4\u4f1a"}, {"id" : "653126207211", "text" : "\u82f1\u963f\u74e6\u63d0\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-route": {"type": "string"}, "angular-loading-bar": {"type": "string"}, "semantic-ui": {"type": "string"}, "angular-qrcode": {"type": "string"}, "zeptojs": {"type": "string"}, "clipboard": {"type": "string"}}, "required": ["angular", "angular-route", "angular-loading-bar", "semantic-ui", "angular-qrcode", "zeptojs", "clipboard"]}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gh1", "private" : true, "dependencies" : {"angular" : "~1.4.7", "angular-route" : "~1.4.7", "angular-loading-bar" : "~0.8.0", "semantic-ui" : "~2.1.4", "angular-qrcode" : "monospaced/angular-qrcode#~6.1.3", "zeptojs" : "https://raw.githubusercontent.com/components/zepto/master/zepto.min.js", "clipboard" : "~1.5.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-route": {"type": "string"}, "angular-loading-bar": {"type": "string"}, "semantic-ui": {"type": "string"}, "angular-qrcode": {"type": "string"}, "zeptojs": {"type": "string"}, "clipboard": {"type": "string"}}, "required": ["angular", "angular-route", "angular-loading-bar", "semantic-ui", "angular-qrcode", "zeptojs", "clipboard"]}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"review" : "\uc791\ud488\uc131 \ub5a8\uc5b4\uc9c0\ub294 \uad70\uc0ac\uc601\ud654\uc784", "date" : "10.03.18", "rating" : "5", "author" : "jjyn****", "review_id" : "4363925", "movie_id" : "19792"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subtitle": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "part": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "subtitle", "chapter", "subchapter", "part", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "The District pledges to the Authority that the District will not limit or alter rights vested in the Authority to fulfill agreements made with holders of the bonds, or in any way impair the rights and remedies of the holders of the bonds until the bonds, together with the interest thereon, with interest on any unpaid installments of interest, and all costs and expenses in connection with any action or proceedings by or on behalf of the holders of the bonds are fully met and discharged. The Authority is authorized to include this pledge of the District in any agreement with the holders of the bonds.", "historical" : "Prior Codifications\n\n1981 Ed., \u00a7 9-813.\n\nLegislative History of Laws\n\nFor legislative history of D.C. Law 10-188, see Historical and Statutory Notes following \u00a7 10-1201.01.\n\nDC CODE \u00a7 10-1202.12\n\nCurrent through December 11, 2012", "credits" : "(Sept. 28, 1994, D.C. Law 10-188, \u00a7 212, 41 DCR 5333.)", "sections" : [], "division" : {"identifier" : "I", "text" : "Government of District."}, "title" : {"identifier" : "10", "text" : "Parks, Public Buildings, Grounds, and Space. (Refs & Annos)"}, "subtitle" : {"prefix" : "IV", "text" : " Specific Locales."}, "chapter" : {"identifier" : "12", "text" : "Washington Convention Center Authority."}, "subchapter" : {"identifier" : "I", "text" : "General Provisions."}, "part" : {"identifier" : "B", "text" : "General Provisions."}, "heading" : {"title" : "10", "chaptersection" : "1202", "identifier" : "10-1202.12", "catch_text" : "District pledges."}} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subtitle": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "part": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "subtitle", "chapter", "subchapter", "part", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-connect": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-htmlmin": {"type": "string"}, "gulp-if": {"type": "string"}, "gulp-less": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-usemin": {"type": "string"}, "gulp-useref": {"type": "string"}, "gulp-watch": {"type": "string"}, "gulp-wrap": {"type": "string"}}, "required": ["bower", "gulp", "gulp-concat", "gulp-connect", "gulp-cssnano", "gulp-htmlmin", "gulp-if", "gulp-less", "gulp-rename", "gulp-uglify", "gulp-usemin", "gulp-useref", "gulp-watch", "gulp-wrap"]}}, "required": ["name", "version", "author", "contributors", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rdash-angular", "version" : "0.0.1", "author" : "Elliot Hesp", "contributors" : ["Leonel Samayoa <leonel.e.samayoa@gmail.com> (http://gobliip.com)", "Ricardo Pascua <rdpascua@outlook.com>"], "devDependencies" : {"bower" : "^1.8.0", "gulp" : "^3.9.1", "gulp-concat" : "^2.6.1", "gulp-connect" : "^2.3.1", "gulp-cssnano" : "^2.1.2", "gulp-htmlmin" : "^1.3.0", "gulp-if" : "^2.0.2", "gulp-less" : "^3.3.2", "gulp-rename" : "^1.2.2", "gulp-uglify" : "^3.0.0", "gulp-usemin" : "^0.3.28", "gulp-useref" : "^3.1.2", "gulp-watch" : "^4.3.11", "gulp-wrap" : "^0.11.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-connect": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-htmlmin": {"type": "string"}, "gulp-if": {"type": "string"}, "gulp-less": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-usemin": {"type": "string"}, "gulp-useref": {"type": "string"}, "gulp-watch": {"type": "string"}, "gulp-wrap": {"type": "string"}}, "required": ["bower", "gulp", "gulp-concat", "gulp-connect", "gulp-cssnano", "gulp-htmlmin", "gulp-if", "gulp-less", "gulp-rename", "gulp-uglify", "gulp-usemin", "gulp-useref", "gulp-watch", "gulp-wrap"]}}, "required": ["name", "version", "author", "contributors", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x0bbb5a54767166b21e4a74d30500248a05ed985f", "tool" : "manticore", "start" : 1563961215.3663373, "end" : 1563963017.689097, "duration" : 1802.322759628296, "analysis" : [[], []]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-74.388523, 40.573347], [-74.38616, 40.577229], [-74.382567, 40.577409], [-74.359965, 40.572592], [-74.360137, 40.571226], [-74.357846, 40.571186], [-74.357765, 40.557596], [-74.356877, 40.556495], [-74.356814, 40.554142], [-74.380317, 40.552391], [-74.382378, 40.56274], [-74.388523, 40.573347]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 40639}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"quests/fu_questlines/tutorial/vinj/fu_scienceoutpost.questtemplate": {"type": "array", "items": {"type": "string"}}}, "required": ["quests/fu_questlines/tutorial/vinj/fu_scienceoutpost.questtemplate"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"quests/fu_questlines/tutorial/vinj/fu_scienceoutpost.questtemplate" : ["/title"]}, "Texts" : {"Chs" : "\u79d1\u5b66\u524d\u54e8\u7ad9", "Eng" : "The Science Outpost"}}, {"DeniedAlternatives" : [], "Files" : {"quests/fu_questlines/tutorial/vinj/fu_scienceoutpost.questtemplate" : ["/text"]}, "Texts" : {"Chs" : "^orange;\u7ef4\u7eb3\u5229\u65af^reset;\u5df2\u7ecf\u628a^orange;\u79d1\u5b66\u524d\u54e8\u7ad9^reset;\u7684\u4f4d\u7f6e\u4f20\u9001\u7ed9\u6211\u3002\u6211\u5df2\u7ecf\u5728^green;\u98de\u8239\u7684SAIL^reset;\u91cc\u6807\u8bb0\u4e86\u4f4d\u7f6e", "Eng" : "^orange;Vinalisj^reset; has given me the location of a ^orange;Science Outpost^reset;. I've marked the location ^green;in my ships SAIL^reset;."}}, {"DeniedAlternatives" : [], "Files" : {"quests/fu_questlines/tutorial/vinj/fu_scienceoutpost.questtemplate" : ["/completionText"]}, "Texts" : {"Chs" : "^orange;\u7ef4\u7eb3\u5229\u65af^reset;\u5df2\u7ecf\u628a^orange;\u79d1\u5b66\u524d\u54e8\u7ad9^reset;\u7684\u4f4d\u7f6e\u4f20\u9001\u7ed9\u6211\u3002\u6211\u5df2\u7ecf\u5728^green;\u98de\u8239\u7684SAIL^reset;\u91cc\u6807\u8bb0\u4e86\u4f4d\u7f6e", "Eng" : "^orange;Vinalisj^reset; has transmitted the location of a ^orange;Science Outpost^reset; to me. I've marked the location ^green;in my ships SAIL^reset;."}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"quests/fu_questlines/tutorial/vinj/fu_scienceoutpost.questtemplate": {"type": "array", "items": {"type": "string"}}}, "required": ["quests/fu_questlines/tutorial/vinj/fu_scienceoutpost.questtemplate"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-03-13T02:00:00Z", "Temp" : 9.1, "RelHum" : 95, "WindSpeed" : 3, "WindDir" : 116} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "imageUrl": {"type": "string"}, "imageAlt": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "imageUrl", "imageAlt", "title", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Jonathan Kramer", "imageUrl" : "/jk.jpg", "imageAlt" : "Jonathan Kramer", "title" : "President", "description" : "They say the buck stops with the President. JK, as he's known colloquially, is no exception. Since joining Zopa in 2014 JK has built a great team dedicated to bringing in funds to help Zopa grow and borrowers get great deals on loans."}, {"name" : "Tajmeet Kalra", "imageUrl" : "/tk.jpg", "imageAlt" : "Tajmeet Kalra", "title" : "Capital Markets", "description" : "They say what this man doesn't know about spreadsheets ain't worth knowing, and they're right. In fact his love of spreadsheets is bettered only by his love of coffee. A spreadsheet of artisanal coffee joints you say? Seventh heaven for this man."}, {"name" : "Jolene Cheung", "imageUrl" : "/jc.jpg", "imageAlt" : "Jolene Cheung", "title" : "Capital Markets Manager", "description" : "Joining the team in 2018, the benefit of Jolene's cool, calm-headed approach to getting things done is a real asset to the team. Whether it's keeping existing institutional investors happy or onboarding new ones, Jolene gets it done with aplomb. Her mum grows spectacular marrows also."}, {"name" : "William Johnson", "imageUrl" : "/wj.jpg", "imageAlt" : "William Johnson", "title" : "Capital Markets Big Dog", "description" : "This man loves the stories that numbers tell, and who can blame him? Will brings many things to the team, not least an excellent knowledge of Papa John's pizzas and a hawk like focus on ensuring demand is matched to supply every month."}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "imageUrl": {"type": "string"}, "imageAlt": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "imageUrl", "imageAlt", "title", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-jshint": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}, "jshint": {"type": "string"}, "jshint-stylish": {"type": "string"}}, "required": ["gulp", "gulp-jshint", "gulp-rename", "gulp-uglify", "jshint", "jshint-stylish"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "object-fit-videos", "version" : "1.0.4", "description" : "Polyfill for object-fit and object-position CSS properties on video elements", "main" : "object-fit-videos.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/TricomB2B/object-fit-videos.git"}, "keywords" : ["object-fit", "object-position", "javascript", "polyfill", "covers", "contains", "css", "styles", "internet", "explorer", "ies", "shim", "shiv", "fills", "videos", "backgrounds"], "author" : "Todd Miller <toddses@tricomb2b.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/TricomB2B/object-fit-videos/issues"}, "homepage" : "https://github.com/TricomB2B/object-fit-videos#readme", "devDependencies" : {"gulp" : "^3.9.1", "gulp-jshint" : "^2.0.1", "gulp-rename" : "^1.2.2", "gulp-uglify" : "^2.0.0", "jshint" : "^2.9.3", "jshint-stylish" : "^2.2.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-jshint": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}, "jshint": {"type": "string"}, "jshint-stylish": {"type": "string"}}, "required": ["gulp", "gulp-jshint", "gulp-rename", "gulp-uglify", "jshint", "jshint-stylish"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=bottom": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=top": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=double": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=bottom", "type=top", "type=double"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"type=bottom" : {"model" : "rankine:block/polished_ferropericlase_slab"}, "type=top" : {"model" : "rankine:block/polished_ferropericlase_slab_top"}, "type=double" : {"model" : "rankine:block/polished_ferropericlase"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=bottom": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=top": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=double": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=bottom", "type=top", "type=double"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"theme": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "default": {"type": "string"}}, "required": ["type", "title", "default"]}, "codeCellConfig": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "$ref": {"type": "string"}, "default": {"type": "object", "properties": {"autoClosingBrackets": {"type": "boolean"}, "cursorBlinkRate": {"type": "integer"}, "fontFamily": {"type": "null"}, "fontSize": {"type": "null"}, "lineHeight": {"type": "null"}, "lineNumbers": {"type": "boolean"}, "lineWrap": {"type": "string"}, "matchBrackets": {"type": "boolean"}, "readOnly": {"type": "boolean"}, "insertSpaces": {"type": "boolean"}, "tabSize": {"type": "integer"}, "wordWrapColumn": {"type": "integer"}, "rulers": {"type": "array", "items": {}}, "codeFolding": {"type": "boolean"}, "lineWiseCopyCut": {"type": "boolean"}}, "required": ["autoClosingBrackets", "cursorBlinkRate", "fontFamily", "fontSize", "lineHeight", "lineNumbers", "lineWrap", "matchBrackets", "readOnly", "insertSpaces", "tabSize", "wordWrapColumn", "rulers", "codeFolding", "lineWiseCopyCut"]}}, "required": ["title", "description", "$ref", "default"]}}, "required": ["theme", "codeCellConfig"]}, "type": {"type": "string"}}, "required": ["title", "description", "properties", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Theme", "description" : "Theme manager settings.", "properties" : {"theme" : {"type" : "string", "title" : "Selected Theme", "default" : "JupyterLab Light"}, "codeCellConfig" : {"title" : "Code Cell Configuration", "description" : "The configuration for all code cells.", "$ref" : "#/definitions/editorConfig", "default" : {"autoClosingBrackets" : true, "cursorBlinkRate" : 530, "fontFamily" : null, "fontSize" : null, "lineHeight" : null, "lineNumbers" : false, "lineWrap" : "off", "matchBrackets" : true, "readOnly" : false, "insertSpaces" : true, "tabSize" : 4, "wordWrapColumn" : 80, "rulers" : [], "codeFolding" : false, "lineWiseCopyCut" : true}}}, "type" : "object"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"theme": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "default": {"type": "string"}}, "required": ["type", "title", "default"]}, "codeCellConfig": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "$ref": {"type": "string"}, "default": {"type": "object", "properties": {"autoClosingBrackets": {"type": "boolean"}, "cursorBlinkRate": {"type": "integer"}, "fontFamily": {"type": "null"}, "fontSize": {"type": "null"}, "lineHeight": {"type": "null"}, "lineNumbers": {"type": "boolean"}, "lineWrap": {"type": "string"}, "matchBrackets": {"type": "boolean"}, "readOnly": {"type": "boolean"}, "insertSpaces": {"type": "boolean"}, "tabSize": {"type": "integer"}, "wordWrapColumn": {"type": "integer"}, "rulers": {"type": "array", "items": {}}, "codeFolding": {"type": "boolean"}, "lineWiseCopyCut": {"type": "boolean"}}, "required": ["autoClosingBrackets", "cursorBlinkRate", "fontFamily", "fontSize", "lineHeight", "lineNumbers", "lineWrap", "matchBrackets", "readOnly", "insertSpaces", "tabSize", "wordWrapColumn", "rulers", "codeFolding", "lineWiseCopyCut"]}}, "required": ["title", "description", "$ref", "default"]}}, "required": ["theme", "codeCellConfig"]}, "type": {"type": "string"}}, "required": ["title", "description", "properties", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 44094, "cartId" : "2f6652dd-28ef-4b8d-9ce7-954837f17ce3", "preferredProducts" : [165, 957], "productReviews" : [{"productId" : 4776, "reviewText" : "The box this comes in is 5 yard by 6 centimeter and weights 18 gram!!", "reviewDate" : "2017-10-29T03:53:11.2724965+02:00"}, {"productId" : 2035, "reviewText" : "My dog loves to play with it.", "reviewDate" : "2017-04-12T10:00:19.1102685+03:00"}, {"productId" : 1537, "reviewText" : "I saw one of these in Bhutan and I bought one.", "reviewDate" : "2017-06-22T18:09:31.8646932+03:00"}, {"productId" : 2085, "reviewText" : "It only works when I'm Singapore.", "reviewDate" : "2018-05-03T17:09:58.2844408+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"strapiArticles": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "content": {"type": "string"}, "url": {"type": "string"}, "published_at": {"type": "string"}, "tags": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "slug": {"type": "string"}}, "required": ["name", "slug"]}}}, "required": ["id", "title", "description", "content", "url", "published_at", "tags"]}, "site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "email": {"type": "string"}}, "required": ["title", "author", "description", "email"]}}, "required": ["siteMetadata"]}}, "required": ["strapiArticles", "site"]}, "pageContext": {"type": "object", "properties": {"title": {"type": "string"}, "slug": {"type": "string"}}, "required": ["title", "slug"]}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"componentChunkName" : "component---src-templates-article-article-detail-gen-js", "path" : "/coursera", "result" : {"data" : {"strapiArticles" : {"id" : "Articles_212", "title" : "Coursera", "description" : "\u5168\u7403\u5728\u7ebf\u5b66\u4e60\u5e73\u53f0\uff0c\u4e0e200 \u591a\u6240\u9886\u5148\u5927\u5b66\u548c\u516c\u53f8\u5408\u4f5c\uff0c\u6709\u673a\u4f1a\u83b7\u5f97\u5c31\u4e1a\u8bc1\u4e66\u548c\u5b66\u4f4d\u3002", "content" : "Join Coursera for free and learn online. Build skills with courses from top universities like Yale, Michigan, Stanford, and leading companies like Google and IBM. Advance your career with degrees, certificates, Specializations, & MOOCs in data science, computer science, business, and dozens of other topics.\n\nCoursera \u662f\u5168\u7403\u5728\u7ebf\u5b66\u4e60\u5e73\u53f0\uff0c\u4efb\u4f55\u4eba\u90fd\u53ef\u4ee5\u968f\u65f6\u968f\u5730\u8bbf\u95ee\u4e16\u754c\u4e00\u6d41\u5927\u5b66\u548c\u516c\u53f8\u7684\u5728\u7ebf\u8bfe\u7a0b\u548c\u5b66\u4f4d\u3002\n\nCoursera \u4e0e200 \u591a\u6240\u9886\u5148\u5927\u5b66\u548c\u516c\u53f8\u5408\u4f5c\uff0c\u4e3a\u5168\u7403\u7684\u4e2a\u4eba\u548c\u7ec4\u7ec7\u63d0\u4f9b\u7075\u6d3b\u3001\u8d1f\u62c5\u5f97\u8d77\u3001\u4e0e\u5de5\u4f5c\u76f8\u5173\u7684\u5728\u7ebf\u5b66\u4e60\u3002\u6211\u4eec\u63d0\u4f9b\u4e00\u7cfb\u5217\u5b66\u4e60\u673a\u4f1a\u2014\u2014\u4ece\u5b9e\u8df5\u9879\u76ee\u548c\u8bfe\u7a0b\u5230\u5c31\u4e1a\u8bc1\u4e66\u548c\u5b66\u4f4d\u8bfe\u7a0b\u3002", "url" : "https://www.coursera.org/", "published_at" : "2021-10-29T05:41:58.000Z", "tags" : [{"name" : "\u5b66\u4e60\u8d44\u6e90", "slug" : "online-course"}]}, "site" : {"siteMetadata" : {"title" : "\u6536\u96c6\u4f18\u8d28\u8d44\u6e90", "author" : "@learn-anything.cn", "description" : "\u8ffd\u6c42\u6781\u7b80\u8bed\u8a00\uff0c\u8bf4\u660e\u4e8b\u7269\u56e0\u679c\uff01", "email" : "lh@learn-anything.cn"}}}, "pageContext" : {"title" : "Coursera", "slug" : "coursera"}}, "staticQueryHashes" : ["63159454"]} | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"strapiArticles": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "content": {"type": "string"}, "url": {"type": "string"}, "published_at": {"type": "string"}, "tags": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "slug": {"type": "string"}}, "required": ["name", "slug"]}}}, "required": ["id", "title", "description", "content", "url", "published_at", "tags"]}, "site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "email": {"type": "string"}}, "required": ["title", "author", "description", "email"]}}, "required": ["siteMetadata"]}}, "required": ["strapiArticles", "site"]}, "pageContext": {"type": "object", "properties": {"title": {"type": "string"}, "slug": {"type": "string"}}, "required": ["title", "slug"]}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "orientation": {"type": "string"}}, "required": ["short_name", "name", "icons", "start_url", "display", "orientation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"short_name" : "GoPass", "name" : "GoPass (SM)", "icons" : [{"src" : "img/favicon.png", "sizes" : "148x148", "type" : "image/png"}], "start_url" : "index.html", "display" : "standalone", "orientation" : "portrait"} | json_instruct | {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "orientation": {"type": "string"}}, "required": ["short_name", "name", "icons", "start_url", "display", "orientation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"text": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " O F TACITUS., 199 sented no appearance of men marching book through their own country. They forgot that <span class=\"place\" data-place-id=\"1052\">Italy</span> was their native soil, and that the lands and houses belonged to their fel- Jow citizens. Regardless of the Roman name, they laid waste the country with.fire and sword; they pillaged, destroyed, and plundered, as if the war had been in a foreign realm, against the enemies of their country. The wretched inhabitants were oppressed by men, against whom, having entertained no fear, they had prepared no defence. The fields were covered with grain and cattle; the houses were open; and the owners, with their wives and chil- dren, went forth, in the simplicity of their hearts, to meet the army. In the midst of peace, they were surrounded with all the horrors of Avar. Marius Maturus was, at that time, governor of the mari- time Alps. He resolved to dispute the passage with\"Otho's troops, and, for that purpose, armed the youth of the country. In the first encounter, the mountaineers were either cut to pieces or put to the rout. A band of rustics, suddenly levied, and ignorant of military discipline, could", "image" : "http://books.google.com/books?id=2X5KAAAAYAAJ&pg=PA197&img=1&zoom=3&hl=en&sig=ACfU3U1_1c4EprXwve6iJKdonXRwbXknvA&ci=0%2C0%2C1000%2C2000&edge=0"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "Building bazel yielded errors since commit cd9691de5314fcfaf17d47a63264acef5716c0b6. The first commit fixes the build for older bazel versions, the second commit adds new versions and ports the patches to these versions. ", "user" : "muffgaga", "url" : "https://api.github.com/repos/spack/spack/issues/9369", "updated_at" : "2018-09-28 09:36:38", "created_at" : "2018-09-27 14:20:03", "closed_at" : "2018-09-28 02:37:32", "state" : "closed", "title" : "Bazel updates", "number" : 9369, "milestone" : null, "labels" : [], "id" : 364499918, "html_url" : "https://github.com/spack/spack/pull/9369", "assignees" : [], "comments" : 1} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.