input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following 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" : 5, "n_trials" : 210, "objective" : "markowitz_analytic_on_cube", "white" : "platypus_cmaes", "black" : "bayesopt_ucb", "traceback" : ["passing", "passing"], "best_val" : [0.6116028459686649, 0.11007929316151079], "best_x" : [[0.3648519096950123, 0.0627547750873636, 0.41074544804300633, 0.09509175029768863, 0.3441718064898016], [0.14355951333381903, 0.0, 0.21058578905461972, 0.29747850640254536, 0.34701155967172737]], "feval_count" : [200, 200], "n_trials_instructed" : [147, 200], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "bayesopt_ucb_cube", "loser" : "platypus_cmaes_cube"} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "25e8aa1b6213a779c2fcdddc1ae6eb90a7414b47"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 55289183, "name" : "Capricious Darklord", "is_illegal" : false, "is_custom" : false, "text" : "During the Main Phase (Quick Effect): You can activate this effect; Tribute Summon 1 Fairy monster face-up. If this card is sent to the GY: You can make all monsters your opponent currently controls lose 500 ATK/DEF for each Fairy monster on the field, until the end of this turn. You can only use each effect of \"Capricious Darklord\" once per turn.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/55289183.jpg"], "type" : "Monster", "attribute" : "DARK", "atk" : 0, "species" : "Fairy", "monster_type" : "", "is_pendulum" : false, "ability" : "", "has_effect" : true, "def" : 1600, "level" : 4, "is_tuner" : false} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "poly": {"type": "string"}}, "required": ["id", "poly"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "electoral_wards/W05000781.json", "poly" : "-3.0329614080974 51.658382881941,-3.0353192718239 51.659014901203,-3.0360831104642 51.659544060026,-3.034495117265 51.659772061211,-3.0355590818357 51.660148419726,-3.0352731607939 51.660924214721,-3.0344798725296 51.661958941026,-3.0335664586102 51.661655877445,-3.0329818059041 51.662902755456,-3.034312636633 51.663503364197,-3.0352599875155 51.664722361507,-3.0359208719541 51.66485410336,-3.0359407251039 51.66572430991,-3.0351312027973 51.665796188368,-3.0348056813657 51.666739573169,-3.032989698209 51.666681832547,-3.0328218690766 51.666995315408,-3.0318969722543 51.666827212929,-3.0315399469054 51.667023668104,-3.032065322236 51.670098653637,-3.03060646084 51.67138197085,-3.0281040008493 51.67211693623,-3.0272001763917 51.672692211682,-3.0258972817377 51.674551360695,-3.0267141515823 51.675436180694,-3.0233299481751 51.675498989835,-3.0218163783307 51.675013140625,-3.0211514919425 51.674386820304,-3.0198590050014 51.67453382472,-3.0192929806044 51.674122431818,-3.0168782320351 51.674655884288,-3.0162644138146 51.669653818639,-3.0146642552577 51.669681144054,-3.01674154666 51.664291634476,-3.0158865326681 51.6620070924,-3.0142162141024 51.66198826363,-3.0139958964924 51.661121583936,-3.014904731232 51.659932243275,-3.0151286942592 51.658827044947,-3.0135476561146 51.658204102606,-3.0148570924546 51.657088629974,-3.0161328264642 51.656601943163,-3.0205448191295 51.6555053707,-3.0243559397766 51.655657407568,-3.024832449795 51.654608430552,-3.0259112503807 51.654754562824,-3.025604468851 51.657813472053,-3.0267482481774 51.657952735109,-3.027026557884 51.657282228652,-3.0290968134647 51.657796401146,-3.0316242863052 51.657688801032,-3.0329614080974 51.658382881941"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "poly": {"type": "string"}}, "required": ["id", "poly"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"age=0": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=1": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=2": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=3": {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["model", "weight"]}}}, "required": ["age=0", "age=1", "age=2", "age=3"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"age=0" : {"model" : "minecraft:block/sweet_berry_bush_stage0"}, "age=1" : {"model" : "minecraft:block/sweet_berry_bush_stage1"}, "age=2" : {"model" : "minecraft:block/sweet_berry_bush_stage2"}, "age=3" : [{"model" : "block/sweet_berry_bush_stage3", "weight" : 1}, {"model" : "block/sweet_berry_bush_stage3_1", "weight" : 1}]}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"age=0": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=1": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=2": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=3": {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["model", "weight"]}}}, "required": ["age=0", "age=1", "age=2", "age=3"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"artist_id" : "AROOTRI11F4C83B203", "artist_latitude" : 27.9758, "artist_location" : "Florida", "artist_longitude" : -81.54106, "artist_name" : "Geri X", "duration" : 261.95546, "num_songs" : 1, "song_id" : "SONGUXE12A8C140F10", "title" : "You're a Pearl", "year" : 0} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "beholdersvariations:block/vitric_prismarine_slab"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["3330101", "3330102", "3330103", "3330104"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "requestBody": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"addSpaces": {"type": "object", "properties": {"description": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "string"}}, "required": ["description", "items", "type"]}, "removeSpaces": {"type": "object", "properties": {"description": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "string"}}, "required": ["description", "items", "type"]}}, "required": ["addSpaces", "removeSpaces"]}, "type": {"type": "string"}}, "required": ["properties", "type"]}, "X_Auth_Token": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "X_Auth_Project_Id": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}}, "required": ["name", "requestBody", "X_Auth_Token", "X_Auth_Project_Id"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "object", "properties" : {"name" : {"required" : true, "type" : "string"}, "requestBody" : {"properties" : {"addSpaces" : {"description" : "The name or ID of the space where you want to provision your existing volume. Run `cf spaces` to retrieve the name, or `cf space <space_name> --guid` to retrieve the space ID. ", "items" : {"type" : "string"}, "type" : "array"}, "removeSpaces" : {"description" : "The name or ID of the space from which you want to unprovision your existing volume. Run `cf spaces` to retrieve the name, or `cf space <space_name> --guid` to retrieve the space ID.", "items" : {"type" : "string"}, "type" : "array"}}, "type" : "object"}, "X_Auth_Token" : {"required" : true, "type" : "string"}, "X_Auth_Project_Id" : {"required" : true, "type" : "string"}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "requestBody": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"addSpaces": {"type": "object", "properties": {"description": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "string"}}, "required": ["description", "items", "type"]}, "removeSpaces": {"type": "object", "properties": {"description": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "string"}}, "required": ["description", "items", "type"]}}, "required": ["addSpaces", "removeSpaces"]}, "type": {"type": "string"}}, "required": ["properties", "type"]}, "X_Auth_Token": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "X_Auth_Project_Id": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}}, "required": ["name", "requestBody", "X_Auth_Token", "X_Auth_Project_Id"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "source-map": {"type": "string"}, "jspath": {"type": "string"}}, "required": ["commander", "source-map", "jspath"]}, "devDependencies": {"type": "object", "properties": {"pegjs": {"type": "string"}, "mocha": {"type": "string"}, "chai": {"type": "string"}, "gulp": {"type": "string"}, "gulp-mocha": {"type": "string"}, "gulp-eslint": {"type": "string"}, "assert-version": {"type": "string"}}, "required": ["pegjs", "mocha", "chai", "gulp", "gulp-mocha", "gulp-eslint", "assert-version"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dryad", "version" : "0.0.0", "description" : "A DSL to build JSON trees", "main" : "index.js", "scripts" : {"test" : "mocha"}, "repository" : {"type" : "git", "url" : "https://github.com/hoho/dryad.git"}, "keywords" : ["JSON", "DSL", "tree"], "author" : "Marat Abdullin", "license" : "MIT", "bugs" : {"url" : "https://github.com/hoho/dryad/issues"}, "homepage" : "https://github.com/hoho/dryad", "dependencies" : {"commander" : "~2.9.0", "source-map" : "~0.5.3", "jspath" : "~0.3.2"}, "devDependencies" : {"pegjs" : "~0.9.0", "mocha" : "~2.3.4", "chai" : "~3.4.1", "gulp" : "~3.9.0", "gulp-mocha" : "~2.2.0", "gulp-eslint" : "~1.1.1", "assert-version" : "~0.0.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "source-map": {"type": "string"}, "jspath": {"type": "string"}}, "required": ["commander", "source-map", "jspath"]}, "devDependencies": {"type": "object", "properties": {"pegjs": {"type": "string"}, "mocha": {"type": "string"}, "chai": {"type": "string"}, "gulp": {"type": "string"}, "gulp-mocha": {"type": "string"}, "gulp-eslint": {"type": "string"}, "assert-version": {"type": "string"}}, "required": ["pegjs", "mocha", "chai", "gulp", "gulp-mocha", "gulp-eslint", "assert-version"]}}, "required": ["name", "version", "description", "main", "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": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "integer"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["upper_left_x", "upper_left_y", "bottom_right_x", "bottom_right_y", "time", "is_final", "event_type", "op_order", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"upper_left_x" : 1293.6073720546958, "upper_left_y" : 0, "bottom_right_x" : 2410.3907148357284, "bottom_right_y" : 1420.7965860936467, "time" : 1480195600650, "is_final" : true, "event_type" : "movement", "op_order" : 82, "id" : 82} | json_instruct | {"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "integer"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["upper_left_x", "upper_left_y", "bottom_right_x", "bottom_right_y", "time", "is_final", "event_type", "op_order", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1926, 5], [1933, 6], [1955, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"zy-slider": {"type": "string"}}, "required": ["zy-slider"]}, "navigationBarTitleText": {"type": "string"}}, "required": ["usingComponents", "navigationBarTitleText"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"usingComponents" : {"zy-slider" : "../../component/zyslider"}, "navigationBarTitleText" : "\u6c11\u5bbf\u5217\u8868"} | json_instruct | {"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"zy-slider": {"type": "string"}}, "required": ["zy-slider"]}, "navigationBarTitleText": {"type": "string"}}, "required": ["usingComponents", "navigationBarTitleText"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"jquery.sparkline.js": {"type": "string"}, "jquery.sparkline.min.js": {"type": "string"}}, "required": ["jquery.sparkline.js", "jquery.sparkline.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jquery.sparkline.js" : "sha256-LyvLC4QvPtUU7GAeXnI4atDtDDSKOtUFoIRsysvDSDQ=", "jquery.sparkline.min.js" : "sha256-BuAkLaFyq4WYXbN3TFSsG1M5GltEeFehAMURi4KBpUM="} | json_instruct | {"type": "object", "properties": {"jquery.sparkline.js": {"type": "string"}, "jquery.sparkline.min.js": {"type": "string"}}, "required": ["jquery.sparkline.js", "jquery.sparkline.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "homepage": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"create-react-class": {"type": "string"}, "gh-pages": {"type": "string"}, "lodash": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "steam-totp": {"type": "string"}}, "required": ["create-react-class", "gh-pages", "lodash", "react", "react-dom", "react-scripts", "steam-totp"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "test", "eject", "deploy"]}}, "required": ["name", "version", "description", "author", "homepage", "license", "repository", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "steam-auth-web-util", "version" : "1.1.0", "description" : "Tiny browser utility to generate Steam auth codes.", "author" : {"name" : "Michael Scholtz", "email" : "michael.scholtz@outlook.com"}, "homepage" : "http://scholtzm.github.io/steam-auth-web-util/", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/scholtzm/steam-auth-web-util.git"}, "dependencies" : {"create-react-class" : "^15.6.2", "gh-pages" : "^1.0.0", "lodash" : "^4.17.4", "react" : "^16.0.0", "react-dom" : "^16.0.0", "react-scripts" : "1.0.17", "steam-totp" : "1.4.0"}, "scripts" : {"start" : "react-scripts start", "build" : "react-scripts build", "test" : "react-scripts test --env=jsdom", "eject" : "react-scripts eject", "deploy" : "npm run build && gh-pages -d build"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "homepage": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"create-react-class": {"type": "string"}, "gh-pages": {"type": "string"}, "lodash": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "steam-totp": {"type": "string"}}, "required": ["create-react-class", "gh-pages", "lodash", "react", "react-dom", "react-scripts", "steam-totp"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "test", "eject", "deploy"]}}, "required": ["name", "version", "description", "author", "homepage", "license", "repository", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "conquest:block/large_tan_sandstone_block_slab_bottom_4"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "servos-framework", "description" : "\u91c7\u7528\u5206\u6563\u5f00\u53d1\u7edf\u4e00\u7ba1\u7406\u3002\u4ee5\u670d\u52a1\u4e3a\u5355\u4f4d\u8fdb\u884c\u5f00\u53d1\u3002\u6bcf\u4e2a\u670d\u52a1\u53ef\u4ee5\u5355\u72ec\u542f\u52a8\uff0c\u4e5f\u53ef\u4ee5\u591a\u4e2a\u670d\u52a1\u540c\u65f6\u542f\u52a8\uff0c\u901a\u8fc7\u914d\u7f6e\u6587\u4ef6\u8fdb\u884c\u7ba1\u7406\u6307\u5b9a\u54ea\u4e9b\u670d\u52a1\u751f\u6548\uff0c\u90e8\u7f72\u65b9\u5f0f\u7075\u6d3b\u3002", "license" : null, "starNum" : 147, "folkNum" : 37, "watchNum" : 147, "topic" : ["python27"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"com.ionic.keyboard": {"type": "object", "properties": {"source": {"type": "object", "properties": {"type": {"type": "string"}, "path": {"type": "string"}}, "required": ["type", "path"]}}, "required": ["source"]}, "org.apache.cordova.console": {"type": "object", "properties": {"source": {"type": "object", "properties": {"type": {"type": "string"}, "path": {"type": "string"}}, "required": ["type", "path"]}}, "required": ["source"]}, "org.apache.cordova.device": {"type": "object", "properties": {"source": {"type": "object", "properties": {"type": {"type": "string"}, "path": {"type": "string"}}, "required": ["type", "path"]}}, "required": ["source"]}}, "required": ["com.ionic.keyboard", "org.apache.cordova.console", "org.apache.cordova.device"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"com.ionic.keyboard" : {"source" : {"type" : "local", "path" : "/Users/mhartington/.plugman/cache/com.ionic.keyboard/1.0.3/package"}}, "org.apache.cordova.console" : {"source" : {"type" : "local", "path" : "/Users/mhartington/.plugman/cache/org.apache.cordova.console/0.2.11/package"}}, "org.apache.cordova.device" : {"source" : {"type" : "local", "path" : "/Users/mhartington/.plugman/cache/org.apache.cordova.device/0.2.12/package"}}} | json_instruct | {"type": "object", "properties": {"com.ionic.keyboard": {"type": "object", "properties": {"source": {"type": "object", "properties": {"type": {"type": "string"}, "path": {"type": "string"}}, "required": ["type", "path"]}}, "required": ["source"]}, "org.apache.cordova.console": {"type": "object", "properties": {"source": {"type": "object", "properties": {"type": {"type": "string"}, "path": {"type": "string"}}, "required": ["type", "path"]}}, "required": ["source"]}, "org.apache.cordova.device": {"type": "object", "properties": {"source": {"type": "object", "properties": {"type": {"type": "string"}, "path": {"type": "string"}}, "required": ["type", "path"]}}, "required": ["source"]}}, "required": ["com.ionic.keyboard", "org.apache.cordova.console", "org.apache.cordova.device"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "bluethroat", "definition" : "A singing bird of northern Europe and Asia (Cyanecula Suecica), related to the nightingales; -- called also blue-throated robin and blue-throated warbler."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "sortnum": {"type": "string"}, "readbydefault": {"type": "boolean"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "entity": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "entity", "text"]}}}, "required": ["name", "icon", "category", "sortnum", "readbydefault", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Darkstone Dungeon Mobs", "icon" : "theaurorian:bossspawnerkeeper", "category" : "2modprogression", "sortnum" : "5", "readbydefault" : true, "pages" : [{"type" : "entity", "entity" : "theaurorian:spiderling", "text" : "$(#008cff)Spiderlings$() are baby spiders that will leap and attack you."}, {"type" : "entity", "entity" : "theaurorian:spider", "text" : "$(#8800ff)The Spider Mother$() is the boss of $(#008cff)The Darkstone Dungeon$(). It will Spit at you, Hang, and spawn Spiderlings!"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "sortnum": {"type": "string"}, "readbydefault": {"type": "boolean"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "entity": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "entity", "text"]}}}, "required": ["name", "icon", "category", "sortnum", "readbydefault", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"tailwindcss": {"type": "string"}}, "required": ["tailwindcss"]}}, "required": ["devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devDependencies" : {"tailwindcss" : "^3.0.8"}} | json_instruct | {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"tailwindcss": {"type": "string"}}, "required": ["tailwindcss"]}}, "required": ["devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"sourceType": {"type": "string"}, "features": {"type": "object", "properties": {"es7.exportExtensions": {"type": "boolean"}}, "required": ["es7.exportExtensions"]}}, "required": ["sourceType", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sourceType" : "module", "features" : {"es7.exportExtensions" : true}} | json_instruct | {"type": "object", "properties": {"sourceType": {"type": "string"}, "features": {"type": "object", "properties": {"es7.exportExtensions": {"type": "boolean"}}, "required": ["es7.exportExtensions"]}}, "required": ["sourceType", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "country": {"type": "string"}, "coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}}, "required": ["id", "name", "country", "coord"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 6559994, "name" : "Buenos Aires", "country" : "PE", "coord" : {"lon" : -78.497498, "lat" : -9.12417}}, {"id" : 707860, "name" : "London", "country" : "GB", "coord" : {"lon" : 34.283333, "lat" : 44.549999}}, {"id" : 2027487, "name" : "Arkhara", "country" : "RU", "coord" : {"lon" : 130.084198, "lat" : 49.4212}}, {"id" : 498817, "name" : "Saint Petersburg", "country" : "RU", "coord" : {"lon" : 30.264168, "lat" : 59.894444}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "country": {"type": "string"}, "coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}}, "required": ["id", "name", "country", "coord"]}, "$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"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "PIETER-HENDRIK", "frequency" : 1, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101764785, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "8b0b811cf86726048bf951e4840a7fff", "wof:id" : 101764785, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.1302432812418, 47.59879269464773, 1.14990979176309, 47.61036482673853], "geometry" : {"coordinates" : [[[1.14339045317377, 47.61036482673853], [1.14354468287758, 47.60947220533046], [1.14486625548449, 47.60957973571328], [1.14532883631966, 47.60690186079665], [1.14665034659026, 47.60700936876697], [1.14680450411453, 47.6061167402313], [1.14812599694028, 47.6062242300892], [1.14843424664338, 47.60443896659888], [1.14975569958085, 47.60454643619636], [1.14990979176309, 47.60365380124216], [1.14462409976238, 47.60322383567024], [1.14508660467726, 47.60054595234749], [1.14112259010307, 47.60022332991207], [1.14096836130767, 47.60111595194525], [1.13700432442596, 47.60079317941029], [1.13715862052896, 47.59990056382816], [1.13583730734086, 47.59979294321209], [1.1359916190529, 47.59890032907305], [1.13467033330136, 47.59879269464773], [1.1345159991555, 47.59968530663548], [1.13319469597383, 47.59957765409843], [1.13304033256623, 47.60047026322604], [1.13039769634793, 47.60025490596672], [1.1302432812418, 47.60114751008143], [1.13420731038212, 47.601470528486], [1.13312668456541, 47.60771878265393], [1.13444819469907, 47.60782643859636], [1.13429381470479, 47.60871904565454], [1.13561535228814, 47.60882668778561], [1.135460987908, 47.60971929628795], [1.13810412298096, 47.6099345369621], [1.13825844247003, 47.60904192415643], [1.14222311527237, 47.60936465898317], [1.14206886312144, 47.61025727824097], [1.14339045317377, 47.61036482673853]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"totalShames": {"type": "integer"}, "totalShamings": {"type": "integer"}}, "required": ["totalShames", "totalShamings"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "94854d20-cb32-40a9-b211-eb9786b14ca6", "playerTags" : [], "teamTags" : ["8d87c468-699a-47a8-b40d-cfb73a5660ad"], "gameTags" : [], "metadata" : {"totalShames" : 53, "totalShamings" : 46}, "created" : "2021-03-10T05:30:13.826Z", "season" : 12, "tournament" : -1, "type" : 154, "day" : 36, "phase" : 4, "category" : 3, "description" : "The Crabs were shamed by the Magic.", "nuts" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"totalShames": {"type": "integer"}, "totalShamings": {"type": "integer"}}, "required": ["totalShames", "totalShamings"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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": {}}, "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" : "import { mergeMap } from './mergeMap';\nexport function mergeMapTo(innerObservable, resultSelector, concurrent = Number.POSITIVE_INFINITY) {\n if (typeof resultSelector === 'function') {\n return mergeMap(() => innerObservable, resultSelector, concurrent);\n }\n\n if (typeof resultSelector === 'number') {\n concurrent = resultSelector;\n }\n\n return mergeMap(() => innerObservable, concurrent);\n}", "map" : {"version" : 3, "sources" : ["../../../src/internal/operators/mergeMapTo.ts"], "names" : [], "mappings" : "AAEA,SAAS,QAAT,QAAyB,YAAzB;AAiDA,OAAM,SAAU,UAAV,CACJ,eADI,EAEJ,cAFI,EAGJ,UAAA,GAAqB,MAAM,CAAC,iBAHxB,EAGyC;AAE7C,MAAI,OAAO,cAAP,KAA0B,UAA9B,EAA0C;AACxC,WAAO,QAAQ,CAAC,MAAM,eAAP,EAAwB,cAAxB,EAAwC,UAAxC,CAAf;AACD;;AACD,MAAI,OAAO,cAAP,KAA0B,QAA9B,EAAwC;AACtC,IAAA,UAAU,GAAG,cAAb;AACD;;AACD,SAAO,QAAQ,CAAC,MAAM,eAAP,EAAwB,UAAxB,CAAf;AACD", "sourcesContent" : ["import { mergeMap } from './mergeMap';\nexport function mergeMapTo(innerObservable, resultSelector, concurrent = Number.POSITIVE_INFINITY) {\n if (typeof resultSelector === 'function') {\n return mergeMap(() => innerObservable, resultSelector, concurrent);\n }\n if (typeof resultSelector === 'number') {\n concurrent = resultSelector;\n }\n return mergeMap(() => innerObservable, concurrent);\n}\n//# sourceMappingURL=mergeMapTo.js.map"]}, "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": {}}, "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "marionette": {"type": "string"}, "underscore": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}}, "required": ["jquery", "marionette", "underscore", "lodash", "moment"]}}, "required": ["name", "version", "homepage", "license", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nco", "version" : "0.1.0", "homepage" : "https://github.com/Ragg-/nco", "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"jquery" : "~2.1.4", "marionette" : "~2.4.3", "underscore" : "~1.8.3", "lodash" : "~3.10.1", "moment" : "~2.10.6"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "marionette": {"type": "string"}, "underscore": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}}, "required": ["jquery", "marionette", "underscore", "lodash", "moment"]}}, "required": ["name", "version", "homepage", "license", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}, "qualityTemplates": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}, "required": ["id", "name", "href", "description", "qualityRules", "qualityTemplates"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 61022, "name" : "Volume - Number of Components", "href" : "AIP/technical-criteria/61022", "description" : "Respect of sizing practices regarding the number of included or contained objects", "qualityRules" : {"name" : "Quality Rules in numeric ID order", "href" : "AIP/technical-criteria/61022/quality-rules"}, "qualityTemplates" : {"name" : "Quality Templates in numeric ID order", "href" : "AIP/technical-criteria/61022/quality-templates"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}, "qualityTemplates": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}, "required": ["id", "name", "href", "description", "qualityRules", "qualityTemplates"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "color": {"type": "array", "items": {"type": "string"}}, "foreground": {"type": "string"}, "background": {"type": "string"}}, "required": ["name", "author", "color", "foreground", "background"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Red Phoenix", "author" : "dkeg", "color" : ["#131313", "#2d2d2d", "#4c3a3d", "#4e4e4e", "#6f6f6f", "#909090", "#aaa998", "#b1b1b1", "#d1d1d1", "#d2c3ad", "#df9767", "#e1e1e1", "#ededed", "#ed4b19", "#f2361e", "#fa390f"], "foreground" : "#ffffff", "background" : "#111111"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "color": {"type": "array", "items": {"type": "string"}}, "foreground": {"type": "string"}, "background": {"type": "string"}}, "required": ["name", "author", "color", "foreground", "background"], "$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"}, "name": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "organization": {"type": "string"}, "iconUrl": {"type": "string"}, "sourceUrl": {"type": "string"}, "dataVisibility": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "categories", "organization", "iconUrl", "sourceUrl", "dataVisibility"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "BRIGHTROLL_DSP", "name" : "BrightRoll DSP", "categories" : ["ADVERTISING"], "organization" : "YAHOO", "iconUrl" : "https://static.funnel.io/logos/icon48x48/brightrolldsp.png", "sourceUrl" : "https://www.oath.com/advertising/platforms/", "dataVisibility" : ["PRIVATE"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "organization": {"type": "string"}, "iconUrl": {"type": "string"}, "sourceUrl": {"type": "string"}, "dataVisibility": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "categories", "organization", "iconUrl", "sourceUrl", "dataVisibility"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "bootstrap-toggle": {"type": "string"}, "datatables.net": {"type": "string"}, "datatables.net-select": {"type": "string"}, "datatables.net-src": {"type": "string"}, "del": {"type": "string"}, "font-awesome": {"type": "string"}, "gulp": {"type": "string"}, "jquery": {"type": "string"}, "js-cookie": {"type": "string"}, "laravel-elixir": {"type": "string"}, "laravel-elixir-delete": {"type": "string"}, "laravel-elixir-eslint": {"type": "string"}, "moment": {"type": "string"}}, "required": ["bootstrap", "bootstrap-toggle", "datatables.net", "datatables.net-select", "datatables.net-src", "del", "font-awesome", "gulp", "jquery", "js-cookie", "laravel-elixir", "laravel-elixir-delete", "laravel-elixir-eslint", "moment"]}}, "required": ["devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devDependencies" : {"bootstrap" : "v4.0.0-alpha.5", "bootstrap-toggle" : "^2.2.2", "datatables.net" : "^1.10.12", "datatables.net-select" : "^1.2.0", "datatables.net-src" : "^1.10.12", "del" : "^2.2.2", "font-awesome" : "^4.7.0", "gulp" : "^3.9.1", "jquery" : "^3.1.1", "js-cookie" : "^2.1.3", "laravel-elixir" : "^6.0.0-9", "laravel-elixir-delete" : "^1.0.1", "laravel-elixir-eslint" : "^4.0.0-4", "moment" : "^2.15.2"}} | json_instruct | {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "bootstrap-toggle": {"type": "string"}, "datatables.net": {"type": "string"}, "datatables.net-select": {"type": "string"}, "datatables.net-src": {"type": "string"}, "del": {"type": "string"}, "font-awesome": {"type": "string"}, "gulp": {"type": "string"}, "jquery": {"type": "string"}, "js-cookie": {"type": "string"}, "laravel-elixir": {"type": "string"}, "laravel-elixir-delete": {"type": "string"}, "laravel-elixir-eslint": {"type": "string"}, "moment": {"type": "string"}}, "required": ["bootstrap", "bootstrap-toggle", "datatables.net", "datatables.net-select", "datatables.net-src", "del", "font-awesome", "gulp", "jquery", "js-cookie", "laravel-elixir", "laravel-elixir-delete", "laravel-elixir-eslint", "moment"]}}, "required": ["devDependencies"], "$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"}, "properties": {"type": "object", "properties": {"from_lang": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "to_lang": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "requestBody": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"html": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["html"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "properties", "required"]}}, "required": ["from_lang", "to_lang", "requestBody"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "object", "properties" : {"from_lang" : {"required" : true, "type" : "string"}, "to_lang" : {"required" : true, "type" : "string"}, "requestBody" : {"type" : "object", "properties" : {"html" : {"description" : "The HTML content to translate", "type" : "string"}}, "required" : ["html"]}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"from_lang": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "to_lang": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "requestBody": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"html": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["html"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "properties", "required"]}}, "required": ["from_lang", "to_lang", "requestBody"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"data_type": {"type": "string"}, "total_queries": {"type": "integer"}, "SELECT_queries": {"type": "integer"}, "DESCRIBE_queries": {"type": "integer"}, "CONSTRUCT_queries": {"type": "integer"}, "ASK_queries": {"type": "integer"}, "found_scenarios": {"type": "object", "properties": {"list_per_search": {"type": "array", "items": {"type": "object", "properties": {"looking_for": {"type": "string"}, "total_occurrences": {"type": "integer"}, "total_scenarios": {"type": "integer"}, "prop_one": {"type": "integer"}, "prop_two": {"type": "integer"}, "prop_three": {"type": "integer"}, "prop_four": {"type": "integer"}, "obj_one": {"type": "integer"}, "obj_two": {"type": "integer"}, "obj_three": {"type": "integer"}, "obj_four": {"type": "integer"}, "sub_one": {"type": "integer"}, "sub_two": {"type": "integer"}, "sub_three": {"type": "integer"}, "sub_four": {"type": "integer"}, "filter": {"type": "integer"}, "optional": {"type": "integer"}, "union": {"type": "integer"}, "prop_path": {"type": "integer"}, "bind": {"type": "integer"}, "blank_node": {"type": "integer"}, "minus": {"type": "integer"}, "subselect": {"type": "integer"}, "literal": {"type": "integer"}, "values": {"type": "integer"}, "service": {"type": "integer"}, "other": {"type": "integer"}}, "required": ["looking_for", "total_occurrences", "total_scenarios", "prop_one", "prop_two", "prop_three", "prop_four", "obj_one", "obj_two", "obj_three", "obj_four", "sub_one", "sub_two", "sub_three", "sub_four", "filter", "optional", "union", "prop_path", "bind", "blank_node", "minus", "subselect", "literal", "values", "service", "other"]}}}, "required": ["list_per_search"]}}, "required": ["data_type", "total_queries", "SELECT_queries", "DESCRIBE_queries", "CONSTRUCT_queries", "ASK_queries", "found_scenarios"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data_type" : "qualifier_metadata/property_qualifier", "total_queries" : 20287, "SELECT_queries" : 20269, "DESCRIBE_queries" : 0, "CONSTRUCT_queries" : 13, "ASK_queries" : 5, "found_scenarios" : {"list_per_search" : [{"looking_for" : "['http://www.wikidata.org/prop/qualifier/P', 'http://www.wikidata.org/prop/qualifier/value/P', 'http://www.wikidata.org/prop/qualifier/value-normalized/P']", "total_occurrences" : 40959, "total_scenarios" : 41055, "prop_one" : 8454, "prop_two" : 2230, "prop_three" : 5, "prop_four" : 0, "obj_one" : 0, "obj_two" : 6, "obj_three" : 0, "obj_four" : 0, "sub_one" : 1, "sub_two" : 0, "sub_three" : 0, "sub_four" : 0, "filter" : 4350, "optional" : 20867, "union" : 1083, "prop_path" : 1018, "bind" : 43, "blank_node" : 1486, "minus" : 212, "subselect" : 838, "literal" : 195, "values" : 35, "service" : 207, "other" : 25}]}} | json_instruct | {"type": "object", "properties": {"data_type": {"type": "string"}, "total_queries": {"type": "integer"}, "SELECT_queries": {"type": "integer"}, "DESCRIBE_queries": {"type": "integer"}, "CONSTRUCT_queries": {"type": "integer"}, "ASK_queries": {"type": "integer"}, "found_scenarios": {"type": "object", "properties": {"list_per_search": {"type": "array", "items": {"type": "object", "properties": {"looking_for": {"type": "string"}, "total_occurrences": {"type": "integer"}, "total_scenarios": {"type": "integer"}, "prop_one": {"type": "integer"}, "prop_two": {"type": "integer"}, "prop_three": {"type": "integer"}, "prop_four": {"type": "integer"}, "obj_one": {"type": "integer"}, "obj_two": {"type": "integer"}, "obj_three": {"type": "integer"}, "obj_four": {"type": "integer"}, "sub_one": {"type": "integer"}, "sub_two": {"type": "integer"}, "sub_three": {"type": "integer"}, "sub_four": {"type": "integer"}, "filter": {"type": "integer"}, "optional": {"type": "integer"}, "union": {"type": "integer"}, "prop_path": {"type": "integer"}, "bind": {"type": "integer"}, "blank_node": {"type": "integer"}, "minus": {"type": "integer"}, "subselect": {"type": "integer"}, "literal": {"type": "integer"}, "values": {"type": "integer"}, "service": {"type": "integer"}, "other": {"type": "integer"}}, "required": ["looking_for", "total_occurrences", "total_scenarios", "prop_one", "prop_two", "prop_three", "prop_four", "obj_one", "obj_two", "obj_three", "obj_four", "sub_one", "sub_two", "sub_three", "sub_four", "filter", "optional", "union", "prop_path", "bind", "blank_node", "minus", "subselect", "literal", "values", "service", "other"]}}}, "required": ["list_per_search"]}}, "required": ["data_type", "total_queries", "SELECT_queries", "DESCRIBE_queries", "CONSTRUCT_queries", "ASK_queries", "found_scenarios"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "trap_type": {"type": "string"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "trap_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 73079365, "name" : "Gust", "is_illegal" : false, "is_custom" : false, "text" : "You can activate this card when 1 or more of your Spell Cards are destroyed and sent from the field to the Graveyard by a card effect your opponent controls. Destroy 1 Spell or Trap Card on the field.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/73079365.jpg"], "type" : "Trap", "trap_type" : "Normal"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "trap_type": {"type": "string"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "trap_type"], "$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"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"]}}, "required": ["name", "description", "author", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Xintesa\\Grapesjs", "description" : "GrapesJS Integration for Croogo", "author" : "Xintesa", "dependencies" : {"plugins" : ["Croogo/Wysiwyg"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"]}}, "required": ["name", "description", "author", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bookOfBlood.powers.invisibility.title", "icon" : "minecraft:potion{Potion:\"minecraft:invisibility\"}", "category" : "haema:powers", "pages" : [{"type" : "text", "text" : "bookOfBlood.powers.invisibility.text.1.text"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "main", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kitchensink", "main" : "template.json", "version" : "1.0.0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "main", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ref": {"type": "string"}, "url": {"type": "string"}, "object": {"type": "object", "properties": {"type": {"type": "string"}, "sha": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "sha", "url"]}}, "required": ["ref", "url", "object"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ref" : "refs/heads/my_branch", "url" : "https://api.github.com/repos/gocardless/bump/git/refs/heads/my_branch", "object" : {"type" : "commit", "sha" : "bb218f56b14c9653891f9e74264a383fa43fefbd", "url" : "https://api.github.com/repos/gocardless/bump/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} | json_instruct | {"type": "object", "properties": {"ref": {"type": "string"}, "url": {"type": "string"}, "object": {"type": "object", "properties": {"type": {"type": "string"}, "sha": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "sha", "url"]}}, "required": ["ref", "url", "object"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"sn35.139:0.1": {"type": "string"}, "sn35.139:0.2": {"type": "string"}, "sn35.139:0.3": {"type": "string"}, "sn35.139:1.1": {"type": "string"}, "sn35.139:1.2": {"type": "string"}, "sn35.139:1.3": {"type": "string"}, "sn35.139:1.4": {"type": "string"}, "sn35.139:1.5": {"type": "string"}, "sn35.139:1.6": {"type": "string"}, "sn35.139:1.7": {"type": "string"}, "sn35.139:1.8": {"type": "string"}, "sn35.139:1.9": {"type": "string"}, "sn35.139:1.10": {"type": "string"}, "sn35.139:1.11": {"type": "string"}, "sn35.139:1.12": {"type": "string"}, "sn35.139:1.13": {"type": "string"}, "sn35.139:1.14": {"type": "string"}, "sn35.139:1.15": {"type": "string"}}, "required": ["sn35.139:0.1", "sn35.139:0.2", "sn35.139:0.3", "sn35.139:1.1", "sn35.139:1.2", "sn35.139:1.3", "sn35.139:1.4", "sn35.139:1.5", "sn35.139:1.6", "sn35.139:1.7", "sn35.139:1.8", "sn35.139:1.9", "sn35.139:1.10", "sn35.139:1.11", "sn35.139:1.12", "sn35.139:1.13", "sn35.139:1.14", "sn35.139:1.15"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sn35.139:0.1" : "Sa\u1e41yutta Nik\u0101ya 35 ", "sn35.139:0.2" : "14. Devadahavagga ", "sn35.139:0.3" : "139. Dutiyanatumh\u0101kasutta ", "sn35.139:1.1" : "\u201cYa\u1e41, bhikkhave, na tumh\u0101ka\u1e41, ta\u1e41 pajahatha. ", "sn35.139:1.2" : "Ta\u1e41 vo pah\u012bna\u1e41 hit\u0101ya sukh\u0101ya bhavissati. ", "sn35.139:1.3" : "Ki\u00f1ca, bhikkhave, na tumh\u0101ka\u1e41? ", "sn35.139:1.4" : "R\u016bp\u0101, bhikkhave, na tumh\u0101ka\u1e41; ", "sn35.139:1.5" : "te pajahatha. Te vo pah\u012bn\u0101 hit\u0101ya sukh\u0101ya bhavissanti. ", "sn35.139:1.6" : "Sadd\u0101 \u2026 ", "sn35.139:1.7" : "gandh\u0101 \u2026 ", "sn35.139:1.8" : "ras\u0101 \u2026 ", "sn35.139:1.9" : "pho\u1e6d\u1e6dhabb\u0101 \u2026 ", "sn35.139:1.10" : "dhamm\u0101 na tumh\u0101ka\u1e41; te pajahatha. ", "sn35.139:1.11" : "Te vo pah\u012bn\u0101 hit\u0101ya sukh\u0101ya bhavissanti. ", "sn35.139:1.12" : "Seyyath\u0101pi, bhikkhave, ya\u1e41 imasmi\u1e41 jetavane ti\u1e47aka\u1e6d\u1e6dha \u2026pe\u2026 ", "sn35.139:1.13" : "evameva kho, bhikkhave, r\u016bp\u0101 na tumh\u0101ka\u1e41; te pajahatha. ", "sn35.139:1.14" : "Te vo pah\u012bn\u0101 hit\u0101ya sukh\u0101ya bhavissant\u012b\u201dti \u2026. ", "sn35.139:1.15" : "Cha\u1e6d\u1e6dha\u1e41. "} | json_instruct | {"type": "object", "properties": {"sn35.139:0.1": {"type": "string"}, "sn35.139:0.2": {"type": "string"}, "sn35.139:0.3": {"type": "string"}, "sn35.139:1.1": {"type": "string"}, "sn35.139:1.2": {"type": "string"}, "sn35.139:1.3": {"type": "string"}, "sn35.139:1.4": {"type": "string"}, "sn35.139:1.5": {"type": "string"}, "sn35.139:1.6": {"type": "string"}, "sn35.139:1.7": {"type": "string"}, "sn35.139:1.8": {"type": "string"}, "sn35.139:1.9": {"type": "string"}, "sn35.139:1.10": {"type": "string"}, "sn35.139:1.11": {"type": "string"}, "sn35.139:1.12": {"type": "string"}, "sn35.139:1.13": {"type": "string"}, "sn35.139:1.14": {"type": "string"}, "sn35.139:1.15": {"type": "string"}}, "required": ["sn35.139:0.1", "sn35.139:0.2", "sn35.139:0.3", "sn35.139:1.1", "sn35.139:1.2", "sn35.139:1.3", "sn35.139:1.4", "sn35.139:1.5", "sn35.139:1.6", "sn35.139:1.7", "sn35.139:1.8", "sn35.139:1.9", "sn35.139:1.10", "sn35.139:1.11", "sn35.139:1.12", "sn35.139:1.13", "sn35.139:1.14", "sn35.139:1.15"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "request": {"type": "string"}, "request-promise": {"type": "string"}}, "required": ["bluebird", "request", "request-promise"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "moodle-client", "version" : "0.5.2", "description" : "Node.js client for Moodle web services API", "main" : "client.js", "scripts" : {"test" : "mocha test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/mudrd8mz/node-moodle-client.git"}, "keywords" : ["moodle", "api", "webservice", "rest", "json"], "author" : "David Mudr\u00e1k <david@moodle.com>", "license" : "BSD-2-Clause", "bugs" : {"url" : "https://github.com/mudrd8mz/node-moodle-client/issues"}, "homepage" : "https://github.com/mudrd8mz/node-moodle-client#readme", "dependencies" : {"bluebird" : "^3.5.2", "request" : "^2.88.0", "request-promise" : "^4.2.2"}, "devDependencies" : {"mocha" : "^5.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "request": {"type": "string"}, "request-promise": {"type": "string"}}, "required": ["bluebird", "request", "request-promise"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Smear a small amount of frosting onto the flat bottom of a candy kiss. Press onto the flat bottom of the vanilla wafer. Smear a little more frosting onto the flat bottom of a butterscotch chip, and press onto the rounded top of the cookie. Repeat with remaining ingredients. Set aside to dry, about 30 minutes."], "ingredients" : ["1 tablespoon prepared chocolate frosting", "24 milk chocolate candy kisses (such as Hershey's Kisses\u00ae), unwrapped", "24 mini vanilla wafer cookies (such as Nilla\u00ae)", "24 butterscotch chips"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Acorn Candy Cookies", "url" : "http://allrecipes.com/recipe/216459/acorn-candy-cookies/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-84.111792, 41.079145], [-83.996256, 41.079867], [-83.995743, 40.992726], [-84.111421, 40.99207], [-84.111792, 41.079145]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 50523}}]} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "Type", "name" : "Boolean", "href" : "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", "description" : "The Boolean object is an object wrapper for a boolean value.", "refs" : [{"name" : "ECMAScript Language Specification", "href" : "https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-boolean-objects", "description" : "(ECMAScript) # sec-boolean-objects"}]} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"80297": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "80296": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "80295": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "80294": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["80297", "80296", "80295", "80294"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"80297" : {"nama" : "NEHIBE", "dapil" : [91, 9101, 19101, 2910304]}, "80296" : {"nama" : "NEWA", "dapil" : [91, 9101, 19101, 2910304]}, "80295" : {"nama" : "YONGSU DOSOYO", "dapil" : [91, 9101, 19101, 2910304]}, "80294" : {"nama" : "YONGSU SAPARI", "dapil" : [91, 9101, 19101, 2910304]}} | json_instruct | {"type": "object", "properties": {"80297": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "80296": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "80295": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "80294": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["80297", "80296", "80295", "80294"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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": {"6400": {"type": "string"}, "6401": {"type": "string"}, "6398": {"type": "string"}}, "required": ["6400", "6401", "6398"]}, "timeto": {"type": "object", "properties": {"6400": {"type": "number"}, "6401": {"type": "number"}, "6398": {"type": "number"}}, "required": ["6400", "6401", "6398"]}, "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" : 6399, "title" : ["[Blackened Cave, Chamber]"], "description" : ["This giant, underground chamber is filled with stalactites and stalagmites of every size. The sound of dripping water echoes through the grotto, the water collecting in a shallow pool nearby. Strange forms of fungi grow everywhere, adding to the otherworldly atmosphere of this place."], "paths" : ["Obvious exits: southeast, southwest"], "location" : "the Lysierian Hills", "wayto" : {"6400" : "southwest", "6401" : "go stalagmite", "6398" : "southeast"}, "timeto" : {"6400" : 0.2, "6401" : 0.2, "6398" : 0.2}, "image" : "wl-lysierian-1264234799.png", "image_coords" : [414, 465, 424, 475], "tags" : ["some cave moss", "fire rat", "fire cat"]} | 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": {"6400": {"type": "string"}, "6401": {"type": "string"}, "6398": {"type": "string"}}, "required": ["6400", "6401", "6398"]}, "timeto": {"type": "object", "properties": {"6400": {"type": "number"}, "6401": {"type": "number"}, "6398": {"type": "number"}}, "required": ["6400", "6401", "6398"]}, "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#"} |
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": {"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" : 49559, "cartId" : "458312cc-83b5-47df-bf68-4edf1e5ce0b5", "preferredProducts" : [1666, 4236, 1048], "productReviews" : [{"productId" : 1081, "reviewText" : "I saw one of these in Saint Pierre and Miquelon and I bought one.", "reviewDate" : "2016-07-23T14:53:54.7832444+03:00"}, {"productId" : 4996, "reviewText" : "heard about this on bouyon radio, decided to give it a try.", "reviewDate" : "2016-12-21T16:08:20.1877209+02:00"}, {"productId" : 2966, "reviewText" : "This RSS works too well. It buoyantly improves my football by a lot.", "reviewDate" : "2017-04-27T19:28:58.5780358+03:00"}, {"productId" : 668, "reviewText" : "one of my hobbies is theater. and when i'm acting this works great.", "reviewDate" : "2016-08-08T06:57:22.4733556+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "Marika R Dubin"}, {"author" : "Edward W Chang"}], "doi" : "10.1186/1746-160X-2-21", "publication_date" : "2006-07-29", "id" : "EN119555", "url" : "https://pubmed.ncbi.nlm.nih.gov/16872488", "source" : "Head & face medicine", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "We present a case of well-differentiated liposarcoma of the tongue occurring in a 39 year old man, treated with surgical excision. At 14 years of follow-up, the patient remains free of disease."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1990, 12], [1991, 7], [1992, 12], [1993, 14], [1994, 17], [1995, 23], [1996, 34], [1997, 27], [1998, 41], [1999, 49], [2000, 46], [2001, 64], [2002, 51], [2003, 64], [2004, 69], [2005, 82], [2006, 104], [2007, 105], [2008, 80], [2009, 80], [2010, 58], [2011, 52], [2012, 47], [2013, 38], [2014, 33]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"m1" : "\u0627\u06af\u0631 \u0628\u0648\u0627\u0628 \u0648 \u0633\u0631\u0647\u0646\u06af\u0627\u0646 \u0647\u0645 \u0627\u0632 \u062f\u0631\u06af\u0647 \u0628\u0631\u0627\u0646\u0646\u062f\u062a", "m2" : "\u0627\u0632\u0627\u0646 \u0628\u0647\u062a\u0631 \u06a9\u0647 \u062f\u0631 \u067e\u0647\u0644\u0648\u06cc \u0645\u062c\u0647\u0648\u0644\u06cc \u0646\u0634\u0627\u0646\u0646\u062f\u062a"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"command": {"type": "string"}, "output": {"type": "array", "items": {"type": "string"}}, "fact": {"type": "integer"}}, "required": ["command", "output", "fact"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"command" : "vmstat -s || true", "output" : ["4096 bytes per page", "58543 pages managed", "36556 pages free", "2169 pages active", "1700 pages inactive", "0 pages being paged out", "1 pages wired", "4575 pages zeroed", "4 pages reserved for pagedaemon", "6 pages reserved for kernel", "583252 swap pages", "4301 swap pages in use", "393238 page faults", "396884 traps", "81631 interrupts", "138051 cpu context switches", "0 fpu context switches", "62803 software interrupts", "368054 syscalls", "21024 pagein operations", "578 forks", "27 forks where vmspace is shared", "12 kernel map entries", "168249 zeroed page hits", "17892 zeroed page misses", "44 number of times the pagedaemon woke up", "38 revolutions of the clock hand", "140310 pages freed by pagedaemon", "178161 pages scanned by pagedaemon", "0 pages reactivated by pagedaemon", "0 busy pages found by pagedaemon", "33764 total name lookups", "cache hits (68% pos + 2% neg) system 0% per-directory", "deletions 5%, falsehits 0%, toolong 0%", "0 select collisions"], "fact" : 229} | json_instruct | {"type": "object", "properties": {"command": {"type": "string"}, "output": {"type": "array", "items": {"type": "string"}}, "fact": {"type": "integer"}}, "required": ["command", "output", "fact"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "GEDmatch", "description" : "A service providing DNA and genealogical analysis tools", "url" : "https://www.gedmatch.com/"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 40, "line_cd" : 11906, "line_name" : "JR\u65e5\u8c4a\u672c\u7dda(\u9580\u53f8\u6e2f\uff5e\u4f50\u4f2f)", "station_cd" : 1190617, "station_g_cd" : 1190617, "station_name" : "\u690e\u7530", "lon" : 131.057965, "lat" : 33.653377}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "ConnectionStrings": {"type": "object", "properties": {"sage_db": {"type": "string"}}, "required": ["sage_db"]}}, "required": ["Logging", "AllowedHosts", "ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Logging" : {"LogLevel" : {"Default" : "Warning"}}, "AllowedHosts" : "*", "ConnectionStrings" : {"sage_db" : "Server=192.168.0.250;Port=3307;Database=user;Uid=root;Pwd=ga1234;"}} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "ConnectionStrings": {"type": "object", "properties": {"sage_db": {"type": "string"}}, "required": ["sage_db"]}}, "required": ["Logging", "AllowedHosts", "ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "import createHandler from \"./createHandler\";\nimport { baseGestureHandlerProps } from \"./gestureHandlerCommon\";\nexport var PinchGestureHandler = createHandler({\n name: 'PinchGestureHandler',\n allowedProps: baseGestureHandlerProps,\n config: {}\n});", "map" : {"version" : 3, "sources" : ["PinchGestureHandler.ts"], "names" : ["PinchGestureHandler", "createHandler", "name", "allowedProps", "config"], "mappings" : "AAAA,OAAA,aAAA;AACA,SAAA,uBAAA;AAqCA,OAAO,IAAMA,mBAAmB,GAAGC,aAAa,CAG9C;AACAC,EAAAA,IAAI,EADJ,qBAAA;AAEAC,EAAAA,YAAY,EAFZ,uBAAA;AAGAC,EAAAA,MAAM,EAAE;AAHR,CAH8C,CAAzC", "sourcesContent" : ["import createHandler from './createHandler';\nimport {\n BaseGestureHandlerProps,\n baseGestureHandlerProps,\n} from './gestureHandlerCommon';\n\nexport type PinchGestureHandlerEventPayload = {\n /**\n * The scale factor relative to the points of the two touches in screen\n * coordinates.\n */\n scale: number;\n\n /**\n * Position expressed in points along X axis of center anchor point of\n * gesture.\n */\n focalX: number;\n\n /**\n * Position expressed in points along Y axis of center anchor point of\n * gesture.\n */\n focalY: number;\n\n /**\n *\n * Velocity of the pan gesture the current moment. The value is expressed in\n * point units per second.\n */\n velocity: number;\n};\n\nexport interface PinchGestureHandlerProps\n extends BaseGestureHandlerProps<PinchGestureHandlerEventPayload> {}\n\nexport type PinchGestureHandler = typeof PinchGestureHandler;\n// eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file\nexport const PinchGestureHandler = createHandler<\n PinchGestureHandlerProps,\n PinchGestureHandlerEventPayload\n>({\n name: 'PinchGestureHandler',\n allowedProps: baseGestureHandlerProps,\n config: {},\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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"buffertools": {"type": "string"}}, "required": ["buffertools"]}}, "required": ["name", "version", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "test", "version" : "1.0.0", "main" : "server.js", "dependencies" : {"buffertools" : "~2.1.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"buffertools": {"type": "string"}}, "required": ["buffertools"]}}, "required": ["name", "version", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : "tanengnengan", "h" : [{"d" : [{"f" : "\u53c3\u8003\u66f8\uff0c\u6a21\u7bc4\uff0c\u6a23\u672c\uff0c\u85cd\u5716\u3002", "e" : ["\ufff9`Ta~`nengnengan~ `no~ `'Amis~.\ufffa\ufffb\u963f\u7f8e\u65cf\u7684\u53c3\u8003\u66f8\u3002", "\ufff9`Sapisaloma'~ `a~ `ta~`nengnengan~.\ufffa\ufffb\u5efa\u7bc9\u623f\u5c4b\u7684\u85cd\u5716\u3002"]}]}], "stem" : "nengneng"} | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Xiliang Chen": {"type": "string"}}, "required": ["Xiliang Chen"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "private_header_files": {"type": "array", "items": {"type": "string"}}, "preserve_paths": {"type": "string"}, "header_mappings_dir": {"type": "string"}, "requires_arc": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"XLCUtils": {"type": "array", "items": {}}}, "required": ["XLCUtils"]}, "libraries": {"type": "string"}, "xcconfig": {"type": "object", "properties": {"OTHER_LDFLAGS": {"type": "string"}, "HEADER_SEARCH_PATHS": {"type": "string"}, "LIBRARY_SEARCH_PATHS": {"type": "string"}}, "required": ["OTHER_LDFLAGS", "HEADER_SEARCH_PATHS", "LIBRARY_SEARCH_PATHS"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}}, "required": ["ios", "osx"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "source_files", "private_header_files", "preserve_paths", "header_mappings_dir", "requires_arc", "dependencies", "libraries", "xcconfig", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "XJSBinding", "version" : "0.1.1b", "summary" : "Javascript binding for Objective-C. Powered by Spidermonkey JS engine.", "homepage" : "https://github.com/xlc/XJSBinding", "license" : "MIT", "authors" : {"Xiliang Chen" : "xlchen1291@gmail.com"}, "source" : {"git" : "https://github.com/xlc/XJSBinding.git", "tag" : "0.1.1b"}, "source_files" : ["XJSBinding/**/*.{h,hh,m,mm}", "Spidermonkey/**/*.h"], "private_header_files" : ["*Private.h", "*.hh"], "preserve_paths" : "Spidermonkey/**/*", "header_mappings_dir" : "Spidermonkey/include", "requires_arc" : true, "dependencies" : {"XLCUtils" : []}, "libraries" : "z", "xcconfig" : {"OTHER_LDFLAGS" : "-ObjC -ljs_static", "HEADER_SEARCH_PATHS" : "\"${PODS_ROOT}/XJSBinding/Spidermonkey/include\"", "LIBRARY_SEARCH_PATHS" : "\"${PODS_ROOT}/XJSBinding/Spidermonkey/${CONFIGURATION}\""}, "platforms" : {"ios" : "6.0", "osx" : "10.8"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Xiliang Chen": {"type": "string"}}, "required": ["Xiliang Chen"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "private_header_files": {"type": "array", "items": {"type": "string"}}, "preserve_paths": {"type": "string"}, "header_mappings_dir": {"type": "string"}, "requires_arc": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"XLCUtils": {"type": "array", "items": {}}}, "required": ["XLCUtils"]}, "libraries": {"type": "string"}, "xcconfig": {"type": "object", "properties": {"OTHER_LDFLAGS": {"type": "string"}, "HEADER_SEARCH_PATHS": {"type": "string"}, "LIBRARY_SEARCH_PATHS": {"type": "string"}}, "required": ["OTHER_LDFLAGS", "HEADER_SEARCH_PATHS", "LIBRARY_SEARCH_PATHS"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}}, "required": ["ios", "osx"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "source_files", "private_header_files", "preserve_paths", "header_mappings_dir", "requires_arc", "dependencies", "libraries", "xcconfig", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"resourceName": {"type": "string"}, "serviceType": {"type": "string"}}, "required": ["resourceName", "serviceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceName" : "scrumnestuid7d70395", "serviceType" : "imported"} | json_instruct | {"type": "object", "properties": {"resourceName": {"type": "string"}, "serviceType": {"type": "string"}}, "required": ["resourceName", "serviceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : [[[-97.51236, 25.918153], [-97.511446, 25.925862], [-97.502204, 25.924894], [-97.497746, 25.922688], [-97.490783, 25.922158], [-97.491056, 25.914528], [-97.498261, 25.908758], [-97.499461, 25.911958], [-97.499448, 25.915545], [-97.502137, 25.913378], [-97.503368, 25.914929], [-97.504103, 25.914275], [-97.505062, 25.915158], [-97.507362, 25.915358], [-97.507762, 25.916158], [-97.509062, 25.915058], [-97.51236, 25.918153]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 88026}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "embogue", "definition" : "To disembogue; to discharge, as a river, its waters into the sea or another river. [R.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["name", "description", "license", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "spaze/fa-extract", "description" : "A tool to extract only used icons from Font Awesome JS/SVG icons sets", "license" : ["MIT"], "type" : "project"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["name", "description", "license", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"14264173": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "pageprops": {"type": "object", "properties": {"defaultsort": {"type": "string"}, "page_image_free": {"type": "string"}, "wikibase-shortdesc": {"type": "string"}, "wikibase_item": {"type": "string"}}, "required": ["defaultsort", "page_image_free", "wikibase-shortdesc", "wikibase_item"]}}, "required": ["pageid", "ns", "title", "pageprops"]}}, "required": ["14264173"]}}, "required": ["normalized", "pages"]}}, "required": ["batchcomplete", "query"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"batchcomplete" : "", "query" : {"normalized" : [{"from" : "Daniel_Dhers", "to" : "Daniel Dhers"}], "pages" : {"14264173" : {"pageid" : 14264173, "ns" : 0, "title" : "Daniel Dhers", "pageprops" : {"defaultsort" : "Dhers, Daniel", "page_image_free" : "Daniel_Dhers_in_2012.png", "wikibase-shortdesc" : "Venezuelan bicycle motocross rider", "wikibase_item" : "Q5216969"}}}}} | json_instruct | {"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"14264173": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "pageprops": {"type": "object", "properties": {"defaultsort": {"type": "string"}, "page_image_free": {"type": "string"}, "wikibase-shortdesc": {"type": "string"}, "wikibase_item": {"type": "string"}}, "required": ["defaultsort", "page_image_free", "wikibase-shortdesc", "wikibase_item"]}}, "required": ["pageid", "ns", "title", "pageprops"]}}, "required": ["14264173"]}}, "required": ["normalized", "pages"]}}, "required": ["batchcomplete", "query"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"files.exclude": {"type": "object", "properties": {"**/.git": {"type": "boolean"}, "**/.svn": {"type": "boolean"}, "**/.hg": {"type": "boolean"}, "**/CVS": {"type": "boolean"}, "**/.DS_Store": {"type": "boolean"}, "**/Thumbs.db": {"type": "boolean"}, "**/node_modules": {"type": "boolean"}, "**/coverage": {"type": "boolean"}}, "required": ["**/.git", "**/.svn", "**/.hg", "**/CVS", "**/.DS_Store", "**/Thumbs.db", "**/node_modules", "**/coverage"]}, "sonarlint.connectedMode.project": {"type": "object", "properties": {"connectionId": {"type": "string"}, "projectKey": {"type": "string"}}, "required": ["connectionId", "projectKey"]}, "editor.formatOnSave": {"type": "boolean"}, "sonarlint.disableTelemetry": {"type": "boolean"}, "sonarlint.output.showAnalyzerLogs": {"type": "boolean"}, "sonarlint.output.showVerboseLogs": {"type": "boolean"}, "files.associations": {"type": "object", "properties": {".scafflater": {"type": "string"}}, "required": [".scafflater"]}, "editor.defaultFormatter": {"type": "string"}, "[javascript]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll.eslint": {"type": "boolean"}}, "required": ["source.fixAll.eslint"]}, "eslint.validate": {"type": "array", "items": {"type": "string"}}, "jest.jestCommandLine": {"type": "string"}}, "required": ["files.exclude", "sonarlint.connectedMode.project", "editor.formatOnSave", "sonarlint.disableTelemetry", "sonarlint.output.showAnalyzerLogs", "sonarlint.output.showVerboseLogs", "files.associations", "editor.defaultFormatter", "[javascript]", "editor.codeActionsOnSave", "eslint.validate", "jest.jestCommandLine"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files.exclude" : {"**/.git" : true, "**/.svn" : true, "**/.hg" : true, "**/CVS" : true, "**/.DS_Store" : true, "**/Thumbs.db" : true, "**/node_modules" : true, "**/coverage" : true}, "sonarlint.connectedMode.project" : {"connectionId" : "", "projectKey" : ""}, "editor.formatOnSave" : true, "sonarlint.disableTelemetry" : true, "sonarlint.output.showAnalyzerLogs" : true, "sonarlint.output.showVerboseLogs" : true, "files.associations" : {".scafflater" : "jsonc"}, "editor.defaultFormatter" : "esbenp.prettier-vscode", "[javascript]" : {"editor.defaultFormatter" : "esbenp.prettier-vscode"}, "editor.codeActionsOnSave" : {"source.fixAll.eslint" : true}, "eslint.validate" : ["javascript"], "jest.jestCommandLine" : "npm test --"} | json_instruct | {"type": "object", "properties": {"files.exclude": {"type": "object", "properties": {"**/.git": {"type": "boolean"}, "**/.svn": {"type": "boolean"}, "**/.hg": {"type": "boolean"}, "**/CVS": {"type": "boolean"}, "**/.DS_Store": {"type": "boolean"}, "**/Thumbs.db": {"type": "boolean"}, "**/node_modules": {"type": "boolean"}, "**/coverage": {"type": "boolean"}}, "required": ["**/.git", "**/.svn", "**/.hg", "**/CVS", "**/.DS_Store", "**/Thumbs.db", "**/node_modules", "**/coverage"]}, "sonarlint.connectedMode.project": {"type": "object", "properties": {"connectionId": {"type": "string"}, "projectKey": {"type": "string"}}, "required": ["connectionId", "projectKey"]}, "editor.formatOnSave": {"type": "boolean"}, "sonarlint.disableTelemetry": {"type": "boolean"}, "sonarlint.output.showAnalyzerLogs": {"type": "boolean"}, "sonarlint.output.showVerboseLogs": {"type": "boolean"}, "files.associations": {"type": "object", "properties": {".scafflater": {"type": "string"}}, "required": [".scafflater"]}, "editor.defaultFormatter": {"type": "string"}, "[javascript]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll.eslint": {"type": "boolean"}}, "required": ["source.fixAll.eslint"]}, "eslint.validate": {"type": "array", "items": {"type": "string"}}, "jest.jestCommandLine": {"type": "string"}}, "required": ["files.exclude", "sonarlint.connectedMode.project", "editor.formatOnSave", "sonarlint.disableTelemetry", "sonarlint.output.showAnalyzerLogs", "sonarlint.output.showVerboseLogs", "files.associations", "editor.defaultFormatter", "[javascript]", "editor.codeActionsOnSave", "eslint.validate", "jest.jestCommandLine"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"_ERR": {"type": "string"}, "degree": {"type": "integer"}, "rot": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["_ERR", "degree", "rot"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_ERR" : "TODO flawed by round-off error", "degree" : 13, "rot" : [[0.008079971892246251, 0.02601677610219242, 0.02402221389330093], [0.012892029137773462, 0.018883631298672997, 0.12208083167169181], [0.016560237922093254, 0.13163917121880553, 0.0228747050990019], [0.01902313586889703, 0.02073152855313473, 0.2807377966083899], [0.01935965748032325, 0.47664289518446956, 0.5048494561957967], [0.019583798359223862, 0.30238695445079383, 0.01997575278832142], [0.03028149382596899, 0.10153977972399897, 0.11902821597585499], [0.03816406647986149, 0.24961442779733523, 0.10358996690547731], [0.038199338317111094, 0.10202924054306213, 0.2768882573635156], [0.04084715289185106, 0.22678927602203702, 0.23372837421755474], [0.0410856959865649, 0.43740951791107846, 0.09599209332033956], [0.04925675517141869, 0.38075857916224454, 0.22785535711866886]]} | json_instruct | {"type": "object", "properties": {"_ERR": {"type": "string"}, "degree": {"type": "integer"}, "rot": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["_ERR", "degree", "rot"], "$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"}, "request": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "selector": {"type": "string"}, "extractor": {"type": "object", "properties": {"types": {"type": "array", "items": {"type": "string"}}, "params": {"type": "object", "properties": {"includeIfEmpty": {"type": "boolean"}}, "required": ["includeIfEmpty"]}}, "required": ["types", "params"]}}, "required": ["name", "selector", "extractor"]}}, "format": {"type": "string"}}, "required": ["name", "request", "fields", "format"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "najnakup.sk", "request" : {"url" : "http://najnakup.sk/televizory"}, "fields" : [{"name" : "link1", "selector" : ".item-title a", "extractor" : {"types" : ["href", "text"], "params" : {"includeIfEmpty" : false}}}, {"name" : "text1", "selector" : "#list-view-cont p", "extractor" : {"types" : ["text"], "params" : {"regexp" : "", "includeIfEmpty" : false}}}, {"name" : "text2", "selector" : ".cost strong", "extractor" : {"types" : ["text"], "params" : {"regexp" : "", "includeIfEmpty" : false}}}], "format" : "csv"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "selector": {"type": "string"}, "extractor": {"type": "object", "properties": {"types": {"type": "array", "items": {"type": "string"}}, "params": {"type": "object", "properties": {"includeIfEmpty": {"type": "boolean"}}, "required": ["includeIfEmpty"]}}, "required": ["types", "params"]}}, "required": ["name", "selector", "extractor"]}}, "format": {"type": "string"}}, "required": ["name", "request", "fields", "format"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "default_locale": {"type": "string"}, "description": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}}, "required": ["manifest_version", "name", "version", "default_locale", "description", "content_scripts", "background"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "name" : "Page Saver", "version" : "0.1", "default_locale" : "en", "description" : "A chrome extension that will save your pages so you can view them offline.", "content_scripts" : [{"matches" : ["<all_urls>"], "js" : ["content.js"]}], "background" : {"scripts" : ["background.js"]}} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "default_locale": {"type": "string"}, "description": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}}, "required": ["manifest_version", "name", "version", "default_locale", "description", "content_scripts", "background"], "$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": {"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" : 66694, "cartId" : "f41bf650-3297-4230-a2eb-2e4c279db1e0", "preferredProducts" : [1562, 4549], "productReviews" : [{"productId" : 2201, "reviewText" : "i use it daily when i'm in my courthouse.", "reviewDate" : "2017-09-21T09:54:26.7486701+03:00"}, {"productId" : 3527, "reviewText" : "heard about this on original pilipino music radio, decided to give it a try.", "reviewDate" : "2019-08-15T19:13:46.2634656+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "LSNW02", "lang" : "de", "description" : "\nLohn- und Einkommensteuer\n\n\nErl\u00e4uterung f\u00fcr folgende Statistik(en):\n73111 Lohn- und Einkommensteuerstatistik\n\nBegriffsinhalt:\nLohn- und Einkommensteuer\n\nHierbei handelt es sich um die Jahreslohnsteuer (bei den\nLohnsteuerpflichtigen, die weder zur Einkommensteuer-Ver-\nanlagung verpflichtet waren, noch einen Antrag zur Veran-\nlagung zur Einkommensteuer (Antragsveranlagung) gestellt\nhaben) bzw. um die festgesetzte Einkommensteuer (bei ver-\nanlagten Lohn- und Einkommensteuerpflichtigen).", "name" : "Lohn- und Einkommensteuer", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {}}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"oid" : "st_2001-12-12", "hafta" : 26, "buyukIkramiyeKazananIl" : "", "cekilisTarihi" : "12/12/2001", "cekilisTuru" : "SANS_TOPU", "rakamlar" : "01#06#15#26#29#11", "rakamlarNumaraSirasi" : "1 - 6 - 15 - 26 - 29 - <b>11</b>", "devretti" : true, "devirSayisi" : 0, "bilenKisiler" : [{"oid" : "st_2001-12-12_51", "kisiBasinaDusenIkramiye" : 295957.865, "kisiSayisi" : 0, "tur" : "$5_1_BILEN"}, {"oid" : "st_2001-12-12_5", "kisiBasinaDusenIkramiye" : 968.795, "kisiSayisi" : 47, "tur" : "$5_BILEN"}, {"oid" : "st_2001-12-12_41", "kisiBasinaDusenIkramiye" : 91.485, "kisiSayisi" : 498, "tur" : "$4_1_BILEN"}, {"oid" : "st_2001-12-12_4", "kisiBasinaDusenIkramiye" : 10.825, "kisiSayisi" : 6309, "tur" : "$4_BILEN"}, {"oid" : "st_2001-12-12_31", "kisiBasinaDusenIkramiye" : 3.835, "kisiSayisi" : 15098, "tur" : "$3_1_BILEN"}, {"oid" : "st_2001-12-12_3", "kisiBasinaDusenIkramiye" : 0.78, "kisiSayisi" : 217978, "tur" : "$3_BILEN"}, {"oid" : "st_2001-12-12_2", "kisiBasinaDusenIkramiye" : 1.23, "kisiSayisi" : 140332, "tur" : "$2_1_BILEN"}, {"oid" : "st_2001-12-12_11", "kisiBasinaDusenIkramiye" : 0.545, "kisiSayisi" : 518205, "tur" : "$1_1_BILEN"}], "buyukIkrKazananIlIlceler" : []} | json_instruct | {"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {}}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler"], "$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": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 63813, "cartId" : "3c28480e-8ed9-4c2c-9c14-cb22705e0cb4", "preferredProducts" : [3854, 578, 1790, 2432, 3319, 2189, 586, 2303, 1642, 1629], "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "430725114001", "text" : "\u6843\u82b1\u5c45\u59d4\u4f1a"}, {"id" : "430725114002", "text" : "\u7fd8\u671b\u5634\u5c45\u59d4\u4f1a"}, {"id" : "430725114202", "text" : "\u6843\u82b1\u6e90\u6751\u59d4\u4f1a"}, {"id" : "430725114207", "text" : "\u9ec4\u571f\u5761\u6751\u59d4\u4f1a"}, {"id" : "430725114211", "text" : "\u6c64\u5bb6\u5c71\u6751\u59d4\u4f1a"}, {"id" : "430725114214", "text" : "\u864e\u5f62\u6751\u59d4\u4f1a"}, {"id" : "430725114216", "text" : "\u91d1\u76d8\u6751\u59d4\u4f1a"}, {"id" : "430725114220", "text" : "\u5b98\u5e84\u6751\u59d4\u4f1a"}, {"id" : "430725114224", "text" : "\u9a6c\u5bb6\u576a\u6751\u59d4\u4f1a"}, {"id" : "430725114236", "text" : "\u767d\u9cde\u6d32\u6751\u59d4\u4f1a"}, {"id" : "430725114237", "text" : "\u6e05\u6c5f\u94fa\u6751\u59d4\u4f1a"}, {"id" : "430725114238", "text" : "\u5370\u5bb6\u94fa\u6751\u59d4\u4f1a"}, {"id" : "430725114239", "text" : "\u5d07\u4e49\u6751\u59d4\u4f1a"}, {"id" : "430725114240", "text" : "\u6e14\u7236\u6751\u59d4\u4f1a"}, {"id" : "430725114241", "text" : "\u6843\u4ed9\u5cad\u6751\u59d4\u4f1a"}, {"id" : "430725114242", "text" : "\u4e94\u67f3\u6e56\u6751\u59d4\u4f1a"}, {"id" : "430725114243", "text" : "\u6b66\u9675\u6e14\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "string"}, "blog": {"type": "null"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user" : "MrChristofferson", "repos" : 1, "login" : "MrChristofferson", "id" : 12105346, "avatar_url" : "https://avatars0.githubusercontent.com/u/12105346?v=3", "url" : "https://api.github.com/users/MrChristofferson", "html_url" : "https://github.com/MrChristofferson", "followers_url" : "https://api.github.com/users/MrChristofferson/followers", "following_url" : "https://api.github.com/users/MrChristofferson/following{/other_user}", "gists_url" : "https://api.github.com/users/MrChristofferson/gists{/gist_id}", "starred_url" : "https://api.github.com/users/MrChristofferson/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/MrChristofferson/subscriptions", "organizations_url" : "https://api.github.com/users/MrChristofferson/orgs", "repos_url" : "https://api.github.com/users/MrChristofferson/repos", "events_url" : "https://api.github.com/users/MrChristofferson/events{/privacy}", "received_events_url" : "https://api.github.com/users/MrChristofferson/received_events", "type" : "User", "site_admin" : false, "name" : "Chris", "company" : "@FarmBot ", "blog" : null, "location" : "Phoenix", "email" : "chris@typeofchris.com", "hireable" : null, "bio" : null, "public_repos" : 72, "public_gists" : 0, "followers" : 25, "following" : 26, "created_at" : "2015-04-24T21:27:48Z", "updated_at" : "2017-02-27T22:37:25Z"} | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "string"}, "blog": {"type": "null"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "integer"}, "rarity": {"type": "string"}, "vendor_value": {"type": "integer"}, "game_types": {"type": "array", "items": {"type": "string"}}, "flags": {"type": "array", "items": {"type": "string"}}, "restrictions": {"type": "array", "items": {}}, "id": {"type": "integer"}, "chat_link": {"type": "string"}, "icon": {"type": "string"}, "details": {"type": "object", "properties": {"minipet_id": {"type": "integer"}}, "required": ["minipet_id"]}}, "required": ["name", "description", "type", "level", "rarity", "vendor_value", "game_types", "flags", "restrictions", "id", "chat_link", "icon", "details"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Mini White Raptor Hatchling", "description" : "Juvenile Elonian raptors rely more on cuteness than leaping ability.<br>Combine a Silver, Gold, and White Raptor with 20 Unidentified Dyes in the Mystic Forge to create an Ice Raptor.", "type" : "MiniPet", "level" : 0, "rarity" : "Rare", "vendor_value" : 50, "game_types" : ["PvpLobby", "Activity", "Wvw", "Dungeon", "Pve"], "flags" : ["NoSalvage", "NoSell", "DeleteWarning"], "restrictions" : [], "id" : 85158, "chat_link" : "[&AgGmTAEA]", "icon" : "https://render.guildwars2.com/file/0E3FA520327A965CFB4D2FC6AE0408D0313FD19D/1821126.png", "details" : {"minipet_id" : 590}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "integer"}, "rarity": {"type": "string"}, "vendor_value": {"type": "integer"}, "game_types": {"type": "array", "items": {"type": "string"}}, "flags": {"type": "array", "items": {"type": "string"}}, "restrictions": {"type": "array", "items": {}}, "id": {"type": "integer"}, "chat_link": {"type": "string"}, "icon": {"type": "string"}, "details": {"type": "object", "properties": {"minipet_id": {"type": "integer"}}, "required": ["minipet_id"]}}, "required": ["name", "description", "type", "level", "rarity", "vendor_value", "game_types", "flags", "restrictions", "id", "chat_link", "icon", "details"], "$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"}, "manifest_version": {"type": "integer"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "include_globs": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "include_globs", "js", "run_at"]}}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "manifest_version", "content_scripts", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Google Search Shortcuts", "version" : "0.1", "description" : "Use the number row on the keyboard to quickly open a search result", "manifest_version" : 2, "content_scripts" : [{"matches" : ["https://*/*"], "include_globs" : ["https://www.google.*/search*"], "js" : ["gss.js"], "run_at" : "document_end"}], "permissions" : ["activeTab"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "manifest_version": {"type": "integer"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "include_globs": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "include_globs", "js", "run_at"]}}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "manifest_version", "content_scripts", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"sn2.26:1.1": {"type": "string"}, "sn2.26:2.1": {"type": "string"}, "sn2.26:3.1": {"type": "string"}, "sn2.26:4.1": {"type": "string"}, "sn2.26:5.1": {"type": "string"}, "sn2.26:6.1": {"type": "string"}, "sn2.26:7.1": {"type": "string"}}, "required": ["sn2.26:1.1", "sn2.26:2.1", "sn2.26:3.1", "sn2.26:4.1", "sn2.26:5.1", "sn2.26:6.1", "sn2.26:7.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sn2.26:1.1" : "csp1ed12.61, csp2ed12.61, ms12S1_528, msdiv107, pts-vp-pli2ed1.143, sya15.88, vri23.76", "sn2.26:2.1" : "ms12S1_529", "sn2.26:3.1" : "cck15.84, dr15.84, ms12S1_530, ndp12.60, pts-vp-pli1ed1.62, pts-vp-pli2ed1.144", "sn2.26:4.1" : "bj13.120, ms12S1_531, sya15.89", "sn2.26:5.1" : "cck15.85, ms12S1_532, pts-vp-pli2ed1.145", "sn2.26:6.1" : "ms12S1_533", "sn2.26:7.1" : "csp1ed12.62, csp2ed12.62, dr15.85, ms12S1_534, vri23.77"} | json_instruct | {"type": "object", "properties": {"sn2.26:1.1": {"type": "string"}, "sn2.26:2.1": {"type": "string"}, "sn2.26:3.1": {"type": "string"}, "sn2.26:4.1": {"type": "string"}, "sn2.26:5.1": {"type": "string"}, "sn2.26:6.1": {"type": "string"}, "sn2.26:7.1": {"type": "string"}}, "required": ["sn2.26:1.1", "sn2.26:2.1", "sn2.26:3.1", "sn2.26:4.1", "sn2.26:5.1", "sn2.26:6.1", "sn2.26:7.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"languageCode": {"type": "string"}}, "required": ["languageCode"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"languageCode" : "fr"} | json_instruct | {"type": "object", "properties": {"languageCode": {"type": "string"}}, "required": ["languageCode"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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": {"planning-permission-status": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site-address": {"type": "string"}, "deliverable": {"type": "string"}, "name": {"type": "string"}, "hectares": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "site-plan-url": {"type": "string"}, "site": {"type": "string"}, "planning-permission-date": {"type": "string"}, "notes": {"type": "string"}, "ownership-status": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-history": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["planning-permission-status", "planning-permission-type", "site-address", "deliverable", "name", "hectares", "maximum-net-dwellings", "start-date", "site-plan-url", "site", "planning-permission-date", "notes", "ownership-status", "minimum-net-dwellings", "planning-permission-history", "organisation", "point", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.087952, 53.491481]}, "properties" : {"planning-permission-status" : "permissioned", "planning-permission-type" : "full planning permission", "site-address" : "30 Romney Street, Ashton-under-Lyne, OL6 9HU", "deliverable" : "yes", "name" : "H-STMICH-064", "hectares" : "0.01", "maximum-net-dwellings" : "6", "start-date" : "2017-12-04", "site-plan-url" : "https://www.tameside.gov.uk/planning/brownfieldregister/h-stmich-064.pdf", "site" : "H-STMICH-064", "planning-permission-date" : "2015-11-10", "notes" : "Planning permission reference 15/00853/FUL. Construction has not commenced. End terraced property formally used as a retail shop and storage.. Gross addition of 6 apartments.", "ownership-status" : "not owned by a public authority", "minimum-net-dwellings" : "6", "planning-permission-history" : "https://public.tameside.gov.uk/plan/f422planapp.asp", "organisation" : "local-authority-eng:TAM", "point" : "POINT(-2.087952 53.491481)", "slug" : "/brownfield-land/local-authority-eng/TAM/H-STMICH-064", "entity" : 496202, "entry-date" : "2017-12-04"}} | 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": {"planning-permission-status": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site-address": {"type": "string"}, "deliverable": {"type": "string"}, "name": {"type": "string"}, "hectares": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "site-plan-url": {"type": "string"}, "site": {"type": "string"}, "planning-permission-date": {"type": "string"}, "notes": {"type": "string"}, "ownership-status": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-history": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["planning-permission-status", "planning-permission-type", "site-address", "deliverable", "name", "hectares", "maximum-net-dwellings", "start-date", "site-plan-url", "site", "planning-permission-date", "notes", "ownership-status", "minimum-net-dwellings", "planning-permission-history", "organisation", "point", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Sooper", "symbol" : "SOOP", "logoURI" : "https://raw.githubusercontent.com/LennySOOP/Token/main/Logo.png", "decimals" : 0, "address" : "3XBgEzdisbD9ypcRFE1UNS5AeSHbzS2qXb9Ta6aM1pFZ", "chainId" : 101, "tags" : ["social-token"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "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" : "doomtree:block/warded_concrete"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"FIELD1": {"type": "integer"}, "key": {"type": "string"}, "star_name": {"type": "string"}, "planet_letter": {"type": "string"}, "discovery_method": {"type": "string"}, "pl_pnum": {"type": "integer"}, "orbital_period": {"type": "number"}, "semi_major": {"type": "string"}, "orbital_eccentricity": {"type": "string"}, "star_temp": {"type": "integer"}, "star_radius": {"type": "number"}, "planet_temp": {"type": "string"}, "radius": {"type": "number"}, "discovery_year": {"type": "integer"}, "light_years": {"type": "number"}}, "required": ["FIELD1", "key", "star_name", "planet_letter", "discovery_method", "pl_pnum", "orbital_period", "semi_major", "orbital_eccentricity", "star_temp", "star_radius", "planet_temp", "radius", "discovery_year", "light_years"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"FIELD1" : 2313, "key" : "Kepler-1485_b", "star_name" : "Kepler-1485", "planet_letter" : "b", "discovery_method" : "Transit", "pl_pnum" : 1, "orbital_period" : 19.9157725, "semi_major" : "NA", "orbital_eccentricity" : "NA", "star_temp" : 6087, "star_radius" : 1.12, "planet_temp" : "NA", "radius" : 1.47, "discovery_year" : 2016, "light_years" : 1793.858}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"FIELD1": {"type": "integer"}, "key": {"type": "string"}, "star_name": {"type": "string"}, "planet_letter": {"type": "string"}, "discovery_method": {"type": "string"}, "pl_pnum": {"type": "integer"}, "orbital_period": {"type": "number"}, "semi_major": {"type": "string"}, "orbital_eccentricity": {"type": "string"}, "star_temp": {"type": "integer"}, "star_radius": {"type": "number"}, "planet_temp": {"type": "string"}, "radius": {"type": "number"}, "discovery_year": {"type": "integer"}, "light_years": {"type": "number"}}, "required": ["FIELD1", "key", "star_name", "planet_letter", "discovery_method", "pl_pnum", "orbital_period", "semi_major", "orbital_eccentricity", "star_temp", "star_radius", "planet_temp", "radius", "discovery_year", "light_years"]}, "$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": {"prepublish": {"type": "string"}, "test": {"type": "string"}}, "required": ["prepublish", "test"]}, "bin": {"type": "string"}, "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"}, "dependencies": {"type": "object", "properties": {"nib": {"type": "string"}, "stylus": {"type": "string"}, "browserify": {"type": "string"}, "ekho": {"type": "string"}, "boo": {"type": "string"}, "iris": {"type": "string"}, "express": {"type": "string"}, "clotho": {"type": "string"}, "prelude-ls": {"type": "string"}, "moros": {"type": "string"}, "marked": {"type": "string"}, "docopt": {"type": "string"}, "jade": {"type": "string"}, "wrench": {"type": "string"}, "glob": {"type": "string"}}, "required": ["nib", "stylus", "browserify", "ekho", "boo", "iris", "express", "clotho", "prelude-ls", "moros", "marked", "docopt", "jade", "wrench", "glob"]}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "papyr", "version" : "0.1.1", "description" : "A single-page web app for visualising API references.", "main" : "index.js", "scripts" : {"prepublish" : "make all", "test" : "echo \"Error: no test specified\" && exit 1"}, "bin" : "./bin/papyr", "repository" : {"type" : "git", "url" : "git://github.com/killdream/papyr.git"}, "keywords" : ["api", "documentation", "docs", "reference"], "author" : "Quildreen \"Sorella\" Motta <quildreen@gmail.com>", "license" : "MIT", "dependencies" : {"nib" : "~0.9.1", "stylus" : "~0.32.0", "browserify" : "~1.17.3", "ekho" : "~0.3.0", "boo" : "~1.2.4", "iris" : "~0.2.3", "express" : "~3.1.0", "clotho" : "~0.1.2", "prelude-ls" : "~0.6.0", "moros" : "~0.3.5", "marked" : "~0.2.8", "docopt" : "~0.4.0", "jade" : "~0.28.1", "wrench" : "~1.4.4", "glob" : "~3.1.20"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}, "test": {"type": "string"}}, "required": ["prepublish", "test"]}, "bin": {"type": "string"}, "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"}, "dependencies": {"type": "object", "properties": {"nib": {"type": "string"}, "stylus": {"type": "string"}, "browserify": {"type": "string"}, "ekho": {"type": "string"}, "boo": {"type": "string"}, "iris": {"type": "string"}, "express": {"type": "string"}, "clotho": {"type": "string"}, "prelude-ls": {"type": "string"}, "moros": {"type": "string"}, "marked": {"type": "string"}, "docopt": {"type": "string"}, "jade": {"type": "string"}, "wrench": {"type": "string"}, "glob": {"type": "string"}}, "required": ["nib", "stylus", "browserify", "ekho", "boo", "iris", "express", "clotho", "prelude-ls", "moros", "marked", "docopt", "jade", "wrench", "glob"]}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1998, "sex" : "F", "n" : 12, "prop" : 6.19e-06}, {"year" : 1999, "sex" : "F", "n" : 21, "prop" : 0}, {"year" : 2000, "sex" : "F", "n" : 27, "prop" : 0}, {"year" : 2001, "sex" : "F", "n" : 34, "prop" : 0}, {"year" : 2002, "sex" : "F", "n" : 44, "prop" : 0}, {"year" : 2003, "sex" : "F", "n" : 53, "prop" : 0}, {"year" : 2004, "sex" : "F", "n" : 58, "prop" : 0}, {"year" : 2005, "sex" : "F", "n" : 63, "prop" : 0}, {"year" : 2006, "sex" : "F", "n" : 82, "prop" : 0}, {"year" : 2007, "sex" : "F", "n" : 97, "prop" : 0}, {"year" : 2008, "sex" : "F", "n" : 77, "prop" : 0}, {"year" : 2009, "sex" : "F", "n" : 130, "prop" : 0.0001}, {"year" : 2009, "sex" : "M", "n" : 5, "prop" : 2.36e-06}, {"year" : 2010, "sex" : "F", "n" : 141, "prop" : 0.0001}, {"year" : 2011, "sex" : "F", "n" : 179, "prop" : 0.0001}, {"year" : 2012, "sex" : "F", "n" : 164, "prop" : 0.0001}, {"year" : 2012, "sex" : "M", "n" : 6, "prop" : 2.96e-06}, {"year" : 2013, "sex" : "F", "n" : 161, "prop" : 0.0001}, {"year" : 2013, "sex" : "M", "n" : 8, "prop" : 3.97e-06}, {"year" : 2014, "sex" : "F", "n" : 165, "prop" : 0.0001}, {"year" : 2015, "sex" : "F", "n" : 153, "prop" : 0.0001}, {"year" : 2016, "sex" : "F", "n" : 141, "prop" : 0.0001}, {"year" : 2017, "sex" : "F", "n" : 133, "prop" : 0.0001}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "apiId": {"type": "string"}, "createdBy": {"type": "string"}, "state": {"type": "string"}, "createdOn": {"type": "integer"}, "enabled": {"type": "boolean"}}, "required": ["id", "apiId", "createdBy", "state", "createdOn", "enabled"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "837ed285-bff1-4ac4-9441-af631c675eed", "apiId" : "01ecde65-7335-4cbf-a1bf-6fc2250515e2", "createdBy" : "638bab22-7856-4410-9881-91a6d5c2be55", "state" : "approved", "createdOn" : 1631190469821, "enabled" : true}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "apiId": {"type": "string"}, "createdBy": {"type": "string"}, "state": {"type": "string"}, "createdOn": {"type": "integer"}, "enabled": {"type": "boolean"}}, "required": ["id", "apiId", "createdBy", "state", "createdOn", "enabled"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"pirates": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "currentOdds": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "openingOdds": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "winners": {"type": "array", "items": {"type": "integer"}}, "foods": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "round": {"type": "integer"}}, "required": ["pirates", "currentOdds", "openingOdds", "winners", "foods", "round"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pirates" : [[6, 9, 19, 20], [3, 2, 1, 13], [12, 5, 14, 15], [17, 8, 7, 18], [4, 16, 10, 11]], "currentOdds" : [[1, 13, 13, 2, 4], [1, 13, 5, 2, 3], [1, 13, 13, 9, 2], [1, 2, 13, 4, 2], [1, 2, 2, 13, 2]], "openingOdds" : [[1, 13, 13, 2, 3], [1, 13, 5, 2, 3], [1, 13, 10, 7, 2], [1, 2, 13, 4, 2], [1, 3, 3, 13, 2]], "winners" : [4, 3, 4, 1, 1], "foods" : [[14, 19, 13, 31, 34, 23, 20, 39, 28, 36], [35, 36, 7, 14, 30, 25, 18, 2, 13, 34], [30, 39, 31, 35, 19, 22, 28, 34, 2, 8], [9, 12, 21, 31, 2, 3, 40, 13, 33, 10], [13, 14, 34, 11, 29, 35, 28, 19, 22, 37]], "round" : 6039} | json_instruct | {"type": "object", "properties": {"pirates": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "currentOdds": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "openingOdds": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "winners": {"type": "array", "items": {"type": "integer"}}, "foods": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "round": {"type": "integer"}}, "required": ["pirates", "currentOdds", "openingOdds", "winners", "foods", "round"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : "Overview: the movies in BingeWorthy are the ones currently in theaters. New movies will be added over the coming weeks. The big day of release of course is Christmas Day. Not sure how it will evolve after that. The immediate goal is to find out what people think of movies in almost realtime, as they roll out through the theaters. Also included are new releases on Netflix and other streaming services as well as featured releases from previous years. I wanted to be sure people had something to rate on their first visit. ", "created" : "Wed, 13 Dec 2017 14:44:44 GMT", "type" : "outline", "image" : "http://scripting.com/images/2017/12/08/popcorn.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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"depend": {"type": "array", "items": {"type": "string"}}}, "required": ["depend"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"depend" : ["7ea817cc-9703-4490-b868-d37e0e24c721"]} | json_instruct | {"type": "object", "properties": {"depend": {"type": "array", "items": {"type": "string"}}}, "required": ["depend"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"display": {"type": "object", "properties": {"icon": {"type": "object", "properties": {"item": {"type": "string"}, "nbt": {"type": "string"}}, "required": ["item", "nbt"]}, "title": {"type": "object", "properties": {"translate": {"type": "string"}}, "required": ["translate"]}, "description": {"type": "object", "properties": {"translate": {"type": "string"}}, "required": ["translate"]}}, "required": ["icon", "title", "description"]}, "parent": {"type": "string"}, "criteria": {"type": "object", "properties": {"criteria_0": {"type": "object", "properties": {"trigger": {"type": "string"}, "conditions": {"type": "object", "properties": {"parttype": {"type": "string"}, "variable": {"type": "object", "properties": {"type": {"type": "string"}, "operator": {"type": "string"}, "input": {"type": "object", "properties": {"0": {"type": "object", "properties": {"type": {"type": "string"}, "operator": {"type": "string"}, "valuetype": {"type": "string"}}, "required": ["type", "operator", "valuetype"]}, "1": {"type": "object", "properties": {"valuetype": {"type": "string"}}, "required": ["valuetype"]}}, "required": ["0", "1"]}}, "required": ["type", "operator", "input"]}}, "required": ["parttype", "variable"]}}, "required": ["trigger", "conditions"]}}, "required": ["criteria_0"]}}, "required": ["display", "parent", "criteria"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"display" : {"icon" : {"item" : "integrateddynamics:variable", "nbt" : "{\"_type\":\"operator\",\"_id\":1,\"operatorName\":\"operator.operators.integrateddynamics.arithmetic.addition.name\",\"variableIds\":[I;1,1]}"}, "title" : {"translate" : "advancement.integrateddynamics.dynamic_additions"}, "description" : {"translate" : "advancement.integrateddynamics.dynamic_additions.desc"}}, "parent" : "integrateddynamics:logic_operations/logic_programming", "criteria" : {"criteria_0" : {"trigger" : "integrateddynamics:part_variable_driven", "conditions" : {"parttype" : "display_panel", "variable" : {"type" : "operator", "operator" : "operator.operators.integrateddynamics.operator.apply.name", "input" : {"0" : {"type" : "operator", "operator" : "operator.operators.integrateddynamics.operator.apply.name", "valuetype" : "valuetype.valuetypes.integrateddynamics.operator.name"}, "1" : {"valuetype" : "valuetype.valuetypes.integrateddynamics.integer.name"}}}}}}} | json_instruct | {"type": "object", "properties": {"display": {"type": "object", "properties": {"icon": {"type": "object", "properties": {"item": {"type": "string"}, "nbt": {"type": "string"}}, "required": ["item", "nbt"]}, "title": {"type": "object", "properties": {"translate": {"type": "string"}}, "required": ["translate"]}, "description": {"type": "object", "properties": {"translate": {"type": "string"}}, "required": ["translate"]}}, "required": ["icon", "title", "description"]}, "parent": {"type": "string"}, "criteria": {"type": "object", "properties": {"criteria_0": {"type": "object", "properties": {"trigger": {"type": "string"}, "conditions": {"type": "object", "properties": {"parttype": {"type": "string"}, "variable": {"type": "object", "properties": {"type": {"type": "string"}, "operator": {"type": "string"}, "input": {"type": "object", "properties": {"0": {"type": "object", "properties": {"type": {"type": "string"}, "operator": {"type": "string"}, "valuetype": {"type": "string"}}, "required": ["type", "operator", "valuetype"]}, "1": {"type": "object", "properties": {"valuetype": {"type": "string"}}, "required": ["valuetype"]}}, "required": ["0", "1"]}}, "required": ["type", "operator", "input"]}}, "required": ["parttype", "variable"]}}, "required": ["trigger", "conditions"]}}, "required": ["criteria_0"]}}, "required": ["display", "parent", "criteria"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "rarity", "category", "materialtype", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "M\u00f3ng Vu\u1ed1t B\u1eafc Phong", "description" : "M\u1ed9t ch\u00fat b\u0103ng l\u1ea5y t\u1eeb tr\u00ean ng\u01b0\u1eddi Vua S\u00f3i B\u1eafc Phong.\\nN\u01a1i n\u00e0y t\u1eebng c\u00f3 gi\u00f3 b\u1eafc l\u1ea1nh gi\u00e1 th\u1ed5i qua, khi\u1ebfn cho ng\u01b0\u1eddi ta l\u1ea1nh bu\u1ed1t da khi bay. Hi\u1ec7n nay s\u1ee9c m\u1ea1nh Vua S\u00f3i tuy kh\u00f4ng \u0111\u01b0\u1ee3c nh\u01b0 tr\u01b0\u1edbc, nh\u01b0ng v\u1eabn \u0111\u1ee7 \u0111\u1ec3 khi\u1ebfn n\u01a1i n\u00e0y \u0111\u00f3ng b\u0103ng.", "rarity" : "5", "category" : "AVATAR_MATERIAL", "materialtype" : "Nguy\u00ean Li\u1ec7u B\u1ed3i D\u01b0\u1ee1ng Nh\u00e2n V\u1eadt", "source" : ["Th\u01b0\u1edfng khi\u00eau chi\u1ebfn S\u00f3i B\u1eafc Phong c\u1ea5p 70 tr\u1edf l\u00ean"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "rarity", "category", "materialtype", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array", "items": {"type": "string"}}}, "required": ["answers", "centerLetter", "letterString", "outerLetters", "pangrams", "validLetters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"answers" : ["airvac", "arvo", "avid", "avocado", "avoid", "cava", "caviar", "civic", "corvid", "davidia", "diva", "divi", "dividivi", "divo", "ovoid", "riva", "rivo", "vair", "vara", "varia", "varicoid", "varroa", "vicar", "virid", "viroid", "viva", "vivaria", "vivda", "vivid", "vivo", "voar", "void", "voodoo", "vraic"], "centerLetter" : "v", "letterString" : "vacdior", "outerLetters" : ["a", "c", "d", "i", "o", "r"], "pangrams" : ["varicoid"], "validLetters" : ["a", "c", "d", "i", "o", "r", "v"]} | json_instruct | {"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array", "items": {"type": "string"}}}, "required": ["answers", "centerLetter", "letterString", "outerLetters", "pangrams", "validLetters"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : [[[-118.201893, 33.94429], [-118.201634, 33.946003], [-118.199381, 33.945763], [-118.198711, 33.950247], [-118.187418, 33.949073], [-118.188414, 33.942324], [-118.201893, 33.94429]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 6161}}]} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Into a medium saucepan drain the juice from the pineapple. To the juice add egg, sugar and flour. Cook over medium heat, stirring constantly, until thickened. Let cool.", "In a medium bowl combine pineapple chunks and cheese.", "Pour the cooled juice mixture over the pineapple and cheese; mix well."], "image" : "https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=face&w=1200&h=628&url=https%3A%2F%2Fimages.media-allrecipes.com%2Fuserphotos%2F6026963.jpg", "ingredients" : ["1 (15 ounce) can pineapple chunks", "1 pound processed American cheese, cubed", "1 egg", "\u00be cup white sugar", "2 tablespoons all-purpose flour"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Pineapple Cheese Salad", "url" : "http://allrecipes.com/recipe/22507/pineapple-cheese-salad/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"m1" : "\u0631\u0648\u0632\u06cc \u06a9\u0647 \u0633\u0631 \u0632\u0644\u0641 \u0686\u0648 \u0686\u0648\u06af\u0627\u0646 \u062f\u0627\u0631\u06cc", "m2" : "\u0622\u0633\u06cc\u0645\u0647 \u062f\u0644\u0645 \u0686\u0648 \u06af\u0648\u06cc \u0645\u06cc\u062f\u0627\u0646 \u062f\u0627\u0631\u06cc"}, "1" : {"m1" : "\u0622\u0646 \u0634\u0628 \u06a9\u0647 \u0647\u0645\u06cc \u0631\u0627\u06cc \u0628\u0647 \u0647\u062c\u0631\u0627\u0646 \u062f\u0627\u0631\u06cc", "m2" : "\u0622\u0641\u0627\u0642 \u0628\u0647 \u0686\u0634\u0645 \u0645\u0646 \u0686\u0648 \u0632\u0646\u062f\u0627\u0646 \u062f\u0627\u0631\u06cc"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"category": {"type": "string"}, "images": {"type": "array", "items": {}}, "name": {"type": "string"}, "summary": {"type": "string"}}, "required": ["category", "images", "name", "summary"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"category" : "Ruins", "images" : [], "name" : "Hardhome", "summary" : "<p><b>Hardhome</b> is a ruined <a href=\"http://awoiaf.westeros.org/index.php/Free_folk\" title=\"Free folk\">free folk</a> settlement that lies north <a href=\"http://awoiaf.westeros.org/index.php/Beyond_the_Wall\" title=\"Beyond the Wall\">beyond the Wall</a>. It is on the tip of the peninsula <a href=\"http://awoiaf.westeros.org/index.php/Storrold%27s_Point\" title=\"Storrold's Point\">Storrold's Point</a> on the <a href=\"http://awoiaf.westeros.org/index.php/Shivering_Sea\" title=\"Shivering Sea\">Shivering Sea</a>.<sup id=\"cite_ref-0\" class=\"reference\"><a href=\"http://awoiaf.westeros.org/index.php/Hardhome#cite_note-0\">[1]</a></sup>"} | json_instruct | {"type": "object", "properties": {"category": {"type": "string"}, "images": {"type": "array", "items": {}}, "name": {"type": "string"}, "summary": {"type": "string"}}, "required": ["category", "images", "name", "summary"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "author": {"type": "string"}, "github": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "mainfile": {"type": "string"}, "lastversion": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "author", "github", "homepage", "description", "mainfile", "lastversion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bitcoinjs", "assets" : [{"files" : ["bitcoinjs-min.js"], "version" : "0.1.3", "mainfile" : "bitcoinjs-min.js"}, {"files" : ["bitcoinjs-min.js"], "version" : "0.2.0", "mainfile" : "bitcoinjs-min.js"}, {"files" : ["bitcoinjs-min.js"], "version" : "0.2.0-1", "mainfile" : "bitcoinjs-min.js"}], "versions" : ["0.2.0", "0.2.0-1", "0.1.3"], "zip" : "bitcoinjs.zip", "author" : "Stefan Thomas", "github" : "https://github.com/bitcoinjs/bitcoinjs-lib", "homepage" : "http://bitcoinjs.org", "description" : "Client-side Bitcoin JavaScript library", "mainfile" : "bitcoinjs-min.js", "lastversion" : "0.2.0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "author": {"type": "string"}, "github": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "mainfile": {"type": "string"}, "lastversion": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "author", "github", "homepage", "description", "mainfile", "lastversion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "code_type_vote": {"type": "string"}, "libelle_type_vote": {"type": "string"}, "demandeur": {"type": "string"}, "libelle": {"type": "string"}, "nb_votants": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "code_type_vote", "libelle_type_vote", "demandeur", "libelle", "nb_votants", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "VTANR5L15V2414", "code_type_vote" : "SPO", "libelle_type_vote" : "scrutin public ordinaire", "demandeur" : "Pr\u00e9sident du groupe \"Libert\u00e9s et Territoires\"", "libelle" : "l'amendement n\u00b0 930 de M. Lambert apr\u00e8s l'article 10 du projet de loi relatif \u00e0 la lutte contre le gaspillage et \u00e0 l'\u00e9conomie circulaire (premi\u00e8re lecture).", "nb_votants" : "45", "date" : "2019-12-19"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "code_type_vote": {"type": "string"}, "libelle_type_vote": {"type": "string"}, "demandeur": {"type": "string"}, "libelle": {"type": "string"}, "nb_votants": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "code_type_vote", "libelle_type_vote", "demandeur", "libelle", "nb_votants", "date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid 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"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"1722": {"type": "string"}, "1724": {"type": "string"}}, "required": ["1722", "1724"]}, "timeto": {"type": "object", "properties": {"1722": {"type": "number"}, "1724": {"type": "number"}}, "required": ["1722", "1724"]}, "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" : 1723, "title" : ["[Trail Ascent]"], "description" : ["A ledge underneath an outcropping presents a shelter from the wind. Ice clings to the edges of the mountain all around, but the floor of the ledge is remarkably dry. Here and there tiny piles of snow have collected, pushed about by small wind eddies, but the snow is sparse. Most of the snow is probably released at the lower altitudes as the clouds are driven up the side of the mountain. A trail, not very wide but fairly flat, moves off to the north to disappear in between two rising peaks."], "paths" : ["Obvious paths: north, down"], "location" : "Gossamer Valley", "wayto" : {"1722" : "down", "1724" : "north"}, "timeto" : {"1722" : 0.2, "1724" : 0.2}, "image" : "en-sapphire-1264234799.png", "image_coords" : [365, 732, 375, 742], "tags" : ["sweetfern stalk", "sassafras leaf", "some pennyroyal stem", "some valerian 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": {"1722": {"type": "string"}, "1724": {"type": "string"}}, "required": ["1722", "1724"]}, "timeto": {"type": "object", "properties": {"1722": {"type": "number"}, "1724": {"type": "number"}}, "required": ["1722", "1724"]}, "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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"source": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "host_port": {"type": "string"}, "service_name": {"type": "string"}, "db_service_name": {"type": "string"}}, "required": ["username", "password", "host_port", "service_name", "db_service_name"]}}, "required": ["type", "config"]}, "sink": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {}, "required": []}}, "required": ["type", "config"]}, "metadata_server": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {"api_endpoint": {"type": "string"}, "auth_provider_type": {"type": "string"}}, "required": ["api_endpoint", "auth_provider_type"]}}, "required": ["type", "config"]}}, "required": ["source", "sink", "metadata_server"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : {"type" : "metabase", "config" : {"username" : "username", "password" : "password", "host_port" : "host:port", "service_name" : "local_metabase", "db_service_name" : "Optional - Create Lineage by adding relevant Database Service Name"}}, "sink" : {"type" : "metadata-rest", "config" : {}}, "metadata_server" : {"type" : "metadata-server", "config" : {"api_endpoint" : "http://localhost:8585/api", "auth_provider_type" : "no-auth"}}} | json_instruct | {"type": "object", "properties": {"source": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "host_port": {"type": "string"}, "service_name": {"type": "string"}, "db_service_name": {"type": "string"}}, "required": ["username", "password", "host_port", "service_name", "db_service_name"]}}, "required": ["type", "config"]}, "sink": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {}, "required": []}}, "required": ["type", "config"]}, "metadata_server": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {"api_endpoint": {"type": "string"}, "auth_provider_type": {"type": "string"}}, "required": ["api_endpoint", "auth_provider_type"]}}, "required": ["type", "config"]}}, "required": ["source", "sink", "metadata_server"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"styles": {"type": "boolean"}}, "required": ["styles"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "461b0d85ce7574d1e60f", "c" : {"styles" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"styles": {"type": "boolean"}}, "required": ["styles"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "idiocrasis", "definition" : "Idiocracy."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.