input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"t...
{"edges" : [[2, 4], [25, 4], [37, 4], [18, 25], [36, 19], [18, 4], [11, 20], [24, 4], [16, 4], [4, 6], [34, 4], [13, 15], [17, 4], [9, 5], [4, 31], [4, 24], [4, 41], [25, 4], [4, 38], [23, 4], [3, 4], [27, 0], [38, 4], [29, 4], [26, 4], [4, 39], [4, 8], [4, 32], [4, 12], [33, 4], [4, 35], [4, 30], [4, 6], [42, 4], [25,...
json_instruct
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1966, 5], [1979, 5], [1982, 5], [1984, 7], [1985, 13], [1986, 5], [1988, 5], [1994, 6]]
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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}...
{"name" : "byu-web-component-loader-generator", "version" : "0.1.8", "description" : "Generates a bootstrap file that ensures that the proper Web Component polyfills are loaded", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https...
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": "s...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"packages": {"type": "object", "properties": {"iron-router": {"type": "object", "properties": {}, "required": []}, "roles": {"type": "object", "properties": {}, "required": []}, "moment": {"type": "object", "proper...
{"packages" : {"iron-router" : {}, "roles" : {}, "moment" : {}, "mocha-web-velocity" : {}, "velocity" : {}, "jasmine-unit" : {}}}
json_instruct
{"type": "object", "properties": {"packages": {"type": "object", "properties": {"iron-router": {"type": "object", "properties": {}, "required": []}, "roles": {"type": "object", "properties": {}, "required": []}, "moment": {"type": "object", "properties": {}, "required": []}, "mocha-web-velocity": {"type": "object", "pr...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"desc": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}}, "required": ["desc", "id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"desc" : "", "id" : "card.faction_token:base/naalu_collective", "name" : "Naalu Collective Faction Token"}
json_instruct
{"type": "object", "properties": {"desc": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}}, "required": ["desc", "id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[548.6012812481753, 383.4460699775144], [571.0997628430937, 389.75944988936885], [581.6880479644354, 413.05367715632065], [583.8057049887037, 440.58321847180923], [582.9585904783855, 465.7108786543645], [576.6056194055805, 478.41682079997463]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$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": "a...
{"name" : "git-playback", "description" : "A git command to play back file history.", "license" : null, "starNum" : 78, "folkNum" : 9, "watchNum" : 78, "topic" : []}
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": {}}}, "required": ["name", "description", "license", "starNum...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"jwtPrivateKey": {"type": "string"}, "emailSecretKey": {"type": "string"}, "emailUser": {"type": "string"}, "emailPass": {"type": "string"}, "emailService": {"type": "string"}, "url": {"type": "string"}}, "required":...
{"jwtPrivateKey" : "12345", "emailSecretKey" : "12345", "emailUser" : "", "emailPass" : "", "emailService" : "", "url" : "http://localhost:3000"}
json_instruct
{"type": "object", "properties": {"jwtPrivateKey": {"type": "string"}, "emailSecretKey": {"type": "string"}, "emailUser": {"type": "string"}, "emailPass": {"type": "string"}, "emailService": {"type": "string"}, "url": {"type": "string"}}, "required": ["jwtPrivateKey", "emailSecretKey", "emailUser", "emailPass", "emailS...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "he...
{"name" : "mern_boilerplate", "version" : "1.0.0", "description" : "MERN Stack application boilerplate", "main" : "server.js", "scripts" : {"start" : "node server.js", "test" : "echo \"Error: no test specified\" && exit 1", "heroku-postbuild" : "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build -...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "heroku-postbuild": {"type": "string"}}, "required": ["start",...
Based on the schema below, produce a valid JSON object: {"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": {"typ...
{"user" : "philogb", "repos" : 3, "login" : "philogb", "id" : 71751, "avatar_url" : "https://avatars3.githubusercontent.com/u/71751?v=3", "url" : "https://api.github.com/users/philogb", "html_url" : "https://github.com/philogb", "followers_url" : "https://api.github.com/users/philogb/followers", "following_url" : "http...
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"}, "gist...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"cancel": {"type": "string"}, "my_test_app": {"type": "string"}, "start_conversation": {"type": "string"}, "start_conversation_with_prompt": {"type": "string"}}, "required": ["cancel", "my_test_app", "start_conversation", "s...
{"cancel" : "cancel", "my_test_app" : "estappen min", "start_conversation" : "Snakke med {{app_name}}", "start_conversation_with_prompt" : "Snakk med {{app_name}} om {{prompt}}"}
json_instruct
{"type": "object", "properties": {"cancel": {"type": "string"}, "my_test_app": {"type": "string"}, "start_conversation": {"type": "string"}, "start_conversation_with_prompt": {"type": "string"}}, "required": ["cancel", "my_test_app", "start_conversation", "start_conversation_with_prompt"], "$schema": "http://json-schem...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "polyfilled by libcore-parser-lalr"}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"1": {"type": "number"}, "2": {"type": "number"}, "3": {"type": "number"}, "4": {"type": "integer"}, "5": {"type": "integer"}, "6": {"type": "number"}, "7": {"type": "number"}, "8": {"type": "number"}, "9": {"type": "number"}, "1...
{"1" : 3093.63892, "2" : 1091.378781, "3" : 11724.251387, "4" : 0, "5" : 0, "6" : 12191.934947, "7" : 3664.565755, "8" : 1746.410574, "9" : 3651.044116, "10" : 3397.856487, "11" : 7128.649836, "12" : 0, "13" : 12879.412084, "14" : 2306.73615, "15" : 0, "16" : 0, "17" : 0, "18" : 0, "19" : 0, "20" : 9690.203614, "21" : ...
json_instruct
{"type": "object", "properties": {"1": {"type": "number"}, "2": {"type": "number"}, "3": {"type": "number"}, "4": {"type": "integer"}, "5": {"type": "integer"}, "6": {"type": "number"}, "7": {"type": "number"}, "8": {"type": "number"}, "9": {"type": "number"}, "10": {"type": "number"}, "11": {"type": "number"}, "12": {...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {...
{"id" : 1031, "title" : ["[Western DragonSpine, Slope]"], "description" : ["Mist clings to the grey rock face, the air calm and cool. Patches of lichen and moss cover the rock, blending a darker grey into the rocky surroundings. A narrow ledge leads to the southeast, while all other directions are blocked by the stee...
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": {"1032":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "support": {"type": "object...
{"name" : "venveo/hubspot-toolbox", "description" : "Turnkey HubSpot integration for CraftCMS", "type" : "craft-plugin", "version" : "1.0.0-beta3", "keywords" : ["craft", "cms", "craftcms", "craft-plugin", "hubspot toolbox"], "support" : {"docs" : "https://github.com/venveo/hubspot-toolbox/blob/master/README.md", "issu...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "support": {"type": "object", "properties": {"docs": {"type": "string"}, "issues": {"type": "string"}}, ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"celoRewards": {"type": "string"}, "totalEarnings": {"type": "string"}, "totalMessages": {"type": "string"}, "turnMobileVerifyingOn": {"type": "string"}, "haveNotEarnedAnyRewardsYet": {"type": "string"}, "noFeedActiv...
{"celoRewards" : "Celo Rewards", "totalEarnings" : "Total Earnings", "totalMessages" : "Total Messages", "turnMobileVerifyingOn" : "Turn on verifying to earn Celo Dollar Rewards", "haveNotEarnedAnyRewardsYet" : "You have not earned any rewards yet", "noFeedActivity" : "You will see your rewards here", "depositToPerson"...
json_instruct
{"type": "object", "properties": {"celoRewards": {"type": "string"}, "totalEarnings": {"type": "string"}, "totalMessages": {"type": "string"}, "turnMobileVerifyingOn": {"type": "string"}, "haveNotEarnedAnyRewardsYet": {"type": "string"}, "noFeedActivity": {"type": "string"}, "depositToPerson": {"type": "string"}, "veri...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"baseUrl": {"type": "string"}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}}, "required": ["NODE_ENV"]}, "integrationFolder": {"type": "string"}}, "required": ["baseUrl", "env", "int...
{"baseUrl" : "http://localhost:8080", "env" : {"NODE_ENV" : "test"}, "integrationFolder" : "./src/tests/e2e"}
json_instruct
{"type": "object", "properties": {"baseUrl": {"type": "string"}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}}, "required": ["NODE_ENV"]}, "integrationFolder": {"type": "string"}}, "required": ["baseUrl", "env", "integrationFolder"], "$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": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "653127101201", "text" : "\u5df4\u624e\u7ed3\u7c73\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "653127101202", "text" : "\u5df4\u683c\u4e07\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "653127101203", "text" : "\u543e\u5c14\u66fc\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "653127101204", "text" : "\u4e9a\u80e1\u6728\u4...
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"relay_coil_v": {"type": "number"}, "mcu_temp_c": {"type": "number"}, "pilot_high_v": {"type": "number"}, "input_thermopile_uv": {"type": "integer"}, "prox_v": {"type": "number"}, "session_s": {"type": "integer"}, ...
{"relay_coil_v" : 11.9, "mcu_temp_c" : 23.8, "pilot_high_v" : 12.0, "input_thermopile_uv" : -114, "prox_v" : 0.0, "session_s" : 0, "vehicle_current_a" : 0.2, "uptime_s" : 813935, "handle_temp_c" : 11.0, "config_status" : 5, "currentC_a" : 0.0, "currentN_a" : 0.0, "currentA_a" : 0.2, "voltageB_v" : 5.5, "pcba_temp_c" : ...
json_instruct
{"type": "object", "properties": {"relay_coil_v": {"type": "number"}, "mcu_temp_c": {"type": "number"}, "pilot_high_v": {"type": "number"}, "input_thermopile_uv": {"type": "integer"}, "prox_v": {"type": "number"}, "session_s": {"type": "integer"}, "vehicle_current_a": {"type": "number"}, "uptime_s": {"type": "integer"}...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "github": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "directions": {"type": "array", "items": {"type": "string"}}, "image...
{"name" : "Warm Water", "description" : "Everyone's favorite drink, not too hot, not too cold: just right.", "github" : "KevinLu", "ingredients" : ["Water", "Dihydrogen Monoxide"], "directions" : ["Take your water and put it in the kettle (as much or as little as you want).", "Wait for the water to boil or reach your p...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "github": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "source": {"type": "string"}, "keywords...
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": "array", "items": {"type": "array", "items": {"type": "array",...
{"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[0.087487, 51.562182], [0.087867, 51.562273], [0.08796, 51.562071], [0.087349, 51.561932], [0.087265, 51.562106], [0.087455, 51.562146], [0.087442, 51.562171], [0.087487, 51.562182]]]]}, "properties" : {"reference" : "BRLBR0046", "organisati...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"deps": {"type": "string"}, "css": {"type": "st...
{"name" : "chart-editor", "version" : "1.2.0", "description" : "AnyChart Chart Editor utility", "main" : "index.js", "scripts" : {"deps" : "sh ./bin/build.sh deps", "css" : "sh ./bin/build.sh css", "bundle" : "sh ./bin/bundle.sh", "bundleAll" : "sh ./bin/bundle.sh all", "bundleQlik" : "sh ./bin/bundle.sh qlik", "bundle...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"deps": {"type": "string"}, "css": {"type": "string"}, "bundle": {"type": "string"}, "bundleAll": {"type": "string"}, "...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr...
{"type" : "Feature", "id" : "way/157261734", "properties" : {"addr:city" : "Burglauer", "addr:housenumber" : "11", "addr:postcode" : "97724", "addr:street" : "Asternweg", "building" : "yes", "craft" : "beekeeper", "name" : "Lauertaler Imkerei", "id" : "way/157261734"}, "geometry" : {"type" : "Point", "coordinates" : [1...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "building": {"type": "string"}, "craft"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"scriptId": {"type": "string"}, "projectId": {"type": "string"}}, "required": ["scriptId", "projectId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"scriptId" : "19pyfcIrbn-5a-Sfq1rirm5Fo1zPI6R54k8BkM5vNYe_eIunQdnkZF2np", "projectId" : "project-id-7870082327070595221"}
json_instruct
{"type": "object", "properties": {"scriptId": {"type": "string"}, "projectId": {"type": "string"}}, "required": ["scriptId", "projectId"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["pycaret"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "...
{"name" : "restapi-mongo-docker", "version" : "1.0.0", "description" : "REST API with MongoDB on docker", "main" : "index.js", "scripts" : {"start" : "docker-compose -f docker/docker-compose.yml up -d", "build" : "docker-compose -f docker/docker-compose.yml build"}, "dependencies" : {"body-parser" : "^1.18.3", "express...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "dependencies": {"type": "o...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Coronha dobr\u00e1vel PMM \"ULSS\" para MCX/MPX", "ShortName" : "ULSS", "Description" : "ULSS (ultralight skeleton stock) \u00e9 uma coronha dobr\u00e1vel para MCX/MPX fabricada por Parker Mountain Machine."}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "s...
{"name" : "react-eventbrite-popup-checkout", "version" : "1.0.3", "description" : "A React component for the Eventbrite checkout widget", "main" : "dist/main.js", "repository" : {"type" : "git", "url" : "git://github.com/vanstartupweek/react-eventbrite-popup-checkout.git"}, "bugs" : {"url" : "https://github.com/vanstar...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "pr...
Using the following JSON schema, generate a compatible JSON instance: {"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...
{"id" : 101888553, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "dcb566e7da2268b7dbb5bb278385f06b", "wof:id" : 101888553, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.47672166202904, 47.18995153842059, 5.48601583418304, 47.19634920998641...
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": ["...
Create an example JSON object that satisfies this schema: {"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" : "Feedspot", "description" : "A feed-reading service.", "url" : "http://www.feedspot.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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "nul...
{"contract" : "0x65e86385dfbc1218894634c5130f4caafb6109bb", "tool" : "mythril", "start" : 1563626292.961209, "end" : 1563626302.3914888, "duration" : 9.430279731750488, "analysis" : {"error" : null, "issues" : [], "success" : true}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "bo...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"alexa-app": {"type": "string"}, "express": ...
{"name" : "MusicPlayer", "version" : "0.1.0", "description" : "Simple Alexa skill to play music from your own music library", "main" : "musicApp.js", "dependencies" : {"alexa-app" : "^4.0.1", "express" : "^4.15.3"}, "keywords" : ["amazon", "alexa", "echo", "music", "media"], "author" : "Reza Nasiri", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"alexa-app": {"type": "string"}, "express": {"type": "string"}}, "required": ["alexa-app", "express"]}, "keywords"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "string"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "episodes": {"ty...
{"id" : 9888, "title" : "Shinryaku! Ika Musume Specials", "title_en" : "Squid Girl Specials", "title_jp" : "\u4fb5\u7565!\u30a4\u30ab\u5a18 \u30df\u30cb\u30a4\u30ab\u5a18\u306e\u756a\u5916\u7de8", "picture" : "http://cdn.myanimelist.net/images/anime/7/27364.jpg", "synopsis" : "\"Mini Ika-Musume\" side-story episodes.",...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "string"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "episodes": {"type": "integer"}, "tags": {"type": "array", "items": {"type"...
Generate sample JSON data that conforms to the following schema definition: {"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"}, "...
{"id" : 1126040021, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "f5e7163be6b4ab6fd9c0fae18df7c9fb", "wof:id" : 1126040021, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-0.31946, 46.123, -0.31946, 46.123], "geometry" : {"coordinates" : [-0.31946, 46.123],...
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": ["...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e"...
{"h" : [{"d" : [{"e" : ["\ufff9`Mararima~ `ko~ `faloco'~ `ningra~.\ufffa\ufffb\u4ed6\u5167\u5fc3\u5f88\u6cae\u55aa\u3002"], "f" : "\u6709\u6c23\u7121\u529b\uff0c\u6cae\u55aa\u3002"}]}], "stem" : "rarima", "t" : "mararima"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"},...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build...
{"name" : "1-100-poisson-disc", "version" : "1.0.0", "description" : "Contando de 1 a 100 usando o algoritmo Poisson Disc Sampling", "main" : "index.js", "scripts" : {"build" : "canvas-sketch index.js --open"}, "author" : "Felipe Turcheti", "license" : "ISC", "dependencies" : {"canvas-sketch" : "^0.7.1", "poisson-disk-...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dep...
The schema below describes a JSON structure. Generate a valid example: {"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" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-76.863789, 39.196963], [-76.858504, 39.203943], [-76.846088, 39.225525], [-76.841236, 39.223251], [-76.83352, 39.213298], [-76.834566, 39.213061], [-76.834793, 39.209534], [-76.831375, 39.207771], [-76.834079, 39.204496]...
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": "numbe...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"},...
{"name" : "NORTHEAST MEDICAL GROUP", "tel" : "67838638", "fax" : "67835638", "licensee" : "NORTHEAST (SIMEI) MEDICAL CENTRE PTE. LTD.", "licensePeriod" : "28/09/2016 to 15/02/2019", "licenseClass" : "[ 2 Years ( 2A ) ]", "hciCode" : "9404094", "address" : "30 SIMEI STREET 3, SIMEI MRT STATION, #02-01 Singapore 529888",...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"},...
[{"namaKab" : "PARIGI MOUTONG", "originalFilename" : "8_1.jpg", "namaPartai" : "Partai Keadilan Sejahtera", "id" : 137402, "noUrut" : 1, "nama" : "MOHAMAD FADLI, S.Pd", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PARIGI MOUTONG", "originalFilename" : "8_2.jpg", "namaPartai" : "Partai Keadilan Sejahtera", "id" : ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country":...
{"_id" : "brewery_Raccoon_Lodge_and_Brewpub_/_Cascade_Brewing", "name" : "Raccoon Lodge and Brewpub / Cascade Brewing", "address" : ["7424 SW Beaverton-Hillsdale Hwy"], "city" : "Portland", "state" : "Oregon", "code" : "97225", "country" : "United States", "phone" : "(503) 296-0110", "website" : "http://www.raclodge.co...
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"900658493": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658494": {"type": "object", "properties":...
{"900658493" : {"nama" : "TPS 1", "dapil" : [6102, 16107, 2610603]}, "900658494" : {"nama" : "TPS 2", "dapil" : [6102, 16107, 2610603]}, "900658495" : {"nama" : "TPS 3", "dapil" : [6102, 16107, 2610603]}, "900658496" : {"nama" : "TPS 4", "dapil" : [6102, 16107, 2610603]}}
json_instruct
{"type": "object", "properties": {"900658493": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658494": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"variantName": {"type": "string"}, "type": {"type": "string"}, "props": {"type": "object", "properties": {"data-umyid": {"type": "string"}, "name": {"type": "string"}}, "required": ["data-...
[{"variantName" : "default", "type" : "Slider", "props" : {"data-umyid" : "127", "name" : "slider1"}, "children" : []}, {"variantName" : "full-fledged", "type" : "Slider", "props" : {"name" : "slider", "defaultValue" : 0.5, "step" : 0.1, "value" : 0.3, "data-umyid" : "129"}, "children" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"variantName": {"type": "string"}, "type": {"type": "string"}, "props": {"type": "object", "properties": {"data-umyid": {"type": "string"}, "name": {"type": "string"}}, "required": ["data-umyid", "name"]}, "children": {"type": "array", "items": {}}}, "require...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"users" : 350, "id" : "BD-H"}, {"users" : 1412, "id" : "BD-G"}, {"users" : 585, "id" : "BD-F"}, {"users" : 1126, "id" : "BD-E"}, {"users" : 1235, "id" : "BD-D"}, {"users" : 31349, "id" : "BD-C"}, {"users" : 1929, "id" : "BD-B"}, {"users" : 151, "id" : "BD-A"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "cite_error": {"type": "string"}, "cite_references_link_accessibility_label": {"type": "string"}...
{"@metadata" : {"authors" : ["Palmtree222", "Ville Ullgren"]}, "cite_error" : "refrenssivirhe: $1", "cite_references_link_accessibility_label" : "Siirry yl\u00f6s", "cite_references_link_many_accessibility_label" : "Siirry yl\u00f6s:"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "cite_error": {"type": "string"}, "cite_references_link_accessibility_label": {"type": "string"}, "cite_references_link_many_accessibility_label": {"type...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "em...
{"name" : "callwoola/php-split", "description" : "php ZH", "authors" : [{"name" : "Neo", "email" : "call@woola.net"}], "require" : {"php" : ">=5.3.0", "illuminate/support" : "~4.0"}, "require-dev" : {"phpunit/phpunit" : "3.7.*"}, "autoload" : {"psr-4" : {"phpSplit\\" : "src/"}}, "extra" : {"branch-alias" : {"dev-master...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "i...
{"directions" : ["Preheat oven to 300 degrees F (150 degrees C). Toast sesame seeds on pan, stirring occasionally, until lightly golden (about 10 minutes). Set aside. Increase oven temperature to 350 degrees F (175 degrees C). Grease cookie sheets.", "In large mixing bowl, combine flour, baking powder, salt, brown ...
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"}}, "r...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "require...
{"latest_version" : ["0.10.0"], "meta" : {"description" : "A secure updater framework for Python", "homepage" : "https://www.updateframework.com", "license" : ""}, "versions" : {"0.10.0" : {"sha256" : "34042699053ded003c7029c4c450f7ba464cb3a154c4947002432471b392f73e", "url" : "https://files.pythonhosted.org/packages/cb...
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "text": {"type": "string"}, "date": {"type": "string"}, "retweet": {"type": "integer"}, "like": {"t...
[{"id" : "1098150764306784256", "url" : "https://twitter.com/bunnyss6/status/1098150764306784256", "username" : "", "text" : "\u0e40\u0e23\u0e32\u0e2d\u0e22\u0e32\u0e01\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e2a.\u0e1e\u0e23\u0e23\u0e04\u0e2d\u0e19\u0e32\u0e04\u0e15\u0e43\u0e2b\u0e21\u0e48\u0e19\u0e30 \u0e41\u0e15\u0e48...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "text": {"type": "string"}, "date": {"type": "string"}, "retweet": {"type": "integer"}, "like": {"type": "integer"}}, "required": ["id", "url", "username", "text", "date", "r...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "specialname": {"type": "string"}, "type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "specialname", "type", "category",...
{"name" : "Nobushi: Jintou-Ban", "specialname" : "\"Samanosuke Sombrio\"", "type" : "COMMON", "category" : "Outras fac\u00e7\u00f5es humanas", "description" : "Samurai que caiu no banditismo. Embora sejam chamados de Nobushi, eles n\u00e3o t\u00eam uma organiza\u00e7\u00e3o centralizada.\nTendo perseguido o caminho de ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "specialname": {"type": "string"}, "type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "specialname", "type", "category", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"docs": {"type": "array", "items": {"type": "object", "properties": {"group": {"type": "string"}, "options": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "addr": {"type": ...
{"docs" : [{"group" : "\u7528\u4f8b\u793a\u4f8b", "options" : [{"name" : "\u672c\u5730\u793a\u4f8b(\u82f1\u6587)", "addr" : "http://localhost:8080/proxy/static/docs.json"}, {"name" : "\u672c\u5730\u793a\u4f8b(\u4e2d\u6587)", "addr" : "http://localhost:8080/proxy/static/demo.json"}]}, {"group" : "apiface-example", "opti...
json_instruct
{"type": "object", "properties": {"docs": {"type": "array", "items": {"type": "object", "properties": {"group": {"type": "string"}, "options": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "addr": {"type": "string"}}, "required": ["name", "addr"]}}}, "required": ["group", "opt...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"item.spookytime.pumpkin_candy": {"type": "string"}, "item.spookytime.rare_candy": {"type": "string"}, "item.spookytime.winged_strawberry_candy": {"type": "string"}, "block.spookytime.chiseled_tainted_sandston...
{"item.spookytime.pumpkin_candy" : "Pumpkin Sweet", "item.spookytime.rare_candy" : "Rare Sweet", "item.spookytime.winged_strawberry_candy" : "Winged Strawberry Sweet", "block.spookytime.chiseled_tainted_sandstone" : "Chiselled Tainted Sandstone", "block.spookytime.chiseled_tainted_stone_bricks" : "Chiselled Tainted Sto...
json_instruct
{"type": "object", "properties": {"item.spookytime.pumpkin_candy": {"type": "string"}, "item.spookytime.rare_candy": {"type": "string"}, "item.spookytime.winged_strawberry_candy": {"type": "string"}, "block.spookytime.chiseled_tainted_sandstone": {"type": "string"}, "block.spookytime.chiseled_tainted_stone_bricks": {"t...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"...
{"nom" : "Allex", "circ" : "3\u00e8me circonscription", "dpt" : "Dr\u00f4me", "inscrits" : 2144, "abs" : 1263, "votants" : 881, "blancs" : 95, "nuls" : 31, "exp" : 755, "res" : [{"nuance" : "REM", "nom" : "Mme C\u00e9lia DE LAVERGNE", "voix" : 427}, {"nuance" : "LR", "nom" : "M. Paul BERARD", "voix" : 328}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, ...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Bungro, San Fernando City, La Union, Ilocos Region (Region I), PH", "locale" : "ph.ilocos-region-region-i.la-union.san-fernando-city.bungro", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/dra...
{"id" : "20", "provinceId" : "14", "regencyId" : "04", "name" : "Sungai Batang"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"test": {"type": "array", "items": {"type": "integer"}}, "x": {"type": "object", "properties": {"y": {"type": "string"}}, "required": ["y"]}}, "required": ["test", "x"], "$schema": "http://json-schema.org/draft-07/sc...
{"test" : [1, 2, 3], "x" : {"y" : "z"}}
json_instruct
{"type": "object", "properties": {"test": {"type": "array", "items": {"type": "integer"}}, "x": {"type": "object", "properties": {"y": {"type": "string"}}, "required": ["y"]}}, "required": ["test", "x"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"GenesisEffect": {"type": "array", "items": {"type": "string"}}}, "required": ["GenesisEffect"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"GenesisEffect" : ["EarthShatteringKaboom", "CreationMyth", "ScienceFiction", "SufficientlyAdvancedAlien", "SceneryPorn", "WillingSuspensionOfDisbelief", "TheyWastedAPerfectlyGoodPlot", "EarthShatteringKaboom", "ApocalypseHow", "MakeAWish", "ChekhovsSkill", "ChekhovsSkill", "CounterEarth", "WhatDoYouMeanItsNotSymbolic...
json_instruct
{"type": "object", "properties": {"GenesisEffect": {"type": "array", "items": {"type": "string"}}}, "required": ["GenesisEffect"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"sn45.149:0.1": {"type": "string"}, "sn45.149:0.2": {"type": "string"}, "sn45.149:0.3": {"type": "string"}, "sn45.149:1.1": {"type": "string"}, "sn45.149:1.2": {"type": "string"}, "sn45.149:1.3": {"type": "string"}, ...
{"sn45.149:0.1" : "Linked Discourses 45 ", "sn45.149:0.2" : "12. Hard Work ", "sn45.149:0.3" : "149. Hard Work ", "sn45.149:1.1" : "At S\u0101vatth\u012b. ", "sn45.149:1.2" : "\u201cMendicants, all the hard work that gets done depends on the earth and is grounded on the earth. ", "sn45.149:1.3" : "In the same way, a me...
json_instruct
{"type": "object", "properties": {"sn45.149:0.1": {"type": "string"}, "sn45.149:0.2": {"type": "string"}, "sn45.149:0.3": {"type": "string"}, "sn45.149:1.1": {"type": "string"}, "sn45.149:1.2": {"type": "string"}, "sn45.149:1.3": {"type": "string"}, "sn45.149:1.4": {"type": "string"}, "sn45.149:1.5": {"type": "string"}...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt-contrib-connect": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "load-grunt-tasks": {"type"...
{"name" : "test_connect", "version" : "0.0.1", "devDependencies" : {"grunt-contrib-connect" : "~0.6.0", "grunt-contrib-watch" : "~0.5.3", "load-grunt-tasks" : "~0.3.0"}, "dependencies" : {"body-parser" : "^1.13.3", "compression" : "^1.5.2", "connect" : "^3.4.0", "socket.io" : "^1.3.6"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt-contrib-connect": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "load-grunt-tasks": {"type": "string"}}, "required": ["grunt-contrib-connect", "grunt-...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"slimscroll.js": {"type": "string"}, "slimscroll.min.js": {"type": "string"}}, "required": ["slimscroll.js", "slimscroll.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"slimscroll.js" : "sha256-TrKIGcWLa/yrOXjVWLRjSy+OOrORWxpy4dGIXXjFkoU=", "slimscroll.min.js" : "sha256-GURfVbB3MRY3lWer79PISCoYGfhmtYii2aPm7Mxun0E="}
json_instruct
{"type": "object", "properties": {"slimscroll.js": {"type": "string"}, "slimscroll.min.js": {"type": "string"}}, "required": ["slimscroll.js", "slimscroll.min.js"], "$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"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "5319011017", "district_id" : "5319011", "name" : "COMPANG TEBER"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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/schem...
[{"name" : "GURLI", "frequency" : 3143, "gender" : "female"}]
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": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "opening_hours": {"type": "string"}, "source": {"type": "string"}, "id": {"type":...
{"type" : "Feature", "id" : "node/502884350", "properties" : {"amenity" : "marketplace", "opening_hours" : "Mo,Sa 08:00-12:00", "source" : "survey", "id" : "node/502884350"}, "geometry" : {"type" : "Point", "coordinates" : [7.5929985, 48.3685992]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "opening_hours": {"type": "string"}, "source": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "opening_hours", "source", "id"]}, ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "i...
{"acadYear" : "2019/2020", "preclusion" : "GEK1063\nGES1022", "description" : "The status and legitimacy of Singlish is a hotly debated topic in Singapore society. Supporters of Singlish claim it contributes to the Singaporean identity and helps Singaporeans establish a connection with each other overseas. Detractors c...
json_instruct
{"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "moduleCredit": {"type": "stri...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"typ...
{"name" : "Mango Strawberry Ice Cream Cone", "description" : "Strawberry and mango go nicely with the ice cream. Biscuit is the waffle cone", "id" : 103443, "image_url" : "https://storage.googleapis.com/dev-images.alltheflavors.com/uploads/recipe/imageUrl/103443/7506EFF6-798D-4B8D-94AD-6AB576FFBC16.jpeg", "updated_at" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "recipe_flavors": {"type": "array", "items": {"type": "object...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"datestamp": {"type": "string"}, "title": {"type": "string"}, "creator": {"type": "string"}, "identifier": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "subject": {"type": "array", "item...
{"datestamp" : "Sun Apr 18 05:41:53 EDT 2021", "title" : "Replication data for: A Greater Price for a Greater Good? Evidence That Consumers Pay More for Charity-Linked Products", "creator" : "Daniel W. Elfenbein", "identifier" : ["114735", "114735", "https://doi.org/10.3886/E114735V1"], "description" : "To study whethe...
json_instruct
{"type": "object", "properties": {"datestamp": {"type": "string"}, "title": {"type": "string"}, "creator": {"type": "string"}, "identifier": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "subject": {"type": "array", "items": {"type": "string"}}}, "required": ["datestamp", "title", "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schem...
[{"Similarity" : "0.969", "Title" : "Training prospective abilities through conversation about the extended self", "Year" : 2016}, {"Similarity" : "0.968", "Title" : "Childrens Understanding of the Link Between Sensory Perception and Knowledge", "Year" : 2011}, {"Similarity" : "0.967", "Title" : "Infants expect others ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"status": {"type": "string"}, "error": {"type": "string"}}, "required": ["status", "error"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : "refused", "error" : "illegal_param_client_id"}
json_instruct
{"type": "object", "properties": {"status": {"type": "string"}, "error": {"type": "string"}}, "required": ["status", "error"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "destination": {"type": "string"}, "builder": {"type": "string"}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "source", "...
{"title" : "Spectacular", "source" : "app/assets/stylesheets/spec/", "destination" : "docs/", "builder" : "node_modules/michelangelo/kss_styleguide/custom-template/", "css" : ["./kss-assets/css/kss.css", "./kss-assets/css/spectacular.css", "https://cloud.typography.com/6068232/7856572/css/fonts.css"]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "destination": {"type": "string"}, "builder": {"type": "string"}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "source", "destination", "builder", "css"], "$schema": "http://json-schema.org/draf...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "<a href=\"https://www.youtube.com/watch?v=N0whJRP2Z5w\">Talking Heads</a>: \"When I have nothing to say, my lips are sealed. Say something once, why say it again?\"", "created" : "Sat, 18 Jul 2020 17:10:10 GMT", "type" : "outline"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"repoId": {"type": "string"}, "lastSync": {"type": "integer"}}, "required": ["repoId", "lastSync"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"repoId" : "dab902e3-31e1-4e68-ab74-479c14f30f35", "lastSync" : 0}
json_instruct
{"type": "object", "properties": {"repoId": {"type": "string"}, "lastSync": {"type": "integer"}}, "required": ["repoId", "lastSync"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"getErrorTitle": {"type": "string"}, "getDocumentationLinks": {"type": "string"}, "getSolutionTitle": {"type": "string"}, "getErrorDescription": {"type": "string"}}, "required": ["getErrorTitle", "getDocumentationLinks", "getSo...
{"getErrorTitle" : "Unauthorized error", "getDocumentationLinks" : "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/401", "getSolutionTitle" : "You must call next() to forwarding error to next error handler", "getErrorDescription" : "The 401 Unauthorized error is an HTTP status code that means the page you wer...
json_instruct
{"type": "object", "properties": {"getErrorTitle": {"type": "string"}, "getDocumentationLinks": {"type": "string"}, "getSolutionTitle": {"type": "string"}, "getErrorDescription": {"type": "string"}}, "required": ["getErrorTitle", "getDocumentationLinks", "getSolutionTitle", "getErrorDescription"], "$schema": "http://js...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"},...
{"directions" : ["Preheat oven to 350 degrees F.", "Generously season tenderloin with salt and pepper. Set aside. In a small mixing bowl, whisk together mustard, brown sugar and thyme.", "Place a large sheet of Reynolds Wrap(R) Aluminum Foil onto a baking sheet. Place onion slices in the center of the foil, in a single...
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"}, "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"aps": {"type": "object", "properties": {"alert": {"type": "object", "properties": {"body": {"type": "string"}, "title": {"type": "string"}}, "required": ["body", "title"]}, "badge": {"type": "integer"}, "cate...
{"aps" : {"alert" : {"body" : "come get some hotdogs", "title" : "Hey Michael"}, "badge" : 1, "category" : "NEWS_CATEGORY", "content-available" : 1, "mutable-content" : 1, "sound" : "default"}, "body" : "come get some hotdogs", "dateCreated" : "Wed Mar 27 2019 17:55:12GMT+0000 (UTC)", "dateLastUpdated" : "Thu Mar 28 20...
json_instruct
{"type": "object", "properties": {"aps": {"type": "object", "properties": {"alert": {"type": "object", "properties": {"body": {"type": "string"}, "title": {"type": "string"}}, "required": ["body", "title"]}, "badge": {"type": "integer"}, "category": {"type": "string"}, "content-available": {"type": "integer"}, "mutable...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "extension": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "valueUri": {"type": "string"}}, "required": ["url", "valueUri"]}}...
{"resourceType" : "ValueSet", "id" : "allergy-intolerance-type", "extension" : [{"url" : "http://hl7.org/fhir/StructureDefinition/valueset-oid", "valueUri" : "urn:oid:2.16.840.1.113883.4.642.2.52"}], "url" : "http://hl7.org/fhir/ValueSet/allergy-intolerance-type", "version" : "1.4.0", "name" : "AllergyIntoleranceType",...
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "extension": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "valueUri": {"type": "string"}}, "required": ["url", "valueUri"]}}, "url": {"type": "string"}, "version": {"type": "string"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_da...
{"id" : 2121, "citation_title" : "Labor Supply Preferences, Hours Constraints, and Hours-Wage Tradeoffs", "citation_author" : ["Joseph G. Altonji", "Christina H. Paxson"], "citation_publication_date" : "1987-01-01", "issue_date" : "1987-01-01", "revision_date" : "None", "topics" : ["Labor Economics"], "program" : ["Lab...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"target": {"type": "string"}, "strategy": {"type": "string"}, "snippets": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "purpose": {"type": "array", "items": {"type": "string"}}}, "...
{"target" : "merge-deep-target.json", "strategy" : "merge-deep", "snippets" : ["snippet"], "requires" : [], "purpose" : ["Some purpose."]}
json_instruct
{"type": "object", "properties": {"target": {"type": "string"}, "strategy": {"type": "string"}, "snippets": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "purpose": {"type": "array", "items": {"type": "string"}}}, "required": ["target", "strategy", "snippets", "requires", "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object...
{"localities" : ["Waukesha, WI", "New Berlin, WI"], "state" : "WI", "postal_code" : "53151", "locality" : "New Berlin, WI", "lat" : 42.974779, "region" : {"fips" : "55", "abbr" : "WI", "name" : "Wisconsin"}, "city" : "New Berlin", "type" : "STANDARD", "lng" : -88.098607, "counties" : [{"fips" : "133", "name" : "Waukesh...
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "url": {"type": "string"}, "author": {"type": "null"}, "title": {"type": "string"}, "text": {"type": "string"}, "published_date": {"type": "string"}, "section": {"type": "string"}}, "required": ["i...
{"id" : 5685, "url" : "http://proxy-pubminefi.diffusion.finances.gouv.fr/pub/document/18/21279.pdf", "author" : null, "title" : "DOSSIER DE PRESSE - Structurer et acc\u00e9l\u00e9rer la dynamique de l'\u00e9cosyst\u00e8me de start-ups fran\u00e7ais", "text" : "ERROR - BAD PDF", "published_date" : "2016-07-25", "section...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "url": {"type": "string"}, "author": {"type": "null"}, "title": {"type": "string"}, "text": {"type": "string"}, "published_date": {"type": "string"}, "section": {"type": "string"}}, "required": ["id", "url", "author", "title", "text", "published_date", "secti...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "mixins": {"type": "array", "items": {"type": "string"}}, "client": {"type": "array", "...
{"required" : true, "minVersion" : "0.8", "package" : "dev.lazurite.rayon.impl.mixin", "compatibilityLevel" : "JAVA_17", "mixins" : ["common.BlockStateBaseMixin", "common.ExplosionMixin", "common.LevelMixin", "common.entity.EntityMixin", "common.entity.EntityTrackerEntryMixin"], "client" : ["client.EntityRenderDispatch...
json_instruct
{"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "mixins": {"type": "array", "items": {"type": "string"}}, "client": {"type": "array", "items": {"type": "string"}}, "injectors": {"type": "object"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": ...
{"type" : "Feature", "properties" : {"name" : "Huron County", "fips" : "26063", "state_code" : 26, "county_code" : 63, "population" : 30981, "countrylevel_id" : "fips:26063", "census_data" : {"COUNTYNS" : "01622974", "AFFGEOID" : "0500000US26063", "LSAD" : "06", "ALAND" : 2165345386, "AWATER" : 3368948803}}, "geometry"...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_d...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {...
{"contract" : "0xe07f3f60af265630728a56a752e08d5e93cb1ad5", "tool" : "manticore", "start" : 1564117527.6324081, "end" : 1564117538.446497, "duration" : 10.814088821411133, "analysis" : [[], [], [], []]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "ana...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "propertie...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.574396, 51.440967]}, "properties" : {"start-date" : "2019-12-19", "organisation" : "local-authority-eng:BST", "planning-permission-status" : "permissioned", "notes" : "Alternative site reference: U10_6146", "planning-permission-history" : "https:/...
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": {"start-date": {"type": "string"}, ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "stri...
{"text" : "", "historical" : "Legislative History of Laws\n\nFor Law 15-331, see notes following \u00a7 7-2071.01.\n\nFor Law 17-219, see notes following \u00a7 7-651.17.\n\nDC CODE \u00a7 7-2071.13\n\nCurrent through December 11, 2012", "credits" : "(Apr. 12, 2005, D.C. Law 15-331, \u00a7 14, 52 DCR 1981; Aug. 16, 200...
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "ti...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"is.js": {"type": "string"}, "is.min.js": {"type": "string"}}, "required": ["is.js", "is.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"is.js" : "sha256-HWFiCxOge6s7hgQhsLQN2htAXWwosknq4iYRvGvEhRw=", "is.min.js" : "sha256-JsmmK07Mo40W/aSN1pV6N89wc4HqWpkZOpDPZaDhS68="}
json_instruct
{"type": "object", "properties": {"is.js": {"type": "string"}, "is.min.js": {"type": "string"}}, "required": ["is.js", "is.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_de...
{"derivation" : "neuter and masculine respectively from G1210 (\u03b4\u03b5\u03c3\u03bc\u03cc\u03c2);", "kjv_def" : "band, bond, chain, string", "lemma" : "\u03b4\u03b5\u03c3\u03bc\u03cc\u03c2", "frequency" : 18, "strongs_def" : " a band, i.e. ligament (of the body) or shackle (of a prisoner); figuratively, an impedime...
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$sc...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": ...
{"nom" : "Tournon-Saint-Pierre", "dpt" : "Indre-et-Loire", "inscrits" : 414, "abs" : 80, "votants" : 334, "blancs" : 5, "nuls" : 2, "exp" : 327, "res" : [{"panneau" : "2", "voix" : 88}, {"panneau" : "11", "voix" : 65}, {"panneau" : "3", "voix" : 58}, {"panneau" : "9", "voix" : 50}, {"panneau" : "1", "voix" : 29}, {"pan...
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"tuto": {"type": "object", "properties": {"image": {"type": "string"}, "frame": {"type": "integer"}}, "required": ["image", "frame"]}, "width": {"type": "integer"}, "playerStarts": {"type": "object", "properties...
{"tuto" : {"image" : "treasure", "frame" : 4}, "width" : 1200, "playerStarts" : {"x" : 154, "y" : 628}, "time" : 15, "goal" : 8, "coins" : [], "startingCoins" : 0, "obstacles" : {"box" : [], "trash" : []}, "objects" : {"boots" : [], "oil" : [], "drains" : []}, "personages" : {"robbers" : [], "treasures" : [{"path" : [{...
json_instruct
{"type": "object", "properties": {"tuto": {"type": "object", "properties": {"image": {"type": "string"}, "frame": {"type": "integer"}}, "required": ["image", "frame"]}, "width": {"type": "integer"}, "playerStarts": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"typ...
{"text" : "", "historical" : "Prior Codifications\n\n1981 Ed., \u00a7 24-264.\n\nLegislative History of Laws\n\nFor legislative history of D.C. Law 9-271, see Historical and Statutory Notes following \u00a7 24-461.\n\nDC CODE \u00a7 24-464\n\nCurrent through December 11, 2012", "credits" : "(May 15, 1993, D.C. Law 9-27...
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "objec...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Value": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "Unit": ...
{"type" : "object", "properties" : {"Value" : {"description" : "Value", "type" : "number"}, "Unit" : {"description" : "Unit of measurement/ unit of account e.g. CMT - Centimetre, LTR - Litre (1 DM3), KGM - Kilogram, CHF - Swiss Franc", "type" : "string"}}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Value": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "Unit": {"type": "object", "properties": {"description": {"type":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "css-loader": {"type": "string"}, "moment": {"t...
{"name" : "claims_management", "version" : "0.1.0", "private" : true, "dependencies" : {"axios" : "^0.2.0", "css-loader" : "^4.2.2", "moment" : "^2.28.0", "react" : "^15.5.4", "react-bootstrap" : "^0.31.5", "react-dom" : "^15.5.4", "react-input-mask" : "^3.0.0-alpha.2", "react-moment" : "^0.9.7", "react-router" : "^5.2...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "css-loader": {"type": "string"}, "moment": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"ty...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"desc": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}}, "required": ["desc", "id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"desc" : "", "id" : "card.action:base/technology_rider", "name" : "Technology Rider"}
json_instruct
{"type": "object", "properties": {"desc": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}}, "required": ["desc", "id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "nu...
{"contract" : "0x3b7f247f21bf3a07088c2d3423f64233d4b069f7", "tool" : "mythril", "start" : 1563511137.378479, "end" : 1563511142.0834424, "duration" : 4.704963445663452, "analysis" : {"error" : null, "issues" : [], "success" : true}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "bo...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"get": {"type": "string"}}, "required": ["get"]}, "path": {"type": "string"}, "text": {"type": "string"}, "typeName": {"type": "string"}}, "required"...
{"className" : "io.deephaven.integrations.learn.Future", "methods" : {"get" : "Gets the result of the deferred calculation. The calculation is performed at most once, and results are cached.\n\n:return: (java.lang.Object) result of the deferred calculation."}, "path" : "io.deephaven.integrations.learn.Future", "text" :...
json_instruct
{"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"get": {"type": "string"}}, "required": ["get"]}, "path": {"type": "string"}, "text": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "text", "typeName"], "$s...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "SOMETHING BASIC"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"900644158": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900644159": {"type": "object", "properties": {"nama": {"type...
{"900644158" : {"nama" : "TPS 1", "dapil" : [5301, 15305, 2530701]}, "900644159" : {"nama" : "TPS 2", "dapil" : [5301, 15305, 2530701]}, "900644160" : {"nama" : "TPS 3", "dapil" : [5301, 15305, 2530701]}, "900644161" : {"nama" : "TPS 4", "dapil" : [5301, 15305, 2530701]}, "900644162" : {"nama" : "TPS 5", "dapil" : [530...
json_instruct
{"type": "object", "properties": {"900644158": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900644159": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"properties": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "type", "description"]}}}, "...
{"properties" : [{"name" : "weekly.cron", "type" : "java.lang.String", "description" : "\u5468\u62a5\u53d1\u9001\u65f6\u95f4\u3002\u683c\u5f0f: Cron\u8868\u8fbe\u5f0f"}, {"name" : "weekly.subject", "type" : "java.lang.String", "defaultValue" : "[Weekly][__user__][__datePeriod__]", "description" : "\u5468\u62a5\u4e3b\u9...
json_instruct
{"type": "object", "properties": {"properties": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "type", "description"]}}}, "required": ["properties"], "$schema": "http://json-schema.org/draft-07...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type...
[{"name" : "\u60c5\u8da3\u9152\u5e97\u6444\u50cf\u5934\u5077\u62cd\u5f88\u6d6a\u6f2b\u7684\u6234\u5047\u53d1\u79c3\u9876\u54e5\u9001\u978b\u6c42\u7231\u5ba3\u8a00\u7ec8\u4e8e\u628a\u5c0f\u7ea2\u641e\u4e0a\u4e86\u5e8a", "size" : 173485671, "link" : "https://streamtape.com/e/vwyOwR1YZpF41Ao", "created_at" : "2022\u5e7404...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe":...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["doublezombies:tick"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "i...
{"directions" : ["Mix all ingredients in medium bowl. DO AHEAD: can be made up to 2 hours ahead. Cover and refrigerate."], "ingredients" : ["1 cup diced peeled pitted mango", "1 cup diced peeled cored pineapple", "1 cup diced peeled banana", "2 tablespoons pure maple syrup"], "language" : "en-US", "source" : "www.epicu...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"info": {"type": "object", "properties": {"title": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "version"]}, "type": {"type": "string"}, "javaType": {"type": "string"}, "description": {"type": "s...
{"info" : {"title" : "Backup", "version" : "v1"}, "type" : "object", "javaType" : "com.instaclustr.cassandra.operator.model.Backup", "description" : "", "properties" : {"apiVersion" : {"type" : "string"}, "kind" : {"type" : "string"}, "metadata" : {"javaType" : "io.kubernetes.client.models.V1ObjectMeta", "type" : "obje...
json_instruct
{"type": "object", "properties": {"info": {"type": "object", "properties": {"title": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "version"]}, "type": {"type": "string"}, "javaType": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"apiV...