input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"oauth": {"type": "string"}, "request": {"type": "string"}}, "required": ["oauth", "request"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "node-red": {"type": "object", "properties": {"nodes": {"type": "object", "properties": {"foursquare": {"type": "string"}, "swarm": {"type": "string"}}, "required": ["foursquare", "swarm"]}}, "required": ["nodes"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "required": ["name", "version", "description", "dependencies", "repository", "license", "keywords", "node-red", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "node-red-node-foursquare", "version" : "0.1.0", "description" : "Node-RED nodes to talk to Foursquare and Swarm", "dependencies" : {"oauth" : "~0.9.11", "request" : "~2.40.0"}, "repository" : {"type" : "git", "url" : "https://github.com/node-red/node-red-web-nodes/tree/master/foursquare"}, "license" : "Apache-2.0", "keywords" : ["node-red", "foursquare", "swarm", "food", "checkin"], "node-red" : {"nodes" : {"foursquare" : "foursquare.js", "swarm" : "swarm.js"}}, "author" : {"name" : "Helen Beeken", "email" : "hbeeken@uk.ibm.com", "url" : "http://nodered.org"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"oauth": {"type": "string"}, "request": {"type": "string"}}, "required": ["oauth", "request"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "node-red": {"type": "object", "properties": {"nodes": {"type": "object", "properties": {"foursquare": {"type": "string"}, "swarm": {"type": "string"}}, "required": ["foursquare", "swarm"]}}, "required": ["nodes"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "required": ["name", "version", "description", "dependencies", "repository", "license", "keywords", "node-red", "author"], "$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"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "config": {"type": "object", "properties": {"db": {"type": "string"}}, "required": ["db"]}, "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": {"agenda": {"type": "string"}, "castv2": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "fs-extra": {"type": "string"}, "gulp": {"type": "string"}, "gulp-less": {"type": "string"}, "gulp-watch": {"type": "string"}, "mongodb": {"type": "string"}, "natural": {"type": "string"}, "node-wifi": {"type": "string"}, "play": {"type": "string"}, "sequelize": {"type": "string"}, "slackbots": {"type": "string"}, "socket.io": {"type": "string"}, "sqlite3": {"type": "string"}, "winston": {"type": "string"}}, "required": ["agenda", "castv2", "dotenv", "express", "fs-extra", "gulp", "gulp-less", "gulp-watch", "mongodb", "natural", "node-wifi", "play", "sequelize", "slackbots", "socket.io", "sqlite3", "winston"]}}, "required": ["name", "version", "description", "main", "scripts", "config", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "home-os", "version" : "0.1.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "npm install && gulp less && node src/os/os.js"}, "config" : {"db" : "mongodb://127.0.0.1/agenda"}, "repository" : {"type" : "git", "url" : "git+https://github.com/home-os/home-os.git"}, "author" : "Thibault Friedrich <tf@elqui.fr>", "license" : "MIT", "bugs" : {"url" : "https://github.com/home-os/home-os/issues"}, "homepage" : "https://github.com/home-os/home-os#readme", "dependencies" : {"agenda" : "^0.9.0", "castv2" : "^0.1.9", "dotenv" : "^2.0.0", "express" : "^4.14.0", "fs-extra" : "^0.30.0", "gulp" : "^3.9.1", "gulp-less" : "^3.1.0", "gulp-watch" : "^4.3.10", "mongodb" : "^2.2.10", "natural" : "^0.4.0", "node-wifi" : "^1.1.0", "play" : "^0.5.0", "sequelize" : "^3.24.3", "slackbots" : "^0.5.3", "socket.io" : "^1.5.0", "sqlite3" : "^3.1.6", "winston" : "^2.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"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "config": {"type": "object", "properties": {"db": {"type": "string"}}, "required": ["db"]}, "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": {"agenda": {"type": "string"}, "castv2": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "fs-extra": {"type": "string"}, "gulp": {"type": "string"}, "gulp-less": {"type": "string"}, "gulp-watch": {"type": "string"}, "mongodb": {"type": "string"}, "natural": {"type": "string"}, "node-wifi": {"type": "string"}, "play": {"type": "string"}, "sequelize": {"type": "string"}, "slackbots": {"type": "string"}, "socket.io": {"type": "string"}, "sqlite3": {"type": "string"}, "winston": {"type": "string"}}, "required": ["agenda", "castv2", "dotenv", "express", "fs-extra", "gulp", "gulp-less", "gulp-watch", "mongodb", "natural", "node-wifi", "play", "sequelize", "slackbots", "socket.io", "sqlite3", "winston"]}}, "required": ["name", "version", "description", "main", "scripts", "config", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@ionic/react": {"type": "string"}}, "required": ["@ionic/react"]}}, "required": ["name", "version", "main", "types", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ui", "version" : "1.0.0", "main" : "./Button.tsx", "types" : "./Button.tsx", "license" : "MIT", "dependencies" : {"@ionic/react" : "^6.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@ionic/react": {"type": "string"}}, "required": ["@ionic/react"]}}, "required": ["name", "version", "main", "types", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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" : "Torogan, Picong, Lanao del Sur, Autonomous Region of Muslim Mindanao (ARMM), PH", "locale" : "ph.autonomous-region-of-muslim-mindanao-armm.lanao-del-sur.picong.torogan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "1", "region_reference" : "15", "region_name" : "Autonomous Region of Muslim Mindanao (ARMM)", "province_id" : "42", "province_reference" : "42", "province_name" : "Lanao del Sur", "city_id" : "1023", "city_reference" : "845", "city_name" : "Picong", "barangay_id" : "29027", "barangay_reference" : "21173", "barangay_name" : "Torogan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[124.004913, 7.68092], [124.005043, 7.68029], [124.004631, 7.6789], [124.004189, 7.67722], [124.004158, 7.67543], [124.004013, 7.67336], [124.003891, 7.6724], [124.003632, 7.67153], [124.003113, 7.67006], [124.003227, 7.66823], [124.003357, 7.66709], [124.003227, 7.66568], [124.003052, 7.66477], [124.002487, 7.66356], [123.993347, 7.66943], [123.997147, 7.68283], [124.004913, 7.68092]]]]}}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "objection", "definition" : "1. The act of objecting; as, to prevent agreement, or action, by objection. Johnson. 2. That which is, or may be, presented in opposition; an adverse reason or argument; a reason for objecting; obstacle; impediment; as, I have no objection to going; unreasonable objections. \"Objections against every truth.\" Tyndale. 3. Cause of trouble; sorrow. [Obs. or R.] He remembers the objection that lies in his bosom, and he sighs deeply. Jer. Taylor. Syn. -- Exception; difficulty; doubt; scruple."}
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": {"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" : "Verfeuil", "circ" : "4\u00e8me circonscription", "dpt" : "Gard", "inscrits" : 476, "abs" : 258, "votants" : 218, "blancs" : 19, "nuls" : 6, "exp" : 193, "res" : [{"nuance" : "REM", "nom" : "Mme Annie CHAPELIER", "voix" : 118}, {"nuance" : "FN", "nom" : "Mme Brigitte ROULLAUD", "voix" : 75}]}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "paitekeden", "h" : [{"d" : [{"f" : "\u628a\u2026\u55ae\u7368\u505a\u3001\u96a8\u610f\u505a\u3001\u53c3\u52a0\u3001\u63a5\u53d7\u3002", "e" : ["\ufff9`Paiteked~`e~`n~ `ko~ `tamdaw~ `no~ `lomaloma'~ `a~ `mapolong~.\ufffa\ufffb\u8b93\u6bcf\u5bb6\u6bcf\u6236\u7684\u4eba\u96a8\u610f\u53c3\u52a0\u796d\u7940\u6d3b\u52d5\u3002"]}]}], "stem" : "teked"}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$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": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"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" : {"name" : "Okeechobee County", "fips" : "12093", "state_code" : 12, "county_code" : 93, "population" : 42168, "countrylevel_id" : "fips:12093", "census_data" : {"COUNTYNS" : "00295760", "AFFGEOID" : "0500000US12093", "LSAD" : "06", "ALAND" : 1991328272, "AWATER" : 318722514}}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-81.214237, 27.529052], [-81.190626, 27.556663999999998], [-81.17795799999999, 27.557706999999997], [-81.155356, 27.591431], [-81.14244099999999, 27.598200000000002], [-81.14473199999999, 27.616985999999997], [-81.142164, 27.643238], [-80.87315, 27.642287999999997], [-80.778047, 27.643195], [-80.777166, 27.558733], [-80.67982099999999, 27.55847], [-80.67903799999999, 27.471812999999997], [-80.67786199999999, 27.205987999999998], [-80.677427, 27.121619], [-80.885639, 26.958918999999998], [-80.871169, 27.154951], [-80.878669, 27.169221], [-80.89052199999999, 27.164233], [-80.91018299999999, 27.174944], [-80.90678199999999, 27.189113], [-80.91746499999999, 27.189957], [-80.940676, 27.205938999999997], [-80.952125, 27.224719], [-80.97059899999999, 27.217468], [-80.98177799999999, 27.231551999999997], [-80.980612, 27.246411], [-80.99262, 27.250311], [-80.99862999999999, 27.262919], [-80.997768, 27.295147999999998], [-81.004102, 27.302011999999998], [-81.02467299999999, 27.301807], [-81.035381, 27.327938999999997], [-81.04611799999999, 27.337546999999997], [-81.034157, 27.345848999999998], [-81.034429, 27.35916], [-81.05114499999999, 27.363018], [-81.050021, 27.370659], [-81.06840199999999, 27.382346], [-81.090693, 27.383841999999998], [-81.09845, 27.379108], [-81.12523499999999, 27.393601999999998], [-81.142071, 27.416679], [-81.13905799999999, 27.434044], [-81.154557, 27.454117999999998], [-81.168838, 27.459521], [-81.18355199999999, 27.483787], [-81.205388, 27.490254], [-81.198459, 27.510375999999997], [-81.214237, 27.529052]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"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#"}
Based on the schema below, produce a valid JSON object: {"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" : "Saint-Jean-Mirabel", "dpt" : "Lot", "inscrits" : 211, "abs" : 33, "votants" : 178, "blancs" : 6, "nuls" : 1, "exp" : 171, "res" : [{"panneau" : "9", "voix" : 49}, {"panneau" : "3", "voix" : 39}, {"panneau" : "2", "voix" : 27}, {"panneau" : "11", "voix" : 18}, {"panneau" : "4", "voix" : 17}, {"panneau" : "8", "voix" : 11}, {"panneau" : "6", "voix" : 5}, {"panneau" : "1", "voix" : 3}, {"panneau" : "10", "voix" : 2}, {"panneau" : "5", "voix" : 0}, {"panneau" : "7", "voix" : 0}]}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"bulkId": {"type": "string"}, "messageId": {"type": "string"}, "to": {"type": "string"}, "sentAt": {"type": "string"}, "doneAt": {"type": "string"}, "smsCount": {"type": "integer"}, "price": {"type": "object", "properties": {"pricePerMessage": {"type": "number"}, "currency": {"type": "string"}}, "required": ["pricePerMessage", "currency"]}, "status": {"type": "object", "properties": {"groupId": {"type": "integer"}, "groupName": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["groupId", "groupName", "id", "name", "description"]}, "error": {"type": "object", "properties": {"groupId": {"type": "integer"}, "groupName": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "permanent": {"type": "boolean"}}, "required": ["groupId", "groupName", "id", "name", "description", "permanent"]}, "callbackData": {"type": "string"}}, "required": ["bulkId", "messageId", "to", "sentAt", "doneAt", "smsCount", "price", "status", "error", "callbackData"]}}}, "required": ["results"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"results" : [{"bulkId" : "BULK-ID-123-xyz", "messageId" : "c9823180-94d4-4ea0-9bf3-ec907e7534a6", "to" : "41793026731", "sentAt" : "2015-06-04T13:01:52.933+0000", "doneAt" : "2015-06-04T13:02:00.134+0000", "smsCount" : 1, "price" : {"pricePerMessage" : 0.0001, "currency" : "EUR"}, "status" : {"groupId" : 3, "groupName" : "DELIVERED", "id" : 5, "name" : "DELIVERED_TO_HANDSET", "description" : "Message delivered to handset"}, "error" : {"groupId" : 0, "groupName" : "OK", "id" : 0, "name" : "NO_ERROR", "description" : "No Error", "permanent" : false}, "callbackData" : "There's no place like home."}, {"bulkId" : "BULK-ID-123-xyz", "messageId" : "MESSAGE-ID-123-xyz", "to" : "41793026727", "sentAt" : "2015-06-04T13:01:52.937+0000", "doneAt" : "2015-06-04T13:02:01.204+0000", "smsCount" : 1, "price" : {"pricePerMessage" : 0.0001, "currency" : "EUR"}, "status" : {"groupId" : 3, "groupName" : "DELIVERED", "id" : 5, "name" : "DELIVERED_TO_HANDSET", "description" : "Message delivered to handset"}, "error" : {"groupId" : 0, "groupName" : "OK", "id" : 0, "name" : "NO_ERROR", "description" : "No Error", "permanent" : false}, "callbackData" : "There's no place like home."}]}
json_instruct
{"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"bulkId": {"type": "string"}, "messageId": {"type": "string"}, "to": {"type": "string"}, "sentAt": {"type": "string"}, "doneAt": {"type": "string"}, "smsCount": {"type": "integer"}, "price": {"type": "object", "properties": {"pricePerMessage": {"type": "number"}, "currency": {"type": "string"}}, "required": ["pricePerMessage", "currency"]}, "status": {"type": "object", "properties": {"groupId": {"type": "integer"}, "groupName": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["groupId", "groupName", "id", "name", "description"]}, "error": {"type": "object", "properties": {"groupId": {"type": "integer"}, "groupName": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "permanent": {"type": "boolean"}}, "required": ["groupId", "groupName", "id", "name", "description", "permanent"]}, "callbackData": {"type": "string"}}, "required": ["bulkId", "messageId", "to", "sentAt", "doneAt", "smsCount", "price", "status", "error", "callbackData"]}}}, "required": ["results"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"$schema": {"type": "string"}, "info": {"type": "object", "properties": {"title": {"type": "string"}, "callsign": {"type": "string"}, "locator": {"type": "string"}, "status": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "callsign", "locator", "status", "description", "version"]}, "interface": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["$schema", "info", "interface"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "../../Thunder/Tools/JsonGenerator/schemas/plugin.schema.json", "info" : {"title" : "FrameRate Plugin", "callsign" : "org.rdk.FrameRate", "locator" : "libWPEFrameworkFrameRate.so", "status" : "production", "description" : "The `FrameRate` plugin allows you to collect FPS data.", "version" : "2.0"}, "interface" : {"$ref" : "FrameRate.json#"}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "info": {"type": "object", "properties": {"title": {"type": "string"}, "callsign": {"type": "string"}, "locator": {"type": "string"}, "status": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "callsign", "locator", "status", "description", "version"]}, "interface": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["$schema", "info", "interface"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d543-137", "text" : "LAW OFFICES\nLEONARD H. MARKS\nMARCUS COHN\nCohn and Marks\nTELEPHONE\nSTERLING 3-5SSO\nSTANLEY S. NEUSTADT\nPAUL DOB I N\nCAFRITZ BUILDING\nWASHINGTON 6, D. C.\nCABLE ADDRESS\nCOMAR-WASHINGTON, D. C.\nSTANLEY B.COHEN\nApril 24, 1959\nMr. William Harley\nUniversity of Wisconsin\nMadison, Wisconsin\nDear Bill\nThe Commission has released the enclosed list of witnesses in the\nhearing involving the allocation of frequencies between 25 me and\n890 me.\nUnder the procedure that will be followed each witness may testify\nfor fifteen minutes on his written testimony and will be subject to\ncross-examination based upon written questions submitted in advance.\nI believe it would be desirable for the educational stations to have\nsuch a presentation made. What do you think?\n^rd H. Marks\nEnclosure"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "industriallevel:block/deepslate_osmium_ore"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {}}, "meeting_sections": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "times": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "duration": {"type": "integer"}, "location": {"type": "string"}}, "required": ["day", "start", "end", "duration", "location"]}}, "size": {"type": "integer"}, "enrolment": {"type": "integer"}}, "required": ["code", "instructors", "times", "size", "enrolment"]}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "MGT452H5F20199", "code" : "MGT452H5F", "name" : "Advanced Marketing Management", "description" : "The emphasis in this course is on marketing decision making in a dynamic environment. Building on the concepts and skills developed in MGT353H5, the course focuses on the major decisions facing marketing managers in the attempt to harmonize the resources of the organization with the opportunities in the market. [24L]", "division" : "University of Toronto Mississauga", "department" : "Management", "prerequisites" : "MGT353H5", "exclusions" : "", "level" : 400, "campus" : "UTM", "term" : "2019 Fall", "breadths" : [], "meeting_sections" : [{"code" : "L0101", "instructors" : ["T Hossain"], "times" : [{"day" : "THURSDAY", "start" : 54000, "end" : 61200, "duration" : 7200, "location" : "IB 270"}], "size" : 55, "enrolment" : 0}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {}}, "meeting_sections": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "times": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "duration": {"type": "integer"}, "location": {"type": "string"}}, "required": ["day", "start", "end", "duration", "location"]}}, "size": {"type": "integer"}, "enrolment": {"type": "integer"}}, "required": ["code", "instructors", "times", "size", "enrolment"]}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$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" : "130926100", "text" : "\u8083\u5b81\u9547"}, {"id" : "130926101", "text" : "\u6881\u5bb6\u6751\u9547"}, {"id" : "130926102", "text" : "\u7a9d\u5317\u9547"}, {"id" : "130926103", "text" : "\u5c1a\u6751\u9547"}, {"id" : "130926104", "text" : "\u4e07\u91cc\u9547"}, {"id" : "130926105", "text" : "\u5e08\u7d20\u9547"}, {"id" : "130926203", "text" : "\u6cb3\u5317\u7559\u5584\u5bfa\u4e61"}, {"id" : "130926204", "text" : "\u4ed8\u5bb6\u4f50\u4e61"}, {"id" : "130926205", "text" : "\u90b5\u5e84\u4e61"}]
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "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"]}, "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"]}, "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", "chapter", "subchapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "", "historical" : "Emergency Act Amendments\n\nFor temporary (90 day) addition of section, see \u00a7 11 of Capital Access Program Emergency Act of 2010 (D.C. Act 18-598, November 17, 2010, 57 DCR 11018).\n\nFor temporary (90 day) addition of section, see \u00a7 11 of Capital Access Program Congressional Review Emergency Act of 2011 (D.C. Act 19-6, February 11, 2011, 58 DCR 1408).\n\nLegislative History of Laws\n\nFor history of Law 18-322, see notes under \u00a7 2-1210.01.\n\nDC CODE \u00a7 2-1210.10\n\nCurrent through December 11, 2012", "credits" : "(Mar. 12, 2011, D.C. Law 18-322, \u00a7 11, 57 DCR 12442.)", "sections" : [{"prefix" : "a", "text" : " The Mayor shall submit to the Council an annual status report on the program's activities."}, {"prefix" : "b", "text" : " The financial transactions of the Fund shall be subject to audit by the District of Columbia Auditor as provided by \u00a7 1-204.55."}], "division" : {"identifier" : "I", "text" : "Government of District."}, "title" : {"identifier" : "2", "text" : "Government Administration. (Refs & Annos)"}, "chapter" : {"identifier" : "12", "text" : "Business and Economic Development."}, "subchapter" : {"identifier" : "V-A", "text" : "Access to Capital for Businesses and Nonprofit Organizations."}, "heading" : {"title" : "2", "chaptersection" : "1210", "identifier" : "2-1210.10", "catch_text" : "Reports and audits."}}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "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"]}, "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"]}, "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", "chapter", "subchapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "MetadataValues": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "MetadataFieldID": {"type": "integer"}, "ItemValue": {"type": "string"}}, "required": ["ID", "MetadataFieldID", "ItemValue"]}}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "AddressInfo", "Connections", "StatusTypeID", "DateLastStatusUpdate", "MetadataValues", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 186827, "UUID" : "6405ACA9-31DD-4F89-8294-55844F7FCF1B", "DataProviderID" : 29, "DataProvidersReference" : "5645", "AddressInfo" : {"ID" : 187186, "Title" : "Pa\u00dfweg 3", "AddressLine1" : "Pa\u00dfweg 3", "Town" : "Gronau", "Postcode" : "48599", "CountryID" : 87, "Latitude" : 52.210436, "Longitude" : 7.0261, "DistanceUnit" : 0}, "Connections" : [{"ID" : 300298, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 20}, {"ID" : 300299, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 20}], "StatusTypeID" : 50, "DateLastStatusUpdate" : "2021-07-12T02:49:00Z", "MetadataValues" : [{"ID" : 19068, "MetadataFieldID" : 4, "ItemValue" : "Data from the German chargepoint registry provided by Bundesnetzagentur.de under the CC-BY 4.0 license"}], "DataQualityLevel" : 3, "DateCreated" : "2021-07-12T02:49:00Z", "SubmissionStatusTypeID" : 100}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "MetadataValues": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "MetadataFieldID": {"type": "integer"}, "ItemValue": {"type": "string"}}, "required": ["ID", "MetadataFieldID", "ItemValue"]}}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "AddressInfo", "Connections", "StatusTypeID", "DateLastStatusUpdate", "MetadataValues", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "body-parser": {"type": "string"}, "dotenv-node": {"type": "string"}, "express": {"type": "string"}, "nodemailer": {"type": "string"}, "nodemailer-smtp-transport": {"type": "string"}}, "required": ["angular", "body-parser", "dotenv-node", "express", "nodemailer", "nodemailer-smtp-transport"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "angularNode-website", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "nodemon app.js", "start" : "node app.js"}, "author" : "Chris Stanton", "license" : "ISC", "dependencies" : {"angular" : "^1.6.3", "body-parser" : "^1.17.1", "dotenv-node" : "0.0.2", "express" : "^4.15.2", "nodemailer" : "^3.1.8", "nodemailer-smtp-transport" : "^2.7.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "body-parser": {"type": "string"}, "dotenv-node": {"type": "string"}, "express": {"type": "string"}, "nodemailer": {"type": "string"}, "nodemailer-smtp-transport": {"type": "string"}}, "required": ["angular", "body-parser", "dotenv-node", "express", "nodemailer", "nodemailer-smtp-transport"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 168686, "info" : {"name" : "Compact Share Button", "description" : "Makes the share button on G Suite compact.", "additionalInfo" : "This style affects:\r\n- Google Docs\r\n- Google Sheets\r\n- Google Slides\r\n\r\nFebruary 8th, 2019:\r\n- Added a screenshot so that the style is public\r\n\r\nFebruary 7th, 2019:\r\n- Initial release", "format" : "uso", "category" : "google", "createdAt" : "2019-02-07T20:25:21.000Z", "updatedAt" : "2019-02-07T20:25:21.000Z", "license" : "CC0-1.0", "author" : {"id" : 474582, "name" : "Nightcat"}}, "stats" : {"installs" : {"total" : 15, "weekly" : 2}}, "screenshots" : {"main" : {"name" : "168686_after.png", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document url-prefix(\"https://docs.google.com/document/d/\"), url-prefix(\"https://docs.google.com/spreadsheets/d/\"), url-prefix(\"https://docs.google.com/presentation/d/\") {\r\n.docs-gm #docs-titlebar-share-client-button .jfk-button{height:40px!important;width:40px!important;border-radius:50%!important;font-size:0!important;}\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "width": {"type": "number"}, "height": {"type": "number"}, "area": {"type": "number"}, "perimeter": {"type": "number"}}, "required": ["id", "width", "height", "area", "perimeter"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "name", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "name" : "extent", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"id" : 0, "width" : 46153.45712321624, "height" : 61836.883009254, "area" : 2853985928.6009436, "perimeter" : 215980.68026494049}, "geometry" : {"type" : "Polygon", "coordinates" : [[[24.606244, 59.832179], [25.429205, 59.832068], [25.436487, 60.387071], [24.599563, 60.387184], [24.606244, 59.832179]]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "width": {"type": "number"}, "height": {"type": "number"}, "area": {"type": "number"}, "perimeter": {"type": "number"}}, "required": ["id", "width", "height", "area", "perimeter"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "name", "crs", "features"], "$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"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "coffeediagroup_32412", "displayName" : "coffeediagroup_32412"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "created", "type", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "Just realized, the reason <a href=\"https://mcphee.com/products/librarian-action-figure\">librarians</a> must love the web, and linking, is that you can provide a complete bit of complex information without being overwhelming. It's the same reason I like coding in an outliner. There's no cost for being verbose, just tuck the verbosity under a headline and leave it collapsed. Until the day you wonder wtf is going on here. You can hide little crumb trails for later discovery. Links work the same way. ", "created" : "Tue, 16 Jan 2018 19:10:11 GMT", "type" : "outline", "image" : "http://scripting.com/images/2018/01/16/librarianActionFigure.png"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "created", "type", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "a8a9fd531245c4b55e3c9698d7919b783d69707c"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"region_attributes": {"type": "object", "properties": {"id": {"type": "number"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["region_attributes"]}, "category_id": {"type": "string"}, "segmentation": {"type": "string"}, "id": {"type": "string"}, "blurred": {"type": "boolean"}, "goodIllumination": {"type": "boolean"}}, "required": ["score", "frontview", "other", "category_id", "segmentation", "id", "blurred", "goodIllumination"]}}, "camera_id": {"type": "string"}, "image_width": {"type": "integer"}}, "required": ["image_name", "image_height", "camera_gps", "bbox", "camera_id", "image_width"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"image_name" : "lesion4618.png", "image_height" : 512, "camera_gps" : "", "bbox" : [{"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 1.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "143.0,293.0,138.0,289.0,134.0,288.0,128.0,290.0,124.0,295.0,122.0,303.0,124.0,313.0,122.0,318.0,120.0,326.0,121.0,332.0,126.0,339.0,130.0,347.0,136.0,354.0,141.0,357.0,149.0,360.0,158.0,364.0,167.0,367.0,178.0,365.0,184.0,363.0,192.0,358.0,197.0,354.0,201.0,348.0,208.0,343.0,214.0,340.0,217.0,334.0,217.0,329.0,210.0,326.0,202.0,324.0,196.0,319.0,192.0,314.0,188.0,309.0,188.0,300.0,185.0,295.0,180.0,299.0,177.0,305.0,172.0,306.0,169.0,305.0,165.0,309.0,162.0,305.0,161.0,298.0,157.0,297.0,154.0,293.0,149.0,293.0", "id" : "1", "blurred" : false, "goodIllumination" : true}, {"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 3.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "279.0,337.0,285.0,347.0,293.0,358.0,303.0,365.0,314.0,371.0,324.0,374.0,336.0,376.0,346.0,373.0,354.0,367.0,360.0,363.0,367.0,356.0,375.0,348.0,380.0,340.0,384.0,335.0,376.0,333.0,367.0,330.0,362.0,326.0,378.0,318.0,385.0,314.0,396.0,305.0,399.0,295.0,400.0,286.0,399.0,278.0,398.0,267.0,394.0,258.0,391.0,255.0,384.0,255.0,372.0,260.0,360.0,272.0,354.0,283.0,345.0,300.0,338.0,309.0,334.0,313.0,338.0,318.0,340.0,323.0,333.0,322.0,328.0,318.0,321.0,312.0,316.0,313.0,309.0,313.0,304.0,317.0,298.0,324.0,290.0,330.0,283.0,333.0", "id" : "3", "blurred" : false, "goodIllumination" : true}], "camera_id" : "", "image_width" : 512}
json_instruct
{"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"region_attributes": {"type": "object", "properties": {"id": {"type": "number"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["region_attributes"]}, "category_id": {"type": "string"}, "segmentation": {"type": "string"}, "id": {"type": "string"}, "blurred": {"type": "boolean"}, "goodIllumination": {"type": "boolean"}}, "required": ["score", "frontview", "other", "category_id", "segmentation", "id", "blurred", "goodIllumination"]}}, "camera_id": {"type": "string"}, "image_width": {"type": "integer"}}, "required": ["image_name", "image_height", "camera_gps", "bbox", "camera_id", "image_width"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"blurb": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {}}, "files": {"type": "object", "properties": {"solution": {"type": "array", "items": {"type": "string"}}, "test": {"type": "array", "items": {"type": "string"}}, "exemplar": {"type": "array", "items": {"type": "string"}}}, "required": ["solution", "test", "exemplar"]}, "forked_from": {"type": "array", "items": {"type": "string"}}}, "required": ["blurb", "authors", "contributors", "files", "forked_from"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"blurb" : "TODO: add blurb for recursion exercise", "authors" : ["SleeplessByte"], "contributors" : [], "files" : {"solution" : ["recursion.js"], "test" : ["recursion.spec.js"], "exemplar" : [".meta/exemplar.js"]}, "forked_from" : ["csharp/nullability"]}
json_instruct
{"type": "object", "properties": {"blurb": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {}}, "files": {"type": "object", "properties": {"solution": {"type": "array", "items": {"type": "string"}}, "test": {"type": "array", "items": {"type": "string"}}, "exemplar": {"type": "array", "items": {"type": "string"}}}, "required": ["solution", "test", "exemplar"]}, "forked_from": {"type": "array", "items": {"type": "string"}}}, "required": ["blurb", "authors", "contributors", "files", "forked_from"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Artist": {"type": "string"}, "Common name": {"type": "string"}, "Date created": {"type": "string"}, "Geographic origin": {"type": "string"}, "Notes on original": {"type": "string"}, "Physical description": {"type": "string"}, "Scientific name": {"type": "string"}, "Specimen": {"type": "string"}, "Variety": {"type": "string"}, "Year": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Artist", "Common name", "Date created", "Geographic origin", "Notes on original", "Physical description", "Scientific name", "Specimen", "Variety", "Year", "Name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Artist" : "Passmore, Deborah Griscom, 1840-1911", "Common name" : "Japanese apricot", "Date created" : "1902", "Geographic origin" : "Loomis, Placer County, California, United States", "Notes on original" : "Chinese plum", "Physical description" : "1 art original : col. ; 17 x 25 cm.", "Scientific name" : "Prunus mume", "Specimen" : "24995", "Variety" : "Blenheim", "Year" : "1902", "Name" : "Prunus mume: Blenheim"}
json_instruct
{"type": "object", "properties": {"Artist": {"type": "string"}, "Common name": {"type": "string"}, "Date created": {"type": "string"}, "Geographic origin": {"type": "string"}, "Notes on original": {"type": "string"}, "Physical description": {"type": "string"}, "Scientific name": {"type": "string"}, "Specimen": {"type": "string"}, "Variety": {"type": "string"}, "Year": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Artist", "Common name", "Date created", "Geographic origin", "Notes on original", "Physical description", "Scientific name", "Specimen", "Variety", "Year", "Name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "animania:peahen_white", "Registry ID" : "animania:peahen_white", "Class" : "com.animania.common.entities.peacocks.PeafowlWhite.EntityPeafowlWhite"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "directory": {"type": "string"}}, "required": ["type", "url", "directory"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prebuild": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "prebuild", "build"]}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/types": {"type": "string"}, "minimatch": {"type": "string"}, "string-hash": {"type": "string"}}, "required": ["@babel/core", "@babel/types", "minimatch", "string-hash"]}}, "required": ["name", "version", "author", "license", "main", "publishConfig", "repository", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@convey/babel-plugin", "version" : "0.2.0", "author" : "Kenzhaev Artur <kenzhaev.artur@gmail.com>", "license" : "MIT", "main" : "index.js", "publishConfig" : {"access" : "public"}, "repository" : {"type" : "git", "url" : "https://github.com/lttb/convey.git", "directory" : "@convey/babel-plugin"}, "scripts" : {"test" : "", "prebuild" : "rm -rf lib", "build" : "rollup -c"}, "dependencies" : {"@babel/core" : "^7.13.8", "@babel/types" : "^7.13.0", "minimatch" : "^3.0.4", "string-hash" : "^1.1.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "directory": {"type": "string"}}, "required": ["type", "url", "directory"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prebuild": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "prebuild", "build"]}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/types": {"type": "string"}, "minimatch": {"type": "string"}, "string-hash": {"type": "string"}}, "required": ["@babel/core", "@babel/types", "minimatch", "string-hash"]}}, "required": ["name", "version", "author", "license", "main", "publishConfig", "repository", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"listed-building": {"type": "string"}, "start-date": {"type": "string"}, "point": {"type": "string"}, "listed-building-grade": {"type": "string"}, "documentation-url": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["listed-building", "start-date", "point", "listed-building-grade", "documentation-url", "name", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.378868, 52.10618]}, "properties" : {"listed-building" : "1024187", "start-date" : "1987-04-08", "point" : "POINT (-1.378868 52.106180)", "listed-building-grade" : "II", "documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1024187", "name" : "2 HEADSTONES APPROXIMATELY 8 METRES SOUTH OF SOUTH DOOR OF CHURCH OF ST LAURENCE", "slug" : "/listed-building/1024187", "entry-date" : "2021-05-28"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"listed-building": {"type": "string"}, "start-date": {"type": "string"}, "point": {"type": "string"}, "listed-building-grade": {"type": "string"}, "documentation-url": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["listed-building", "start-date", "point", "listed-building-grade", "documentation-url", "name", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "firebase_url", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"appinvite_service": {"type": "object", "properties": {"other_platform_oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}}, "required": ["other_platform_oauth_client"]}}, "required": ["appinvite_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"project_info" : {"project_number" : "229935776281", "firebase_url" : "https://pickupgame-a91c7.firebaseio.com", "project_id" : "pickupgame-a91c7", "storage_bucket" : "pickupgame-a91c7.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:229935776281:android:70aabeedc5ceba08fa6088", "android_client_info" : {"package_name" : "tech.sutd.pickupgame"}}, "oauth_client" : [{"client_id" : "229935776281-ijanv62dpshig07hrl3vibklj3v1vj4h.apps.googleusercontent.com", "client_type" : 3}], "api_key" : [{"current_key" : "AIzaSyBCwqCvPstlgVsgIwJSbI-3xmT1Y0xu7TY"}], "services" : {"appinvite_service" : {"other_platform_oauth_client" : [{"client_id" : "229935776281-ijanv62dpshig07hrl3vibklj3v1vj4h.apps.googleusercontent.com", "client_type" : 3}]}}}], "configuration_version" : "1"}
json_instruct
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "firebase_url", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"appinvite_service": {"type": "object", "properties": {"other_platform_oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}}, "required": ["other_platform_oauth_client"]}}, "required": ["appinvite_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "wayto": {"type": "object", "properties": {"15998": {"type": "string"}}, "required": ["15998"]}, "timeto": {"type": "object", "properties": {"15998": {"type": "number"}}, "required": ["15998"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 15997, "title" : ["[Coastal Cliffs, Fenvaok's Roost]"], "description" : ["An outcropping of huge, jagged boulders extends from the cliff, home to the nest of seemingly hundreds of screeching fenvaoks. The stones are cluttered with ragged nests of weeds and branches, and the huge birds soar to and fro, bringing food to their young and viciously defending any attempt to approach their haven."], "paths" : ["Obvious paths: east"], "wayto" : {"15998" : "east"}, "timeto" : {"15998" : 0.2}, "image" : "wl-homes-2-1264234799.png", "image_coords" : [73, 236, 91, 254]}
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"}}, "wayto": {"type": "object", "properties": {"15998": {"type": "string"}}, "required": ["15998"]}, "timeto": {"type": "object", "properties": {"15998": {"type": "number"}}, "required": ["15998"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "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": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"hoa/websocket": {"type": "string"}, "mike42/escpos-php": {"type": "string"}, "php": {"type": "string"}}, "required": ["hoa/websocket", "mike42/escpos-php", "php"]}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tec\\Ppp\\": {"type": "string"}}, "required": ["Tec\\Ppp\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "require", "homepage", "license", "authors", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tecdiary/ppp", "description" : "PHP POS Print Server", "require" : {"hoa/websocket" : "3.16.10.24", "mike42/escpos-php" : "^1.4", "php" : ">=5.4.0"}, "homepage" : "https://github.com/Tecdiary/ppp", "license" : "MIT", "authors" : [{"name" : "Mian Saleem", "email" : "saleem@tecdiary.com", "homepage" : "http://tecdiary.com"}], "autoload" : {"psr-4" : {"Tec\\Ppp\\" : "lib/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"hoa/websocket": {"type": "string"}, "mike42/escpos-php": {"type": "string"}, "php": {"type": "string"}}, "required": ["hoa/websocket", "mike42/escpos-php", "php"]}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tec\\Ppp\\": {"type": "string"}}, "required": ["Tec\\Ppp\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "require", "homepage", "license", "authors", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"moduleTitle": {"type": "string"}, "couldNotLoadDataFromServer": {"type": "string"}, "nonExistentDirectory": {"type": "string"}, "noFilesInDirectory": {"type": "string"}, "deleteConfirmation": {"type": "string"}, "btnDelete": {"type": "string"}, "btnCancel": {"type": "string"}, "deleteFilesText": {"type": "string"}, "couldNotDelete": {"type": "string"}, "operationSuccess": {"type": "string"}, "selectAll": {"type": "string"}, "selectNone": {"type": "string"}, "levelUp": {"type": "string"}, "doCopy": {"type": "string"}, "doCut": {"type": "string"}, "doPaste": {"type": "string"}, "doDelete": {"type": "string"}, "refresh": {"type": "string"}, "couldNotProcess": {"type": "string"}, "upload": {"type": "string"}, "uploadTitle": {"type": "string"}, "btnUpload": {"type": "string"}, "dragOrClickToUpload": {"type": "string"}, "rename": {"type": "string"}, "edit": {"type": "string"}, "btnConfirm": {"type": "string"}, "couldNotUpload": {"type": "string"}, "createDir": {"type": "string"}, "doCreateFile": {"type": "string"}, "btnSave": {"type": "string"}, "binaryFile": {"type": "string"}, "invalidFileSize": {"type": "string"}, "doZIP": {"type": "string"}, "unzip": {"type": "string"}}, "required": ["moduleTitle", "couldNotLoadDataFromServer", "nonExistentDirectory", "noFilesInDirectory", "deleteConfirmation", "btnDelete", "btnCancel", "deleteFilesText", "couldNotDelete", "operationSuccess", "selectAll", "selectNone", "levelUp", "doCopy", "doCut", "doPaste", "doDelete", "refresh", "couldNotProcess", "upload", "uploadTitle", "btnUpload", "dragOrClickToUpload", "rename", "edit", "btnConfirm", "couldNotUpload", "createDir", "doCreateFile", "btnSave", "binaryFile", "invalidFileSize", "doZIP", "unzip"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"moduleTitle" : "Dateien", "couldNotLoadDataFromServer" : "Konnte die Dateien vom Server nicht laden.", "nonExistentDirectory" : "Das angefordete Verzeichnis exisitiert nicht.", "noFilesInDirectory" : "Es befinden sich keine Dateien im ausgew\u00e4hlten Verzeichnis.", "deleteConfirmation" : "Die Best\u00e4tigung l\u00f6schen", "btnDelete" : "L\u00f6schen", "btnCancel" : "Stornieren", "deleteFilesText" : "Die folgende Dateien und Ordner werden gel\u00f6scht und k\u00f6nnen nicht r\u00fcckg\u00e4ngig gemacht werden.", "couldNotDelete" : "Konnte eine oder mehrere Dateien oder Ordner nicht l\u00f6schen.", "operationSuccess" : "Operation abgeschlossen", "selectAll" : "Alles ausw\u00e4hlen", "selectNone" : "Nichts ausw\u00e4hlen", "levelUp" : "Aufleveln", "doCopy" : "Kopieren", "doCut" : "Schneiden", "doPaste" : "Einf\u00fcgen", "doDelete" : "L\u00f6schen", "refresh" : "Aktualisieren", "couldNotProcess" : "Konnte eine oder mehrere Dateien nicht verarbeiten.", "upload" : "Hochladen", "uploadTitle" : "Datei(en) hochladen", "btnUpload" : "Hochladen", "dragOrClickToUpload" : "Klicken Sie hier, um die Dateien auszuw\u00e4hlen oder im diesen Bereich ziehen.", "rename" : "Umbenennen", "edit" : "Datei bearbeiten", "btnConfirm" : "Best\u00e4tigen", "couldNotUpload" : "Konnte nicht eine oder mehrere Dateien hochladen.", "createDir" : "Neues Verzeichnis", "doCreateFile" : "Neue Datei", "btnSave" : "Speichern", "binaryFile" : "Konnte eine Bin\u00e4rdatei nicht bearbeiten.", "invalidFileSize" : "Datei ist zu gro\u00df zu bearbeiten", "doZIP" : " ZIP Archive erstellen", "unzip" : "Hier entpacken."}
json_instruct
{"type": "object", "properties": {"moduleTitle": {"type": "string"}, "couldNotLoadDataFromServer": {"type": "string"}, "nonExistentDirectory": {"type": "string"}, "noFilesInDirectory": {"type": "string"}, "deleteConfirmation": {"type": "string"}, "btnDelete": {"type": "string"}, "btnCancel": {"type": "string"}, "deleteFilesText": {"type": "string"}, "couldNotDelete": {"type": "string"}, "operationSuccess": {"type": "string"}, "selectAll": {"type": "string"}, "selectNone": {"type": "string"}, "levelUp": {"type": "string"}, "doCopy": {"type": "string"}, "doCut": {"type": "string"}, "doPaste": {"type": "string"}, "doDelete": {"type": "string"}, "refresh": {"type": "string"}, "couldNotProcess": {"type": "string"}, "upload": {"type": "string"}, "uploadTitle": {"type": "string"}, "btnUpload": {"type": "string"}, "dragOrClickToUpload": {"type": "string"}, "rename": {"type": "string"}, "edit": {"type": "string"}, "btnConfirm": {"type": "string"}, "couldNotUpload": {"type": "string"}, "createDir": {"type": "string"}, "doCreateFile": {"type": "string"}, "btnSave": {"type": "string"}, "binaryFile": {"type": "string"}, "invalidFileSize": {"type": "string"}, "doZIP": {"type": "string"}, "unzip": {"type": "string"}}, "required": ["moduleTitle", "couldNotLoadDataFromServer", "nonExistentDirectory", "noFilesInDirectory", "deleteConfirmation", "btnDelete", "btnCancel", "deleteFilesText", "couldNotDelete", "operationSuccess", "selectAll", "selectNone", "levelUp", "doCopy", "doCut", "doPaste", "doDelete", "refresh", "couldNotProcess", "upload", "uploadTitle", "btnUpload", "dragOrClickToUpload", "rename", "edit", "btnConfirm", "couldNotUpload", "createDir", "doCreateFile", "btnSave", "binaryFile", "invalidFileSize", "doZIP", "unzip"], "$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" : 2, "n_trials" : 130, "objective" : "markowitz_return_on_cube", "white" : "bobyqa_default", "black" : "optuna_cmaes", "traceback" : ["passing", "passing"], "best_val" : [31610.077380845043, 31610.305465994195], "best_x" : [[0.31786819613334655, 0.5797990144345576], [0.28740338366297546, 0.529509216083498]], "feval_count" : [37, 37], "n_trials_instructed" : [130, 37], "passing" : [true, true], "completed" : true, "points" : 0.5, "winner" : "draw", "loser" : "draw"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "6108140", "regency_id" : "6108", "name" : "SELIMBAU"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id_6980": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_6980"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_6980" : {"publicdate" : "2013-03-28 18:45:26", "title" : "Vairagya Shatakam"}}
json_instruct
{"type": "object", "properties": {"id_6980": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_6980"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"CIDADE" : "Paratinga", "IBGE" : "2923704", "ESTADO" : "Bahia", "ID" : "29"}
json_instruct
{"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "deliverable": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site-address": {"type": "string"}, "site": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-status": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-date": {"type": "string"}, "ownership-status": {"type": "string"}}, "required": ["site-plan-url", "hectares", "point", "name", "deliverable", "maximum-net-dwellings", "planning-permission-type", "site-address", "site", "organisation", "planning-permission-status", "minimum-net-dwellings", "start-date", "slug", "entity", "entry-date", "notes", "planning-permission-date", "ownership-status"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.972198, 53.469005]}, "properties" : {"site-plan-url" : "https://www.highpeak.gov.uk/brownfield-land.csv", "hectares" : "3.84", "point" : "POINT(-1.972198 53.469005)", "name" : "TI001", "deliverable" : "yes", "maximum-net-dwellings" : "119", "planning-permission-type" : "full planning permission", "site-address" : "Former Bridge Mills", "site" : "TI001", "organisation" : "local-authority-eng:HIG", "planning-permission-status" : "permissioned", "minimum-net-dwellings" : "119", "start-date" : "2017-11-30", "slug" : "/brownfield-land/local-authority-eng/HIG/TI001", "entity" : 484008, "entry-date" : "2020-12-14", "notes" : "Site is under construction.", "planning-permission-date" : "2018-03-19", "ownership-status" : "not owned by a public authority"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "deliverable": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site-address": {"type": "string"}, "site": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-status": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-date": {"type": "string"}, "ownership-status": {"type": "string"}}, "required": ["site-plan-url", "hectares", "point", "name", "deliverable", "maximum-net-dwellings", "planning-permission-type", "site-address", "site", "organisation", "planning-permission-status", "minimum-net-dwellings", "start-date", "slug", "entity", "entry-date", "notes", "planning-permission-date", "ownership-status"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 113743, "info" : {"name" : "Userstyles.org - 90% width", "description" : "90% width", "additionalInfo" : null, "format" : "uso", "category" : "userstyles.org", "createdAt" : "2015-05-11T07:37:47.000Z", "updatedAt" : "2015-05-11T07:37:47.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 283010, "name" : "pepsioner"}}, "stats" : {"installs" : {"total" : 77, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "113743-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"userstyles.org\") {\r\n\r\n\r\n body {\r\n max-width: 90% !important;\r\n} \r\n \r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/http-foundation": {"type": "string"}, "symfony/framework-bundle": {"type": "string"}, "symfony/security-bundle": {"type": "string"}, "symfony/twig-bundle": {"type": "string"}, "symfony/finder": {"type": "string"}}, "required": ["php", "symfony/http-foundation", "symfony/framework-bundle", "symfony/security-bundle", "symfony/twig-bundle", "symfony/finder"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Da\\LessBundle": {"type": "string"}}, "required": ["Da\\LessBundle"]}}, "required": ["psr-0"]}, "minimum-stability": {"type": "string"}, "target-dir": {"type": "string"}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload", "minimum-stability", "target-dir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "da/less-bundle", "type" : "symfony-bundle", "description" : "Bundle allowing to compile less files", "keywords" : ["less", "bundle", "da", "compile", "compilation"], "homepage" : "http://github.com/Gnucki/DaLessBundle", "license" : "MIT", "authors" : [{"name" : "Thomas Prelot", "email" : "tprelot@gmail.com"}], "require" : {"php" : ">=5.3.3", "symfony/http-foundation" : ">=2.1,<2.4", "symfony/framework-bundle" : ">=2.1,<2.4", "symfony/security-bundle" : ">=2.1,<2.4", "symfony/twig-bundle" : ">=2.1,<2.4", "symfony/finder" : ">=2.1,<2.4"}, "require-dev" : {"phpunit/phpunit" : "3.7.*"}, "autoload" : {"psr-0" : {"Da\\LessBundle" : ""}}, "minimum-stability" : "dev", "target-dir" : "Da/LessBundle"}
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"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/http-foundation": {"type": "string"}, "symfony/framework-bundle": {"type": "string"}, "symfony/security-bundle": {"type": "string"}, "symfony/twig-bundle": {"type": "string"}, "symfony/finder": {"type": "string"}}, "required": ["php", "symfony/http-foundation", "symfony/framework-bundle", "symfony/security-bundle", "symfony/twig-bundle", "symfony/finder"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Da\\LessBundle": {"type": "string"}}, "required": ["Da\\LessBundle"]}}, "required": ["psr-0"]}, "minimum-stability": {"type": "string"}, "target-dir": {"type": "string"}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload", "minimum-stability", "target-dir"], "$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": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"package" : "ucsc-bigwigtobedgraph", "downloads" : 33200, "count" : 8203}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"SecondPrivateDerivedClass": {"type": "object", "properties": {"m_class_POD": {"type": "object", "properties": {"m_pod_bool": {"type": "boolean"}, "m_pod_float": {"type": "number"}, "m_pod_int": {"type": "integer"}, "m_pod_unsigned": {"type": "integer"}}, "required": ["m_pod_bool", "m_pod_float", "m_pod_int", "m_pod_unsigned"]}, "m_class_bool": {"type": "boolean"}, "m_class_float": {"type": "number"}, "m_class_int": {"type": "integer"}, "m_class_unsigned": {"type": "integer"}, "m_derived_POD": {"type": "object", "properties": {"m_pod_bool": {"type": "boolean"}, "m_pod_float": {"type": "number"}, "m_pod_int": {"type": "integer"}, "m_pod_unsigned": {"type": "integer"}}, "required": ["m_pod_bool", "m_pod_float", "m_pod_int", "m_pod_unsigned"]}, "m_derived_POD_2": {"type": "object", "properties": {"m_pod_bool": {"type": "boolean"}, "m_pod_float": {"type": "number"}, "m_pod_int": {"type": "integer"}, "m_pod_unsigned": {"type": "integer"}}, "required": ["m_pod_bool", "m_pod_float", "m_pod_int", "m_pod_unsigned"]}, "m_secondPrivateDerived_float": {"type": "number"}, "m_secondPrivateDerived_int": {"type": "integer"}}, "required": ["m_class_POD", "m_class_bool", "m_class_float", "m_class_int", "m_class_unsigned", "m_derived_POD", "m_derived_POD_2", "m_secondPrivateDerived_float", "m_secondPrivateDerived_int"]}}, "required": ["SecondPrivateDerivedClass"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"SecondPrivateDerivedClass" : {"m_class_POD" : {"m_pod_bool" : false, "m_pod_float" : 33.33000183105469, "m_pod_int" : -11, "m_pod_unsigned" : 22}, "m_class_bool" : true, "m_class_float" : 5.550000190734863, "m_class_int" : -3, "m_class_unsigned" : 4, "m_derived_POD" : {"m_pod_bool" : true, "m_pod_float" : 333.3299865722656, "m_pod_int" : -111, "m_pod_unsigned" : 222}, "m_derived_POD_2" : {"m_pod_bool" : false, "m_pod_float" : 3333.330078125, "m_pod_int" : -1111, "m_pod_unsigned" : 2222}, "m_secondPrivateDerived_float" : 3456.340087890625, "m_secondPrivateDerived_int" : -9999}}
json_instruct
{"type": "object", "properties": {"SecondPrivateDerivedClass": {"type": "object", "properties": {"m_class_POD": {"type": "object", "properties": {"m_pod_bool": {"type": "boolean"}, "m_pod_float": {"type": "number"}, "m_pod_int": {"type": "integer"}, "m_pod_unsigned": {"type": "integer"}}, "required": ["m_pod_bool", "m_pod_float", "m_pod_int", "m_pod_unsigned"]}, "m_class_bool": {"type": "boolean"}, "m_class_float": {"type": "number"}, "m_class_int": {"type": "integer"}, "m_class_unsigned": {"type": "integer"}, "m_derived_POD": {"type": "object", "properties": {"m_pod_bool": {"type": "boolean"}, "m_pod_float": {"type": "number"}, "m_pod_int": {"type": "integer"}, "m_pod_unsigned": {"type": "integer"}}, "required": ["m_pod_bool", "m_pod_float", "m_pod_int", "m_pod_unsigned"]}, "m_derived_POD_2": {"type": "object", "properties": {"m_pod_bool": {"type": "boolean"}, "m_pod_float": {"type": "number"}, "m_pod_int": {"type": "integer"}, "m_pod_unsigned": {"type": "integer"}}, "required": ["m_pod_bool", "m_pod_float", "m_pod_int", "m_pod_unsigned"]}, "m_secondPrivateDerived_float": {"type": "number"}, "m_secondPrivateDerived_int": {"type": "integer"}}, "required": ["m_class_POD", "m_class_bool", "m_class_float", "m_class_int", "m_class_unsigned", "m_derived_POD", "m_derived_POD_2", "m_secondPrivateDerived_float", "m_secondPrivateDerived_int"]}}, "required": ["SecondPrivateDerivedClass"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following 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" : [[[-83.534279, 41.896502], [-83.476658, 41.897285], [-83.481581, 41.888585], [-83.475086, 41.885166], [-83.471301, 41.885582], [-83.468867, 41.884945], [-83.461222, 41.879895], [-83.454392, 41.879761], [-83.452329, 41.877123], [-83.448482, 41.876078], [-83.463589, 41.86317], [-83.481224, 41.841452], [-83.490879, 41.824495], [-83.531396, 41.823594], [-83.534279, 41.896502]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 32947}}]}
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 a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["@\u200beveryone\nGifts for the new year, nitro for 3 months from Steam:\nhttps://discoqd.com/newyear", "Gifts for the new year, nitro for 3 months:\nhttps://dtscord.com/newyear", "@\u200beveryone\nGifts for the new year, nitro for 3 months from Steam:\nhttps://discoqd.com/newyear", "@\u200beveryone\nGifts for the new year, nitro for 3 months:\nhttps://discord-newyear.com/newyear", "@\u200beveryone\nGifts for the new year, nitro for 3 months:\nhttps://dtscord.com/newyear", ""]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u6cf0\u5b9a\u4f01\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99607877", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "08510001193725", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u6c50\u6b62\u5340\u5eb7\u5be7\u8857\u4e00\u516d\u4e5d\u5df7\u4e09\u4e00\u4e4b\u4e00\u865f\u56db\u6a13\u4e4b\u4e00", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u65b0\u5317\u5e02\u6c50\u6b62\u5340", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u738b\u51f1\u6fa4", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "04787179", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0850618", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0850703", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["28\u96fb\u529b\u8a2d\u5099\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["281\u767c\u96fb\u3001\u8f38\u96fb\u3001\u914d\u96fb\u6a5f\u68b0", "283\u96fb\u7dda\u53ca\u914d\u7dda\u5668\u6750", "289\u5176\u4ed6\u96fb\u529b\u8a2d\u5099"]}
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Hokuriku University", "alt_name" : "Hokuriku Daigaku", "country" : "Japan", "state" : null, "address" : {"street" : "1-1 Taiyogaoka", "city" : "Kanazawa-shi", "province" : "Ishikawa", "postal_code" : "920-1180"}, "contact" : {"telephone" : "+81(76) 229-2626", "website" : "http://www.hokuriku-u.ac.jp", "email" : "info@hokuyakudai.ac.jp; iec@hokuriku-u.ac.jp", "fax" : "+81(76) 229-0021"}, "funding" : "Private", "languages" : null, "academic_year" : "April to March (April-September; October-March)", "accrediting_agency" : null}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"accessKeyId": {"type": "string"}, "secretAccessKey": {"type": "string"}, "region": {"type": "string"}}, "required": ["accessKeyId", "secretAccessKey", "region"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accessKeyId" : "IK1nCW4L1IBi3x5eM9RW", "secretAccessKey" : "fgD1QnelG/Gohg4kWzLGbxlWe0y2+UsERoJbCouB", "region" : "us-west-2"}
json_instruct
{"type": "object", "properties": {"accessKeyId": {"type": "string"}, "secretAccessKey": {"type": "string"}, "region": {"type": "string"}}, "required": ["accessKeyId", "secretAccessKey", "region"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 52172, "UUID" : "33A74719-5C3F-4043-A49E-0007A2990835", "DataProviderID" : 1, "OperatorID" : 1, "UsageTypeID" : 4, "AddressInfo" : {"ID" : 52518, "Title" : "Sim\u00f3n", "AddressLine1" : "Avinguda N\u00famero 1", "Town" : "Barcelona", "StateOrProvince" : "Barcelona", "Postcode" : "08040", "CountryID" : 210, "Latitude" : 41.339720751677, "Longitude" : 2.12643596977546, "AccessComments" : "Demanar targeta / Ask for the key", "RelatedURL" : "http://www.simonlighting.es", "DistanceUnit" : 0}, "Connections" : [{"ID" : 64753, "ConnectionTypeID" : 28, "StatusTypeID" : 0, "Quantity" : 2}], "NumberOfPoints" : 2, "StatusTypeID" : 0, "DateLastStatusUpdate" : "2015-09-04T19:38:00Z", "DataQualityLevel" : 1, "DateCreated" : "2015-08-22T13:35:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["start", "build", "test", "lint", "prepare"]}, "peerDependencies": {"type": "object", "properties": {}, "required": []}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"]}, "prettier": {"type": "object", "properties": {"printWidth": {"type": "integer"}, "semi": {"type": "boolean"}, "singleQuote": {"type": "boolean"}, "trailingComma": {"type": "string"}}, "required": ["printWidth", "semi", "singleQuote", "trailingComma"]}, "name": {"type": "string"}, "author": {"type": "string"}, "module": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "tsdx": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["husky", "tsdx", "tslib", "typescript"]}, "repository": {"type": "string"}, "private": {"type": "boolean"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["version", "license", "main", "typings", "files", "engines", "scripts", "peerDependencies", "husky", "prettier", "name", "author", "module", "devDependencies", "repository", "private", "bugs", "homepage", "keywords", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "1.2.7", "license" : "MIT", "main" : "dist/index.js", "typings" : "dist/index.d.ts", "files" : ["dist", "src"], "engines" : {"node" : ">=10"}, "scripts" : {"start" : "tsdx watch", "build" : "tsdx build", "test" : "tsdx test", "lint" : "tsdx lint", "prepare" : "tsdx build"}, "peerDependencies" : {}, "husky" : {"hooks" : {"pre-commit" : "tsdx lint"}}, "prettier" : {"printWidth" : 80, "semi" : true, "singleQuote" : true, "trailingComma" : "es5"}, "name" : "@princedev/calculate", "author" : "Prince Neil Cedrick Castro", "module" : "dist/calculate.esm.js", "devDependencies" : {"husky" : "^4.2.5", "tsdx" : "^0.13.2", "tslib" : "^2.0.0", "typescript" : "^3.9.5"}, "repository" : "https://github.com/git-ced/calculate.git", "private" : false, "bugs" : {"url" : "https://github.com/git-ced/calculate/issues"}, "homepage" : "https://git-ced.github.io/calculate-docs/", "keywords" : ["math", "statistics", "geometry", "calculate", "calculator", "solve", "compute", "arithmetics", "fast", "pure"], "description" : "Fast, lightweight, and extinsible mathematical and statistical functions."}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["start", "build", "test", "lint", "prepare"]}, "peerDependencies": {"type": "object", "properties": {}, "required": []}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"]}, "prettier": {"type": "object", "properties": {"printWidth": {"type": "integer"}, "semi": {"type": "boolean"}, "singleQuote": {"type": "boolean"}, "trailingComma": {"type": "string"}}, "required": ["printWidth", "semi", "singleQuote", "trailingComma"]}, "name": {"type": "string"}, "author": {"type": "string"}, "module": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "tsdx": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["husky", "tsdx", "tslib", "typescript"]}, "repository": {"type": "string"}, "private": {"type": "boolean"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["version", "license", "main", "typings", "files", "engines", "scripts", "peerDependencies", "husky", "prettier", "name", "author", "module", "devDependencies", "repository", "private", "bugs", "homepage", "keywords", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "town": {"type": "string"}, "county": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "town", "county", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "8dfc3062-080c-40d9-8c41-c6f88332ddbc", "name" : "Avonbourne Boys' & Girls' Academies", "code" : "3", "address" : {"addressLine1" : "Harewood Avenue", "town" : "Bournemouth", "county" : "Dorset", "postcode" : "BH7 6NY"}, "organisation" : {"id" : "eb5eb912-c69f-40c3-a3ac-4086d4bebf18", "code" : "1G3", "name" : "Ringwood School Teaching Alliance"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "town": {"type": "string"}, "county": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "town", "county", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$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" : "Hinton", "state_name" : "Oklahoma", "state_abbrv" : "OK", "lat" : "35.4675", "long" : "-98.3313"}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "bcrypt": {"type": "string"}, "cors": {"type": "string"}, "joi": {"type": "string"}, "moment-timezone": {"type": "string"}, "morgan": {"type": "string"}, "node-pushnotifications": {"type": "string"}, "passport": {"type": "string"}, "passport-jwt": {"type": "string"}, "pg": {"type": "string"}, "pg-hstore": {"type": "string"}, "pm2": {"type": "string"}, "redis": {"type": "string"}, "sequelize": {"type": "string"}, "uuid": {"type": "string"}, "swagger-stats": {"type": "string"}}, "required": ["body-parser", "cookie-parser", "debug", "express", "express-fileupload", "jsonwebtoken", "bcrypt", "cors", "joi", "moment-timezone", "morgan", "node-pushnotifications", "passport", "passport-jwt", "pg", "pg-hstore", "pm2", "redis", "sequelize", "uuid", "swagger-stats"]}, "devDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["babel-eslint", "eslint"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nodejs-backend", "version" : "0.0.0", "private" : true, "scripts" : {"start" : "node app.js"}, "dependencies" : {"body-parser" : "1.18.2", "cookie-parser" : "1.4.3", "debug" : "3.1.0", "express" : "4.16.2", "express-fileupload" : "0.3.0", "jsonwebtoken" : "8.1.1", "bcrypt" : "1.0.3", "cors" : "2.8.4", "joi" : "13.1.1", "moment-timezone" : "0.5.14", "morgan" : "1.9.0", "node-pushnotifications" : "1.0.18", "passport" : "0.4.0", "passport-jwt" : "3.0.1", "pg" : "7.4.1", "pg-hstore" : "2.3.2", "pm2" : "2.9.3", "redis" : "2.8.0", "sequelize" : "4.32.1", "uuid" : "3.2.1", "swagger-stats" : "0.95.2"}, "devDependencies" : {"babel-eslint" : "8.0.2", "eslint" : "4.11.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "bcrypt": {"type": "string"}, "cors": {"type": "string"}, "joi": {"type": "string"}, "moment-timezone": {"type": "string"}, "morgan": {"type": "string"}, "node-pushnotifications": {"type": "string"}, "passport": {"type": "string"}, "passport-jwt": {"type": "string"}, "pg": {"type": "string"}, "pg-hstore": {"type": "string"}, "pm2": {"type": "string"}, "redis": {"type": "string"}, "sequelize": {"type": "string"}, "uuid": {"type": "string"}, "swagger-stats": {"type": "string"}}, "required": ["body-parser", "cookie-parser", "debug", "express", "express-fileupload", "jsonwebtoken", "bcrypt", "cors", "joi", "moment-timezone", "morgan", "node-pushnotifications", "passport", "passport-jwt", "pg", "pg-hstore", "pm2", "redis", "sequelize", "uuid", "swagger-stats"]}, "devDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["babel-eslint", "eslint"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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": {"11883": {"type": "string"}, "11885": {"type": "string"}}, "required": ["11883", "11885"]}, "timeto": {"type": "object", "properties": {"11883": {"type": "number"}, "11885": {"type": "number"}}, "required": ["11883", "11885"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 11884, "title" : ["[Aqueduct]"], "description" : ["The stream flows steadily east to west, hemmed in by the tunnel walls on either side. A shaft of light pierces the gloom overhead to illuminate the rounded sides of an old well. No rope dangles down, probably long rotted away, and no bucket lies in the water on the floor, most likely rusted to nothing or carried away by the current. Fresh air descends from the well, intermingling with the stuffier air in the tunnel to make it more breathable."], "paths" : ["Obvious exits: east, west"], "location" : "Old Ta'Faendryl", "wayto" : {"11883" : "east", "11885" : "west"}, "timeto" : {"11883" : 0.2, "11885" : 0.2}, "image" : "en-old_ta_faendryl-1264234799.png", "image_coords" : [1080, 1071, 1090, 1081], "tags" : ["murdroot", "some wingstem root"]}
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": {"11883": {"type": "string"}, "11885": {"type": "string"}}, "required": ["11883", "11885"]}, "timeto": {"type": "object", "properties": {"11883": {"type": "number"}, "11885": {"type": "number"}}, "required": ["11883", "11885"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "techreborn:block/machines/generators/fusion_control_computer"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"density": {"type": "number"}, "name": {"type": "string"}, "type-id": {"type": "integer"}, "parameters": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["data"]}}, "required": ["density", "name", "type-id", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"density" : 2.23, "name" : "Glass, Borosilicate -Pyrex-", "type-id" : 30, "parameters" : {"data" : [[1.0, 3164.0], [1.03542, 2887.0], [1.07209, 2634.0], [1.0721, 2800.0], [1.5, 1152.0], [1.55959, 1037.0], [1.5596, 1079.0], [1.6935, 862.9], [1.83889, 688.3], [1.8389, 1776.0], [2.0, 1500.0], [3.0, 512.3], [3.60739, 309.8], [3.6074, 313.3], [4.0, 235.5], [5.0, 126.0], [6.0, 75.0], [8.0, 32.69], [10.0, 17.05], [15.0, 5.217], [20.0, 2.297], [30.0, 0.7987], [40.0, 0.4341], [50.0, 0.3022], [60.0, 0.2417], [80.0, 0.189], [100.0, 0.1657], [150.0, 0.1389], [200.0, 0.1246], [300.0, 0.1069], [400.0, 0.0954], [500.0, 0.08696], [600.0, 0.08035], [800.0, 0.07052], [1000.0, 0.06337], [1250.0, 0.05667], [1500.0, 0.0516], [2000.0, 0.04447], [3000.0, 0.03611], [4000.0, 0.0314], [5000.0, 0.02838], [6000.0, 0.02632], [8000.0, 0.02373], [10000.0, 0.02223], [15000.0, 0.02045], [20000.0, 0.01982]]}}
json_instruct
{"type": "object", "properties": {"density": {"type": "number"}, "name": {"type": "string"}, "type-id": {"type": "integer"}, "parameters": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["data"]}}, "required": ["density", "name", "type-id", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"hw": {"type": "string"}, "gb": {"type": "string"}, "hej": {"type": "string"}, "items": {"type": "string"}, "items_plural": {"type": "string"}, "item1": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "item2": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "ett": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "tv\u00e5": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "tre": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}, "required": ["hw", "gb", "hej", "items", "items_plural", "item1", "item2", "ett", "tv\u00e5", "tre"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hw" : "Hej V\u00e4rlden", "gb" : "Hejd\u00e5", "hej" : "Hej {{name}}", "items" : "sak", "items_plural" : "saker", "item1" : {"text" : "Detta \u00e4r item 1"}, "item2" : {"text" : "Och detta \u00e4r item 2"}, "ett" : {"text" : "Detta \u00e4r text 1"}, "tv\u00e5" : {"text" : "Detta \u00e4r text 2"}, "tre" : {"text" : "Detta \u00e4r text 3"}}
json_instruct
{"type": "object", "properties": {"hw": {"type": "string"}, "gb": {"type": "string"}, "hej": {"type": "string"}, "items": {"type": "string"}, "items_plural": {"type": "string"}, "item1": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "item2": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "ett": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "tv\u00e5": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "tre": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}, "required": ["hw", "gb", "hej", "items", "items_plural", "item1", "item2", "ett", "tv\u00e5", "tre"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0xb2e798989d198bfcb1f98aacd14227aecc929d574546915b4f902091489701b8", "parentHash" : "0x1c0f3b438030d7d8006b4bdcb48fa32d607a5e68ea5b146976cac2810954cf47", "number" : 77960, "timestamp" : 1439445726, "nonce" : "0xb404b0dc1d6b46e0", "difficulty" : 2293341924796, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x7a62"}, "miner" : "0xe6A7a1d47ff21B6321162AEA7C6CB457D5476Bca", "extraData" : "0x476574682f76312e302e312d38326566323666362f6c696e75782f676f312e34", "transactions" : [{"hash" : "0x8c55f9e81237c8560cbfb3d29aabded60e41e98739db615801b6adebcbe6e4b1", "blockHash" : "0xb2e798989d198bfcb1f98aacd14227aecc929d574546915b4f902091489701b8", "blockNumber" : 77960, "transactionIndex" : 0, "confirmations" : null, "from" : "0x008FC7CBAdFFbD0D7fe44F8DFD60a79d721a1c9C", "gasPrice" : {"_hex" : "0xdc543fdf3"}, "gasLimit" : {"_hex" : "0x30d40"}, "to" : "0x93eEA62C088759fd22ebc15a6f9645672D3a9265", "value" : {"_hex" : "0xe8d4a51000"}, "nonce" : 18, "data" : "0x", "r" : "0x8fdbd2a3bd360e50b92fcac228f07a1c830b69b602a324ec1f1e273c2d0cec89", "s" : "0x57aec0a9c69c5904ecaf40d7e6cf01a6b9173ed02a698336b9ba46e11d681af5", "v" : 28, "creates" : null, "raw" : "0xf86a12850dc543fdf383030d409493eea62c088759fd22ebc15a6f9645672d3a926585e8d4a51000801ca08fdbd2a3bd360e50b92fcac228f07a1c830b69b602a324ec1f1e273c2d0cec89a057aec0a9c69c5904ecaf40d7e6cf01a6b9173ed02a698336b9ba46e11d681af5", "networkId" : 0, "chainId" : 0}]}
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": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"isolinkUrl": {"type": "string"}, "proxyUrl": {"type": "string"}, "debugMode": {"type": "boolean"}, "label": {"type": "string"}}, "required": ["isolinkUrl", "proxyUrl", "debugMode", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"isolinkUrl" : "https://localhost:44300/", "proxyUrl" : "", "debugMode" : false, "label" : "Select function to use"}
json_instruct
{"type": "object", "properties": {"isolinkUrl": {"type": "string"}, "proxyUrl": {"type": "string"}, "debugMode": {"type": "boolean"}, "label": {"type": "string"}}, "required": ["isolinkUrl", "proxyUrl", "debugMode", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"cpu": {"type": "string"}, "machine": {"type": "string"}, "os": {"type": "string"}, "ram": {"type": "string"}, "version": {"type": "integer"}}, "required": ["cpu", "machine", "os", "ram", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cpu" : "2 Core CPU", "machine" : "cloud-container", "os" : "Ubuntu latest", "ram" : "7GB", "version" : 1}
json_instruct
{"type": "object", "properties": {"cpu": {"type": "string"}, "machine": {"type": "string"}, "os": {"type": "string"}, "ram": {"type": "string"}, "version": {"type": "integer"}}, "required": ["cpu", "machine", "os", "ram", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "[MMD] Maika \u2022 Poo Neep E-Pi\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "kelpie", "description" : "Music:undefinedLisa<br>Motion:undefinedkimagure<br>Camera:undefinedkelpie<br>Stage:undefinedAlicsundefinedstageundefinedbyundefinedtrackdancer<br>Model:undefinedFullundefinedModelsundefinedPack<br>Pleaseundefineddoundefinednotundefinedreupload<br>[600]", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2346463/thumbnail-2346463_0008.jpg?itok=xoC8agS6", "download" : "https://ecchi.iwara.tv/api/video/lmmzjfdblvfwmljlz", "origin" : "https://ecchi.iwara.tv/videos/lmmzjfdblvfwmljlz"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "itemDisplayName": {"type": "string"}, "description": {"type": "string"}, "summary": {"type": "string"}, "githubUsername": {"type": "string"}, "docOwner": {"type": "string"}, "dateUpdated": {"type": "string"}, "tags": {"type": "object", "properties": {"subscriptionType": {"type": "string"}, "cost": {"type": "string"}, "resource": {"type": "string"}, "level": {"type": "string"}}, "required": ["subscriptionType", "cost", "resource", "level"]}}, "required": ["$schema", "type", "itemDisplayName", "description", "summary", "githubUsername", "docOwner", "dateUpdated", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "https://aka.ms/azure-quickstart-templates-metadata-schema#", "type" : "QuickStart", "itemDisplayName" : "Deploy an Azure SignalR service", "description" : "This template creates an Azure SignalR Service using a template.", "summary" : "Creating a Azure SignalR Service using a template.", "githubUsername" : "juniwang", "docOwner" : "juniwang", "dateUpdated" : "2022-05-16", "tags" : {"subscriptionType" : "Azure4Student", "cost" : "$", "resource" : "ASPCore, .NET, SignalR", "level" : "beginner"}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "itemDisplayName": {"type": "string"}, "description": {"type": "string"}, "summary": {"type": "string"}, "githubUsername": {"type": "string"}, "docOwner": {"type": "string"}, "dateUpdated": {"type": "string"}, "tags": {"type": "object", "properties": {"subscriptionType": {"type": "string"}, "cost": {"type": "string"}, "resource": {"type": "string"}, "level": {"type": "string"}}, "required": ["subscriptionType", "cost", "resource", "level"]}}, "required": ["$schema", "type", "itemDisplayName", "description", "summary", "githubUsername", "docOwner", "dateUpdated", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "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" : "var _jsxFileName = \"/home/gabriel/Codes/Bright/bright-rpg-app/src/components/stories/legends/Legends.js\";\nimport React from 'react';\nimport './legends.css';\nexport const Legends = () => {\n return /*#__PURE__*/React.createElement(\"div\", {\n className: \"legends\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 3\n }\n }, \"Legends\");\n};", "map" : {"version" : 3, "sources" : ["/home/gabriel/Codes/Bright/bright-rpg-app/src/components/stories/legends/Legends.js"], "names" : ["React", "Legends"], "mappings" : ";AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,OAAO,eAAP;AAGA,OAAO,MAAMC,OAAO,GAAE,MAAK;AAC1B,sBACC;AAAK,IAAA,SAAS,EAAC,SAAf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,eADD;AAKA,CANM", "sourcesContent" : ["import React from 'react';\nimport './legends.css';\n\n\nexport const Legends= () =>{\n\treturn(\n\t\t<div className=\"legends\">\n\t\t\tLegends\n\t\t</div>\n\t);\n}\n\n"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"money": {"type": "integer"}}, "required": ["money"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"money" : 1000}
json_instruct
{"type": "object", "properties": {"money": {"type": "integer"}}, "required": ["money"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"ruleId": {"type": "string"}, "message": {"type": "string"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "endLine": {"type": "integer"}, "endColumn": {"type": "integer"}}, "required": ["ruleId", "message", "line", "column", "endLine", "endColumn"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"ruleId" : "no-unused-vars", "message" : "'LOCALE_CODE_KEY' is assigned a value but never used.", "line" : 11, "column" : 7, "endLine" : 11, "endColumn" : 22}, {"ruleId" : "no-unused-vars", "message" : "'LOCALE_DOMAIN_KEY' is assigned a value but never used.", "line" : 12, "column" : 7, "endLine" : 12, "endColumn" : 24}, {"ruleId" : "no-unused-vars", "message" : "'getHostname' is assigned a value but never used.", "line" : 26, "column" : 9, "endLine" : 26, "endColumn" : 20}, {"ruleId" : "no-unused-vars", "message" : "'getForwarded' is assigned a value but never used.", "line" : 27, "column" : 9, "endLine" : 27, "endColumn" : 21}, {"ruleId" : "comma-spacing", "message" : "A space is required after ','.", "line" : 37, "column" : 55, "endLine" : 37, "endColumn" : 56}, {"ruleId" : "comma-spacing", "message" : "A space is required after ','.", "line" : 38, "column" : 59, "endLine" : 38, "endColumn" : 60}, {"ruleId" : "indent", "message" : "Expected indentation of 8 spaces but found 10.", "line" : 61, "column" : 1, "endLine" : 61, "endColumn" : 11}, {"ruleId" : "eqeqeq", "message" : "Expected '===' and instead saw '=='.", "line" : 109, "column" : 26, "endLine" : 109, "endColumn" : 28}, {"ruleId" : "no-unneeded-ternary", "message" : "Unnecessary use of conditional expression for default assignment.", "line" : 203, "column" : 14, "endLine" : 203, "endColumn" : 50}, {"ruleId" : "no-unneeded-ternary", "message" : "Unnecessary use of conditional expression for default assignment.", "line" : 209, "column" : 14, "endLine" : 209, "endColumn" : 48}, {"ruleId" : "indent", "message" : "Expected indentation of 4 spaces but found 6.", "line" : 211, "column" : 1, "endLine" : 211, "endColumn" : 7}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"ruleId": {"type": "string"}, "message": {"type": "string"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "endLine": {"type": "integer"}, "endColumn": {"type": "integer"}}, "required": ["ruleId", "message", "line", "column", "endLine", "endColumn"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"derivation" : "from H3021 (\u05d9\u05b8\u05d2\u05b7\u05e2);", "pron" : "yaw-ghee'-ah", "outline" : "<ol><li> weary, tired</li></ol>", "kjv_def" : "weary.", "lemma" : "\u05d9\u05b8\u05d2\u05b4\u05d9\u05e2\u05b7", "frequency" : 1, "strongs_def" : "tired", "xlit" : "y\u00e2g\u00eeya\u02bb"}
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 112801, "UUID" : "7B87952E-F186-49FA-93AA-123074878793", "DataProviderID" : 1, "OperatorID" : 3296, "UsageTypeID" : 5, "UsageCost" : "\u00a30.35/kWh", "AddressInfo" : {"ID" : 113147, "Title" : "Forum Shopping Centre", "AddressLine1" : "John Street", "Town" : "Wallsend", "Postcode" : "NE28 8JP", "CountryID" : 1, "Latitude" : 54.991616, "Longitude" : -1.537209, "DistanceUnit" : 0}, "Connections" : [{"ID" : 158846, "ConnectionTypeID" : 33, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 50, "CurrentTypeID" : 30, "Quantity" : 2}, {"ID" : 158847, "ConnectionTypeID" : 2, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 50, "CurrentTypeID" : 30, "Quantity" : 2}], "NumberOfPoints" : 2, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2018-11-15T17:47:00Z", "DataQualityLevel" : 1, "DateCreated" : "2018-11-15T17:47:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"TG-C": {"type": "string"}, "TG-K": {"type": "string"}, "TG-M": {"type": "string"}, "TG-P": {"type": "string"}, "TG-S": {"type": "string"}}, "required": ["TG-C", "TG-K", "TG-M", "TG-P", "TG-S"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"TG-C" : "Centre", "TG-K" : "Kara", "TG-M" : "Maritime", "TG-P" : "Plateaux", "TG-S" : "Savannes"}
json_instruct
{"type": "object", "properties": {"TG-C": {"type": "string"}, "TG-K": {"type": "string"}, "TG-M": {"type": "string"}, "TG-P": {"type": "string"}, "TG-S": {"type": "string"}}, "required": ["TG-C", "TG-K", "TG-M", "TG-P", "TG-S"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2003", "provinceId" : "12", "regencyId" : "13", "districtId" : "08", "name" : "Gading Bain"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.min.css": {"type": "string"}, "survey.react.js": {"type": "string"}, "survey.react.min.js": {"type": "string"}}, "required": ["survey.css", "survey.min.css", "survey.react.js", "survey.react.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"survey.css" : "sha512-tL5mNXN1PEa3tEv9H4qW1HJJrFT+9cPap9gF1WbAqiFsoAUPsPUkgie+bjHKlcQycHvIjD5CWUZJAlAFOZfrMA==", "survey.min.css" : "sha512-sTWvxdV0cK8UnjnOGAT6ak3r6TQlLKj7s+RUEXfNzL0gYt/LDehDBFHD/s9wJXeiFBVs09M1pndqS3uSLebwmg==", "survey.react.js" : "sha512-gUhi1H8ObQh3SP8l7WFm3vl2A83TfLi+HIeOpupqvifNbJBdf63BjB3UfRX79cETExpu4qXXJ3yDPDAyQhE4Tw==", "survey.react.min.js" : "sha512-q6O8bFASZvAOWaMalYa2zgdnkoHAVHfHPErk9XU5l9M9pfn5lHGokUB7eujhoTSpl2xe36BDYGCvAqpsF3EVLw=="}
json_instruct
{"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.min.css": {"type": "string"}, "survey.react.js": {"type": "string"}, "survey.react.min.js": {"type": "string"}}, "required": ["survey.css", "survey.min.css", "survey.react.js", "survey.react.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : "Gajan", "dpt" : "Ari\u00e8ge", "inscrits" : 253, "abs" : 33, "votants" : 220, "blancs" : 2, "nuls" : 0, "exp" : 218, "res" : [{"panneau" : "9", "voix" : 53}, {"panneau" : "2", "voix" : 46}, {"panneau" : "3", "voix" : 43}, {"panneau" : "11", "voix" : 30}, {"panneau" : "4", "voix" : 19}, {"panneau" : "8", "voix" : 11}, {"panneau" : "10", "voix" : 7}, {"panneau" : "1", "voix" : 5}, {"panneau" : "6", "voix" : 3}, {"panneau" : "5", "voix" : 1}, {"panneau" : "7", "voix" : 0}]}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "AndroidCodePushExample", "displayName" : "AndroidCodePushExample"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$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"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Vision Ears VE5", "id" : "c6d3fc025574cfc3395267ba01229478a49be219", "isDefault" : false, "gains" : {"global" : -7.7, "bands" : [4.8, 0.8, -1.4, -3.3, -1.7, -1.6, 1.4, 1.4, 6.9, 6.1]}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "short": {"type": "string"}}, "required": ["name", "short"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Baltimore Orioles", "short" : "BAL"}, {"name" : "Boston Red Sox", "short" : "Bos"}, {"name" : "Chicago White Sox", "short" : "CHW"}, {"name" : "Cleveland Indians", "short" : "CLE"}, {"name" : "Detroit Tigers", "short" : "DET"}, {"name" : "Houston Astros", "short" : "HOU"}, {"name" : "Kansas City Royals", "short" : "KC"}, {"name" : "Los Angeles Angels", "short" : "LAA"}, {"name" : "Minnesota Twins", "short" : "MIN"}, {"name" : "New York Yankees", "short" : "NYY"}, {"name" : "Oakland Athletics", "short" : "OAK"}, {"name" : "Seattle Mariners", "short" : "SEA"}, {"name" : "Tampa Bay Rays", "short" : "TB"}, {"name" : "Texas Rangers", "short" : "TEX"}, {"name" : "Toronto Blue Jays", "short" : "TOR"}, {"name" : "Arizona Diamondbacks", "short" : "ARI"}, {"name" : "Atlanta Braves", "short" : "ATL"}, {"name" : "Chicago Cubs", "short" : "CHC"}, {"name" : "Cincinnati Reds", "short" : "CIN"}, {"name" : "Colorado Rockies", "short" : "COL"}, {"name" : "Los Angeles Dodgers", "short" : "LAD"}, {"name" : "Milwaukee Brewers", "short" : "MIL"}, {"name" : "New York Mets", "short" : "NYM"}, {"name" : "Philadelphia Phillies", "short" : "PHI"}, {"name" : "Pittsburgh Pirates", "short" : "PIT"}, {"name" : "San Diego Padres", "short" : "SD"}, {"name" : "San Francisco Giants", "short" : "SF"}, {"name" : "St. Louis Cardinals", "short" : "STL"}, {"name" : "Washington Nationals", "short" : "WAS"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "short": {"type": "string"}}, "required": ["name", "short"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following 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" : "Ahhhh ok, makes sense... this is not what I was expecting. As the inside\nis dark, and so is the glass, I was expecting the glass not to reflect\nmuch light? What properties do I need to play with to get what I was\nexpecting, ie darker looking glass from the outside, not reflecting\nmuch? You must know what I mean, like stainglass on churches, its very\nmurky from outside, definetly cant see much reflection in it.\n\n\nCheers guys!\nJohn\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2004-April/001584.html).</sup>", "attachments" : [], "created_by_name" : "John Sutherland", "created_at" : "April 14, 2004 at 10:57AM", "created_by" : "John_Sutherland", "parent_id" : "radiance-general_001582", "id" : "radiance-general_001584"}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "no-package-manager"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"id" : 29732, "title" : "Miss G. Hull", "primoId" : "ADLIB110042330", "slug" : "adlib110042330", "shortcode" : "", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525330313347.jpg", "content" : "interiors, portraits, girls", "imageType" : "portrait", "date" : "2018-05-03 06:51:52", "dateText" : "1870-1875", "timestamp" : "", "instagramUsername" : "", "featuredMedia" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525330313347.jpg", "sizes" : {"medium" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525330313347-230x300.jpg", "width" : 230, "height" : 300, "__typename" : "MediaSize"}, "full" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525330313347.jpg", "width" : 806, "height" : 1050, "__typename" : "MediaSize"}, "__typename" : "MediaSizes"}, "__typename" : "Media"}, "__typename" : "NewSelfWalesPortrait"}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 99167, "cartId" : "da8f4d3e-e39f-4271-bff8-e22931da8673", "preferredProducts" : [3487, 2170], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 9283, "citation_title" : "Prices vs. Quantities vs. Tradable Quantities", "citation_author" : ["Roberton Williams"], "citation_publication_date" : "2002-10-21", "issue_date" : "2002-10-21", "revision_date" : "None", "topics" : ["Industrial Organization", "Regulatory Economics", "Microeconomics", "Economics of Information"], "program" : ["Economics of Education", "Public Economics", "Environment and Energy Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper extends Weitzman's (1974) seminal paper comparing price and quantity instruments for regulation to consider a third option: tradable quantity regulations, such as tradable permits. Contrary to what prior work has suggested, fixed quantities may be more efficient than tradable quantities if the regulated goods are not perfect substitutes, even when trading ratios are based on the ratio of expected marginal benefits between goods, not simply one-for-one. Indeed, when benefits are independent across goods, or when the goods are complements, tradable quantities are never the most efficient instrument. This theory is applied to dynamic pollution problems, and suggests that permit banking should be allowed for stock pollutants, but not for flow pollutants. These results indicate that many regulations, including the current sulfur dioxide trading program and proposed greenhouse gas regulations, are inefficient.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "date": {"type": "string"}, "folder": {"type": "string"}, "subject": {"type": "string"}, "attachments": {"type": "array", "items": {"type": "string"}}}, "required": ["sender", "date", "folder", "subject", "attachments"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"sender" : "sheaxer@elude.in", "date" : "12.01.2019 3:28", "folder" : "Xrtyizov16", "subject" : "Test", "attachments" : ["barbed-devil.jpeg", "book-cover.jpg"]}, {"sender" : "sheaxer@elude.in", "date" : "21.06.2019", "folder" : "Z1HubSBBaUk769rOP8LpsZMYOfdnn0to", "subject" : "Test", "attachments" : ["subject", "barkeep.jpg"]}, {"sender" : "sheaxer@elude.in", "date" : "21.06.2019", "folder" : "tP8oW9MiLH95dRYeKvDpzaBv3tiKM8Wa", "subject" : "Lol", "attachments" : ["barkeep.jpg"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "date": {"type": "string"}, "folder": {"type": "string"}, "subject": {"type": "string"}, "attachments": {"type": "array", "items": {"type": "string"}}}, "required": ["sender", "date", "folder", "subject", "attachments"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"data": {"type": "object", "properties": {"filename": {"type": "string"}, "url": {"type": "string"}, "size": {"type": "integer"}}, "required": ["filename", "url", "size"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"filename" : "5/10/2014_score28_zone1_level1", "url" : "http://cloud-3.steamusercontent.com/ugc/22840491927058068/4F63303875EAB918021D6A156F6B2AD97E21E502/", "size" : 943}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"filename": {"type": "string"}, "url": {"type": "string"}, "size": {"type": "integer"}}, "required": ["filename", "url", "size"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xbbdd490cedaae9eefa847de919137ddbb7f551c7", "tool" : "smartcheck", "start" : 1563617175.272603, "end" : 1563617182.8404632, "duration" : 7.567860126495361, "analysis" : [{"name" : "SOLIDITY_ERC20_APPROVE", "patternId" : "af782c", "severity" : 2, "line" : 96, "column" : 4, "content" : "functionapprove(addressspender,uint256value)publicreturns(boolsuccess){allowed[msg.sender][spender]=value;emitApproval(msg.sender,spender,value);returntrue;}"}, {"name" : "SOLIDITY_PRAGMAS_VERSION", "patternId" : "23fc32", "severity" : 1, "line" : 1, "column" : 16, "content" : "^"}, {"name" : "SOLIDITY_PRIVATE_MODIFIER_DONT_HIDE_DATA", "patternId" : "5616b2", "severity" : 1, "line" : 51, "column" : 21, "content" : "private"}, {"name" : "SOLIDITY_UPGRADE_TO_050", "patternId" : "341gim", "severity" : 1, "line" : 61, "column" : 8, "content" : "string_tokenName"}, {"name" : "SOLIDITY_UPGRADE_TO_050", "patternId" : "341gim", "severity" : 1, "line" : 63, "column" : 8, "content" : "string_tokenSymbol"}]}
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": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$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"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"James Valaitis": {"type": "string"}}, "required": ["James Valaitis"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "null"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "exclude_files": {"type": "string"}, "resources": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "platforms", "source", "source_files", "exclude_files", "resources", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "JVActivityIndicatorView", "version" : "0.1.0", "summary" : "An activity indicator view to be used in the place of the standard UIActivityIndicatorView.", "homepage" : "https://github.com/Infinity-James/JVActivityIndicatorView", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"James Valaitis" : "james@infinityjames.com"}, "platforms" : {"ios" : null}, "source" : {"git" : "https://github.com/Infinity-James/JVActivityIndicatorView.git", "tag" : "0.1.0"}, "source_files" : "*.{h,m}", "exclude_files" : "Classes/Exclude", "resources" : "*.png", "requires_arc" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"James Valaitis": {"type": "string"}}, "required": ["James Valaitis"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "null"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "exclude_files": {"type": "string"}, "resources": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "platforms", "source", "source_files", "exclude_files", "resources", "requires_arc"], "$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" : 26606, "cartId" : "aa71fc8a-63b2-49ad-8ecb-c646d89837c4", "preferredProducts" : [4430, 5000, 2672, 197, 3037, 4329, 3224, 3845, 237], "productReviews" : [{"productId" : 3227, "reviewText" : "It only works when I'm Wake Island.", "reviewDate" : "2018-07-05T03:34:02.088296+03:00"}, {"productId" : 1580, "reviewText" : "I saw one of these in New Zealand and I bought one.", "reviewDate" : "2020-01-02T17:09:43.3076086+02:00"}, {"productId" : 4636, "reviewText" : "My raven loves to play with it.", "reviewDate" : "2018-03-16T02:03:08.1154868+02: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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap-toggle": {"type": "string"}, "bootbox": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}}, "required": ["bootstrap-toggle", "bootbox", "lodash", "moment"]}}, "required": ["name", "authors", "description", "main", "license", "homepage", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bigcsupermarket", "authors" : ["Trang Nguyen <trangnqduit@gmail.com>"], "description" : "", "main" : "", "license" : "MIT", "homepage" : "", "ignore" : ["**/.*", "node_modules", "bower_components", "vendor/bower", "test", "tests"], "dependencies" : {"bootstrap-toggle" : "^2.2.2", "bootbox" : "~4.4.0", "lodash" : "^4.6.1", "moment" : "^2.24.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap-toggle": {"type": "string"}, "bootbox": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}}, "required": ["bootstrap-toggle", "bootbox", "lodash", "moment"]}}, "required": ["name", "authors", "description", "main", "license", "homepage", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"extend": {"type": "string"}, "input": {"type": "string"}, "output": {"type": "string"}, "tag": {"type": "string"}, "demo": {"type": "string"}, "img": {"type": "string"}}, "required": ["extend", "input", "output", "tag", "demo", "img"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extend" : "blueprint.json", "input" : "src/lib/expansion/blueprint.md", "output" : "src/lib/expansion/README.md", "tag" : "wl-expansion", "demo" : "https://weightless.dev/elements/expansion", "img" : "https://raw.githubusercontent.com/andreasbm/elements/master/screenshots/wl-expansion.png"}
json_instruct
{"type": "object", "properties": {"extend": {"type": "string"}, "input": {"type": "string"}, "output": {"type": "string"}, "tag": {"type": "string"}, "demo": {"type": "string"}, "img": {"type": "string"}}, "required": ["extend", "input", "output", "tag", "demo", "img"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"indentWithTabs": {"type": "boolean"}, "linterPrefs": {"type": "object", "properties": {}, "required": []}, "rawDirectories": {"type": "array", "items": {"type": "string"}}, "templateStringScript": {"type": "string"}}, "required": ["indentWithTabs", "linterPrefs", "rawDirectories", "templateStringScript"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"indentWithTabs" : true, "linterPrefs" : {}, "rawDirectories" : [".", "../export"], "templateStringScript" : "sfmt"}
json_instruct
{"type": "object", "properties": {"indentWithTabs": {"type": "boolean"}, "linterPrefs": {"type": "object", "properties": {}, "required": []}, "rawDirectories": {"type": "array", "items": {"type": "string"}}, "templateStringScript": {"type": "string"}}, "required": ["indentWithTabs", "linterPrefs", "rawDirectories", "templateStringScript"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"build_from": {"type": "object", "properties": {"aarch64": {"type": "string"}, "amd64": {"type": "string"}, "armv7": {"type": "string"}, "i386": {"type": "string"}}, "required": ["aarch64", "amd64", "armv7", "i386"]}, "args": {"type": "object", "properties": {}, "required": []}}, "required": ["build_from", "args"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"build_from" : {"aarch64" : "hassioaddons/ubuntu-base-aarch64:4.0.1", "amd64" : "hassioaddons/ubuntu-base-amd64:4.0.1", "armv7" : "hassioaddons/ubuntu-base-armv7:4.0.1", "i386" : "hassioaddons/ubuntu-base-i386:4.0.1"}, "args" : {}}
json_instruct
{"type": "object", "properties": {"build_from": {"type": "object", "properties": {"aarch64": {"type": "string"}, "amd64": {"type": "string"}, "armv7": {"type": "string"}, "i386": {"type": "string"}}, "required": ["aarch64", "amd64", "armv7", "i386"]}, "args": {"type": "object", "properties": {}, "required": []}}, "required": ["build_from", "args"], "$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": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[383.5769958285455, 507.54576205380556], [377.6300664944306, 525.2704671551394], [381.86538054296733, 554.9176654948963], [394.5713226885774, 586.6825208589216], [409.39492185845586, 609.9767481258734], [432.6891491254077, 624.8003472957519], [455.98337639235956, 637.506289441362], [481.3952606835798, 648.0945745627037], [498.3365168777265, 652.3298886112404], [521.6307441446785, 656.565202659777]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"f" : "\u6e4d\u6025\uff0c\u5f37\u52c1\uff0c\u6709\u529b\u3002"}, {"e" : ["\ufff9`Kilemelay~ `ko~ `fali~.\ufffa\ufffb\u98a8\u529b\u5f37\u52c1\u8d77\u4f86\u4e86\u3002", "\ufff9`Kilemelay~ `a~ `nanom~.\ufffa\ufffb\u6e4d\u6025\u4e4b\u6c34\u3002"], "f" : "\u6e4d\u6025\u7684\uff0c\u5f37\u52c1\u7684\uff0c\u6709\u529b\u7684\u3002"}]}], "stem" : "kilemel", "t" : "kilemelay"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"proShow": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}, "varietyShow": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}, "djNight": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}, "bikeStunt": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}, "choreoNight": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}, "workshops": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}}, "required": ["proShow", "varietyShow", "djNight", "bikeStunt", "choreoNight", "workshops"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"proShow" : {"name" : "Pro Show", "friendlyName" : "Pro Show", "events" : ["Pro Show"]}, "varietyShow" : {"name" : "Variety Show", "friendlyName" : "Variety Show", "events" : ["Variety Show"]}, "djNight" : {"name" : "DJ Night", "friendlyName" : "DJ Night", "events" : ["DJ Night"]}, "bikeStunt" : {"name" : "Bike Stunt", "friendlyName" : "Bike Stunt", "events" : ["Bike Stunt"]}, "choreoNight" : {"name" : "Choreo Night", "friendlyName" : "Choreo Night", "events" : ["Choreo Night"]}, "workshops" : {"name" : "Workshops", "friendlyName" : "Workshops", "events" : ["Design Workshop (by Madrasters)", "Photography Workshop"]}}
json_instruct
{"type": "object", "properties": {"proShow": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}, "varietyShow": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}, "djNight": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}, "bikeStunt": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}, "choreoNight": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}, "workshops": {"type": "object", "properties": {"name": {"type": "string"}, "friendlyName": {"type": "string"}, "events": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "friendlyName", "events"]}}, "required": ["proShow", "varietyShow", "djNight", "bikeStunt", "choreoNight", "workshops"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[[[80.13066813872804, 7.243575147604318], [80.13019671770078, 7.24200818064224], [80.12925387564624, 7.24200818064224], [80.12854674410535, 7.2408329554206805], [80.12807532307808, 7.241224697161201], [80.12831103359171, 7.2408329554206805], [80.12760390205082, 7.240049471939642], [80.12618963896902, 7.239265988458603], [80.12595392845539, 7.239657730199122], [80.12501108640086, 7.240049471939642], [80.12571821794175, 7.241224697161201], [80.12713248102355, 7.243183405863799], [80.12807532307808, 7.245533856306917], [80.12925387564624, 7.247492565009515], [80.12972529667351, 7.249451273712113], [80.13019671770078, 7.248276048490554], [80.13090384924168, 7.247492565009515], [80.13019671770078, 7.247492565009515], [80.13019671770078, 7.247100823268995], [80.12996100718715, 7.246709081528476], [80.13043242821442, 7.245925598047436], [80.13066813872804, 7.243575147604318]]]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Select or Upload Media": {"type": "array", "items": {"type": "string"}}, "Error while uploading file %s to the media library.": {"type": "array", "items": {"type": "string"}}, "This file is empty.": {"type": "array", "items": {"type": "string"}}, "Sorry, this file type is not supported here.": {"type": "array", "items": {"type": "string"}}, "Sorry, this file type is not permitted for security reasons.": {"type": "array", "items": {"type": "string"}}, "This file exceeds the maximum upload size for this site.": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Select or Upload Media", "Error while uploading file %s to the media library.", "This file is empty.", "Sorry, this file type is not supported here.", "Sorry, this file type is not permitted for security reasons.", "This file exceeds the maximum upload size for this site."]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"translation-revision-date" : "2020-05-02 01:15:49+0000", "generator" : "GlotPress/3.0.0-alpha", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=1; plural=0;", "lang" : "ja_JP"}, "Select or Upload Media" : ["\u30e1\u30c7\u30a3\u30a2\u306e\u9078\u629e\u307e\u305f\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9"], "Error while uploading file %s to the media library." : ["\u30d5\u30a1\u30a4\u30eb %s \u3092\u30e1\u30c7\u30a3\u30a2\u30e9\u30a4\u30d6\u30e9\u30ea\u3078\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"], "This file is empty." : ["\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u7a7a\u3067\u3059\u3002"], "Sorry, this file type is not supported here." : ["\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u5f62\u5f0f\u306f\u3053\u306e\u7b87\u6240\u3067\u975e\u5bfe\u5fdc\u3067\u3059\u3002"], "Sorry, this file type is not permitted for security reasons." : ["\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u30bf\u30a4\u30d7\u306f\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4e0a\u306e\u7406\u7531\u304b\u3089\u3001\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"], "This file exceeds the maximum upload size for this site." : ["\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u30b5\u30a4\u30c8\u306e\u6700\u5927\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u30b5\u30a4\u30ba\u3092\u8d85\u3048\u3066\u3044\u307e\u3059\u3002"]}}, "comment" : {"reference" : "wp-includes/js/dist/media-utils.js"}}
json_instruct
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Select or Upload Media": {"type": "array", "items": {"type": "string"}}, "Error while uploading file %s to the media library.": {"type": "array", "items": {"type": "string"}}, "This file is empty.": {"type": "array", "items": {"type": "string"}}, "Sorry, this file type is not supported here.": {"type": "array", "items": {"type": "string"}}, "Sorry, this file type is not permitted for security reasons.": {"type": "array", "items": {"type": "string"}}, "This file exceeds the maximum upload size for this site.": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Select or Upload Media", "Error while uploading file %s to the media library.", "This file is empty.", "Sorry, this file type is not supported here.", "Sorry, this file type is not permitted for security reasons.", "This file exceeds the maximum upload size for this site."]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"706399f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["706399f-a"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"706399f-a" : {"width" : 600, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/706399f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/706399f-a.jpg", "title" : "", "date" : "1936", "text" : "1549-1583 Prospect Place, north side, east from Buffalo Ave., at the extreme left.\nMay 8, 1936.\nP. L. Sperr.\n", "folder" : "Prospect Place & Buffalo Avenue, Brooklyn, NY", "height" : 400, "original_title" : "Brooklyn: Prospect Place - Buffalo Avenue", "years" : ["1936"]}}
json_instruct
{"type": "object", "properties": {"706399f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["706399f-a"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"API_Wordpress_URL": {"type": "string"}, "Accounts_OAuth_Wordpress": {"type": "string"}, "Accounts_OAuth_Wordpress_id": {"type": "string"}, "Accounts_OAuth_Wordpress_secret": {"type": "string"}}, "required": ["API_Wordpress_URL", "Accounts_OAuth_Wordpress", "Accounts_OAuth_Wordpress_id", "Accounts_OAuth_Wordpress_secret"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"API_Wordpress_URL" : "URL WordPress", "Accounts_OAuth_Wordpress" : "Autentificare WordPress", "Accounts_OAuth_Wordpress_id" : " Id WordPress", "Accounts_OAuth_Wordpress_secret" : "WordPress Secret"}
json_instruct
{"type": "object", "properties": {"API_Wordpress_URL": {"type": "string"}, "Accounts_OAuth_Wordpress": {"type": "string"}, "Accounts_OAuth_Wordpress_id": {"type": "string"}, "Accounts_OAuth_Wordpress_secret": {"type": "string"}}, "required": ["API_Wordpress_URL", "Accounts_OAuth_Wordpress", "Accounts_OAuth_Wordpress_id", "Accounts_OAuth_Wordpress_secret"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"categories" : ["Mobile Development", "Programming", "Web Development"], "desc" : "\n", "details" : {"authors" : "Cloves Carneiro Jr., Rida Al Barazi", "format" : "pdf", "isbn-10" : "1430224339", "isbn-13" : "978-1430224334", "pages" : "400 pages", "publication date" : "December 16, 2011", "publisher" : "Apress", "size" : "3.00Mb"}, "img" : "http://23.95.221.108/covers/01/010654cd799e3636322a6541af0bad84.jpg", "link" : "https://rapidhosting.info/files/c9a", "title" : "Beginning Rails 3 (Expert\u2019s Voice in Web Development)"}
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "format": {"type": "string"}, "lint": {"type": "string"}, "prepare": {"type": "string"}, "prepublishOnly": {"type": "string"}, "preversion": {"type": "string"}, "version": {"type": "string"}, "postversion": {"type": "string"}}, "required": ["build", "test", "format", "lint", "prepare", "prepublishOnly", "preversion", "version", "postversion"]}, "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": {"@angular/core": {"type": "string"}}, "required": ["@angular/core"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "prettier": {"type": "string"}, "rxjs": {"type": "string"}, "ts-node": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "prettier", "rxjs", "ts-node", "tslint", "tslint-config-prettier", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "files", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "angular-function-component", "version" : "0.1.0", "description" : "A tiny package to create angular component as functions.", "main" : "./lib/index.js", "types" : "./lib/index.d.ts", "files" : ["lib/**/*"], "scripts" : {"build" : "tsc", "test" : "echo \"Error: no test specified\" && exit 1", "format" : "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint" : "tslint -p tsconfig.json", "prepare" : "npm run build", "prepublishOnly" : "npm test && npm run lint", "preversion" : "npm run lint", "version" : "npm run format && git add -A src", "postversion" : "git push && git push --tags"}, "repository" : {"type" : "git", "url" : "git+https://github.com/kuroidoruido/angular-function-component.git"}, "keywords" : ["angular", "function", "component"], "author" : "Anthony Pena", "license" : "MIT", "bugs" : {"url" : "https://github.com/kuroidoruido/angular-function-component/issues"}, "homepage" : "https://github.com/kuroidoruido/angular-function-component#readme", "dependencies" : {"@angular/core" : "^8.0.0"}, "devDependencies" : {"@types/node" : "^12.0.8", "prettier" : "^1.18.2", "rxjs" : "^6.5.2", "ts-node" : "^8.2.0", "tslint" : "^5.17.0", "tslint-config-prettier" : "^1.18.0", "typescript" : "^3.5.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "format": {"type": "string"}, "lint": {"type": "string"}, "prepare": {"type": "string"}, "prepublishOnly": {"type": "string"}, "preversion": {"type": "string"}, "version": {"type": "string"}, "postversion": {"type": "string"}}, "required": ["build", "test", "format", "lint", "prepare", "prepublishOnly", "preversion", "version", "postversion"]}, "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": {"@angular/core": {"type": "string"}}, "required": ["@angular/core"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "prettier": {"type": "string"}, "rxjs": {"type": "string"}, "ts-node": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "prettier", "rxjs", "ts-node", "tslint", "tslint-config-prettier", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "files", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}, "rarity": {"type": "integer"}}, "required": ["id", "name", "description", "source", "rarity"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "dragonheirs_false_fin", "name" : "Dragonheir's False Fin", "description" : "\u0e16\u0e36\u0e07\u0e41\u0e21\u0e49\u0e27\u0e48\u0e32\u0e08\u0e30\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e31\u0e1a\u0e04\u0e23\u0e35\u0e1a\u0e1b\u0e25\u0e32 \u0e41\u0e15\u0e48\u0e04\u0e27\u0e32\u0e21\u0e08\u0e23\u0e34\u0e07\u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e21\u0e35\u0e1b\u0e23\u0e30\u0e42\u0e22\u0e0a\u0e19\u0e4c\u0e43\u0e19\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e30\u0e44\u0e23<br/>\u0e04\u0e23\u0e31\u0e49\u0e07\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e1c\u0e39\u0e49\u0e04\u0e19\u0e02\u0e2d\u0e07 Byakuyakoku \u0e19\u0e31\u0e49\u0e19\u0e40\u0e04\u0e22\u0e28\u0e36\u0e01\u0e29\u0e32\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a Bathysmal Vishap \u0e2d\u0e22\u0e48\u0e32\u0e07\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 \u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e1e\u0e27\u0e01\u0e21\u0e31\u0e19\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e41\u0e15\u0e01\u0e15\u0e48\u0e32\u0e07\u0e21\u0e32\u0e01\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e01\u0e47\u0e04\u0e37\u0e2d \u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e01\u0e32\u0e23\u0e40\u0e01\u0e47\u0e1a\u0e23\u0e31\u0e01\u0e29\u0e32\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e1a\u0e17\u0e2d\u0e14\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30\u0e02\u0e2d\u0e07\u0e15\u0e19\u0e40\u0e2d\u0e07\u0e15\u0e32\u0e21\u0e04\u0e27\u0e32\u0e21\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e44\u0e14\u0e49 \u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07\u0e08\u0e32\u0e01\u0e40\u0e01\u0e25\u0e35\u0e22\u0e14\u0e0a\u0e31\u0e07\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e01\u0e33\u0e40\u0e19\u0e34\u0e14\u0e41\u0e2a\u0e07\u0e17\u0e35\u0e48\u0e1e\u0e27\u0e01\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19 Vishap \u0e40\u0e2b\u0e25\u0e48\u0e32\u0e19\u0e35\u0e49\u0e08\u0e30\u0e2a\u0e39\u0e0d\u0e40\u0e2a\u0e35\u0e22\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e43\u0e2b\u0e0d\u0e48\u0e44\u0e1b\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e42\u0e15\u0e40\u0e15\u0e47\u0e21\u0e27\u0e31\u0e22 \u0e43\u0e19\u0e02\u0e13\u0e30\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e19 \u0e1e\u0e27\u0e01\u0e21\u0e31\u0e19\u0e44\u0e14\u0e49\u0e21\u0e35\u0e27\u0e34\u0e27\u0e31\u0e12\u0e19\u0e32\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e1e\u0e24\u0e15\u0e34\u0e01\u0e23\u0e23\u0e21\u0e17\u0e35\u0e48\u0e2b\u0e25\u0e32\u0e01\u0e2b\u0e25\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e18\u0e32\u0e15\u0e38\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49", "source" : ["\u0e14\u0e23\u0e2d\u0e1b\u0e08\u0e32\u0e01 Bathysmal Vishap Lv.30 \u0e02\u0e36\u0e49\u0e19\u0e44\u0e1b"], "rarity" : 4}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}, "rarity": {"type": "integer"}}, "required": ["id", "name", "description", "source", "rarity"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "routes": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "dest": {"type": "string"}}, "required": ["src", "dest"]}}}, "required": ["name", "routes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jive", "routes" : [{"src" : "/dj", "dest" : "/index.html"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "routes": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "dest": {"type": "string"}}, "required": ["src", "dest"]}}}, "required": ["name", "routes"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@rollup/plugin-node-resolve": {"type": "string"}, "acorn": {"type": "string"}, "acorn-walk": {"type": "string"}, "recast": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}}, "required": ["@rollup/plugin-node-resolve", "acorn", "acorn-walk", "recast", "rollup", "rollup-plugin-terser"]}}, "required": ["private", "name", "version", "description", "scripts", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"private" : true, "name" : "cloudflare-workers-go", "version" : "1.0.0", "description" : "A template for starting Golang projects in CloudFlare Workers.", "scripts" : {"build" : "node rollup.js"}, "main" : "worker/main.js", "author" : "Filip Dimitrovski <filipdimitrovski22@gmail.com>", "license" : "MIT", "dependencies" : {"@rollup/plugin-node-resolve" : "^13.0.2", "acorn" : "^8.4.1", "acorn-walk" : "^8.1.1", "recast" : "^0.20.4", "rollup" : "^2.53.3", "rollup-plugin-terser" : "^7.0.2"}}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@rollup/plugin-node-resolve": {"type": "string"}, "acorn": {"type": "string"}, "acorn-walk": {"type": "string"}, "recast": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}}, "required": ["@rollup/plugin-node-resolve", "acorn", "acorn-walk", "recast", "rollup", "rollup-plugin-terser"]}}, "required": ["private", "name", "version", "description", "scripts", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"license": {"type": "string"}, "language": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "creators": {"type": "array", "items": {"type": "object", "properties": {"orcid": {"type": "string"}, "affiliation": {"type": "string"}, "name": {"type": "string"}}, "required": ["orcid", "affiliation", "name"]}}}, "required": ["license", "language", "keywords", "creators"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"license" : "MIT", "language" : "eng", "keywords" : ["Groundwater flow equation", "Groundwater", "Pumping test", "Pump test", "Aquifer analysis", "Python", "GeoStat-Framework"], "creators" : [{"orcid" : "0000-0001-9060-4008", "affiliation" : "Helmholtz Centre for Environmental Research - UFZ", "name" : "Sebastian M\u00fcller"}, {"orcid" : "0000-0002-8783-6198", "affiliation" : "Hydrogeology Group, Department of Earth Science, Utrecht University, Netherlands", "name" : "Alraune Zech"}]}
json_instruct
{"type": "object", "properties": {"license": {"type": "string"}, "language": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "creators": {"type": "array", "items": {"type": "object", "properties": {"orcid": {"type": "string"}, "affiliation": {"type": "string"}, "name": {"type": "string"}}, "required": ["orcid", "affiliation", "name"]}}}, "required": ["license", "language", "keywords", "creators"], "$schema": "http://json-schema.org/draft-07/schema#"}